Changeset 1631
- Timestamp:
- Jan 15, 2015 3:16:45 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIgrid.py
r1627 r1631 3258 3258 if 'IMG' in name: 3259 3259 for item in sampleParmDict: 3260 sampleParmDict[item].append(data[name]['parmDict'] [item])3260 sampleParmDict[item].append(data[name]['parmDict'].get(item,0)) 3261 3261 else: 3262 3262 Id = GetPatternTreeItemId(G2frame,G2frame.root,name) 3263 3263 sampleData = G2frame.PatternTree.GetItemPyData(GetPatternTreeItemId(G2frame,Id,'Sample Parameters')) 3264 3264 for item in sampleParmDict: 3265 sampleParmDict[item].append(sampleData [item])3265 sampleParmDict[item].append(sampleData.get(item,0)) 3266 3266 for item in sampleParmDict: 3267 3267 frstValue = sampleParmDict[item][0] … … 3997 3997 Types += [wg.GRID_VALUE_FLOAT+':10,3',] 3998 3998 # add % change in Chi^2 in last cycle 3999 if histNames[0][:4] not in ['SASD','IMG '] and Controls ['ShowCell']:3999 if histNames[0][:4] not in ['SASD','IMG '] and Controls.get('ShowCell'): 4000 4000 colList += [[100.*data[name]['Rvals'].get('DelChi2',-1) for name in histNames]] 4001 4001 colSigs += [None]
Note: See TracChangeset
for help on using the changeset viewer.