Changeset 1142
- Timestamp:
- Nov 7, 2013 3:47:59 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIImath.py
r1116 r1142 1377 1377 phasep = complex(a,b) 1378 1378 phasem = complex(a,-b) 1379 F = np.sqrt(Fosq) 1379 Fo = np.sqrt(Fosq) 1380 if '2Fo-Fc' in mapData['MapType']: 1381 F = 2.*np.sqrt(Fosq)-np.sqrt(Fcsq) 1382 else: 1383 F = np.sqrt(Fosq) 1380 1384 h,k,l = hkl+Hmax 1381 1385 Fhkl[h,k,l] = F*phasep -
trunk/GSASIIphsGUI.py
r1116 r1142 546 546 if 'cutOff' not in Map: 547 547 Map['cutOff'] = 100.0 548 mapTypes = ['Fobs','Fcalc','delt-F','2*Fo-Fc','Omit',' Patterson']548 mapTypes = ['Fobs','Fcalc','delt-F','2*Fo-Fc','Omit','2Fo-Fc Omit','Patterson'] 549 549 refList = data['Histograms'].keys() 550 550 if not generalData['AtomTypes']: … … 4899 4899 PatternId = G2gd.GetPatternTreeItemId(G2frame,G2frame.root, reflName) 4900 4900 reflData = G2frame.PatternTree.GetItemPyData(PatternId)[1] 4901 if mapData['MapType'] == 'Omit':4901 if 'Omit' in mapData['MapType']: 4902 4902 pgbar = wx.ProgressDialog('Omit map','Blocks done',65, 4903 4903 style = wx.PD_ELAPSED_TIME|wx.PD_AUTO_HIDE)
Note: See TracChangeset
for help on using the changeset viewer.