Changeset 1788
- Timestamp:
- Apr 13, 2015 1:33:29 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIgrid.py
r1787 r1788 2404 2404 userReject = data['UsrReject'] 2405 2405 usrRej = {'minF/sig':[' Min obs/sig (0-5): ',[0,5], ],'MinExt':[' Min extinct. (0-.9): ',[0,.9],], 2406 'MaxDF/F':[' Max delt-F/sig (3- 20): ',[3.,20.],],'MaxD':[' Max d-spacing (3-500): ',[3,500],],2406 'MaxDF/F':[' Max delt-F/sig (3-1000): ',[3.,1000.],],'MaxD':[' Max d-spacing (3-500): ',[3,500],], 2407 2407 'MinD':[' Min d-spacing (0.1-1.0): ',[0.1,1.0],]} 2408 2408 … … 3606 3606 elif kind in ['HKLF',]: 3607 3607 SetDataMenuBar(G2frame,G2frame.dataFrame.HKLFMenu) 3608 #G2frame.dataFrame.Bind(wx.EVT_MENU, OnErrorAnalysis, id=wxID_PWDANALYSIS)3608 G2frame.dataFrame.Bind(wx.EVT_MENU, OnErrorAnalysis, id=wxID_PWDANALYSIS) 3609 3609 G2frame.dataFrame.Bind(wx.EVT_MENU, OnPlot3DHKL, id=wxID_PWD3DHKLPLOT) 3610 3610 # G2frame.dataFrame.Bind(wx.EVT_MENU, onCopySelectedItems, id=wxID_PWDCOPY) -
trunk/GSASIIplot.py
r1787 r1788 1786 1786 DS = xye[5][xmin:xmax]*np.sqrt(wtFactor*xye[2][xmin:xmax]) 1787 1787 elif kind == 'HKLF': 1788 refl = Pattern[1] 1788 refl = Pattern[1]['RefList'] 1789 im = 0 1790 if Pattern[1]['Super']: 1791 im = 1 1789 1792 DS = [] 1790 1793 for ref in refl: 1791 if ref[6 ] > 0.:1792 DS.append((ref[5 ]-ref[7])/ref[6])1794 if ref[6+im] > 0.: 1795 DS.append((ref[5+im]-ref[7+im])/ref[6+im]) 1793 1796 Page.SetFocus() 1794 1797 G2frame.G2plotNB.status.DestroyChildren()
Note: See TracChangeset
for help on using the changeset viewer.