Changeset 2475 for trunk/imports/G2phase.py
- Timestamp:
- Sep 21, 2016 10:01:41 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/imports/G2phase.py ΒΆ
r2473 r2475 262 262 self.warnings += "Change this in phase's General tab." 263 263 elif 'SPNFLP' in key: 264 SpnFlp = [int(s) for s in EXPphase[key].split()] 264 SpnFlp = np.array([int(float(s)) for s in EXPphase[key].split()]) 265 SpnFlp = np.where(SpnFlp==0,1,SpnFlp) 265 266 if SGData['SpGrp'][0] in ['A','B','C','I','R','F']: 266 267 SpnFlp += [1,1,1,1]
Note: See TracChangeset
for help on using the changeset viewer.