Changeset 346 for trunk/GSASIIgrid.py
- Timestamp:
- Aug 18, 2011 9:00:13 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIgrid.py
r342 r346 40 40 ] = [wx.NewId() for _init_coll_PAWLEY_Items in range(3)] 41 41 42 [ wxID_INSTPRMRESET, 43 ] = [wx.NewId() for _init_coll_INST_Items in range( 1)]42 [ wxID_INSTPRMRESET,wxID_CHANGEWAVETYPE, 43 ] = [wx.NewId() for _init_coll_INST_Items in range(2)] 44 44 45 45 [ wxID_INDXRELOAD, 46 46 ] = [wx.NewId() for _init_coll_IndPeaks_Items in range(1)] 47 47 48 [ wxID_UNDO,wxID_LSQPEAKFIT,wxID_LSQONECYCLE,wxID_ BFGSPEAKFIT,wxID_RESETSIGGAM,48 [ wxID_UNDO,wxID_LSQPEAKFIT,wxID_LSQONECYCLE,wxID_RESETSIGGAM,wxID_CLEARPEAKS, 49 49 ] = [wx.NewId() for _init_coll_PEAK_Items in range(5)] 50 50 … … 195 195 parent.Append(help='Reset instrument profile parameters to default', 196 196 id=wxID_INSTPRMRESET, kind=wx.ITEM_NORMAL,text='Reset profile') 197 parent.Append(help='Change radiation type (Ka12 - synch)', 198 id=wxID_CHANGEWAVETYPE, kind=wx.ITEM_NORMAL,text='Change radiation') 197 199 198 200 def _init_coll_Peak_Items(self,parent): … … 203 205 self.PFOneCycle = parent.Append(id=wxID_LSQONECYCLE, kind=wx.ITEM_NORMAL,text='LSQ one cycle', 204 206 help='One cycle of Peak fitting via least-squares' ) 205 # self.PeakFit = parent.Append(id=wxID_BFGSPEAKFIT, kind=wx.ITEM_NORMAL,text='BFGS PeakFit',206 # help='Peak fitting via BFGS algorithm' )207 207 self.ResetSigGam = parent.Append(id=wxID_RESETSIGGAM, kind=wx.ITEM_NORMAL, 208 208 text='Reset sig and gam',help='Reset sigma and gamma to global fit' ) 209 self.PeakFit = parent.Append(id=wxID_CLEARPEAKS, kind=wx.ITEM_NORMAL,text='Clear peaks', 210 help='Clear the peak list' ) 209 211 210 212 def _init_coll_Index_Items(self,parent):
Note: See TracChangeset
for help on using the changeset viewer.