Changeset 4192 for trunk/GSASIIdataGUI.py
- Timestamp:
- Nov 22, 2019 1:28:42 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIdataGUI.py
r4191 r4192 2905 2905 self.newGPXfile = '' 2906 2906 self.lastSelectedPhaseTab = None # track the last tab pressed on a phase window 2907 self.testRBObjSizers = {} #rigid body sizer data 2907 self.testRBObjSizers = {} #rigid body sizer datafile contents 2908 self.RMCchoice = 'fullrmc' 2908 2909 2909 2910 def __init__(self, parent): … … 3817 3818 dlg.Destroy() 3818 3819 return 3819 f = files[sel] 3820 filroot,dirname = sellist[sel].split(' from ') 3821 f = os.path.join(dirname,filroot) 3820 3822 if os.path.exists(f): 3821 3823 self.OnFileOpen(event, filename=f) … … 5705 5707 self.PostfillDataMenu() 5706 5708 5707 #Phase / fullrmc (Reverse Monte Carlo method) tab5708 G2G.Define_wxId('wxID_SETUP FULLRMC','wxID_LOADFULLRMC','wxID_SAVEFULLRMC','wxID_EDITFULLRMC','wxID_RUNFULLRMC', )5709 #Phase / fullrmc & RMCprofile (Reverse Monte Carlo method) tab 5710 G2G.Define_wxId('wxID_SETUPRMC','wxID_LOADRMC','wxID_SAVERMC','wxID_RUNRMC', ) 5709 5711 self.FRMCMenu = wx.MenuBar() 5710 5712 self.PrefillDataMenu(self.FRMCMenu) … … 5712 5714 self.FRMCDataEdit = wx.Menu(title='') 5713 5715 self.FRMCMenu.Append(menu=self.FRMCDataEdit, title='Operations') 5714 self.FRMCDataEdit.Append(G2G.wxID_SETUPFULLRMC,'Setup run.py','Setup new fullrmc run.py file') 5715 self.FRMCDataEdit.Append(G2G.wxID_LOADFULLRMC,'Load run.py','Load fullrmc run.py file') 5716 self.FRMCDataEdit.Append(G2G.wxID_SAVEFULLRMC,'Save run.py','Save fullrmc run.py file') 5717 self.FRMCDataEdit.Append(G2G.wxID_EDITFULLRMC,'Edit run.py','Edit fullrmc run.py file') 5718 self.FRMCDataEdit.Append(G2G.wxID_RUNFULLRMC,'Execute run.py','Run fullrmc run.py file') 5716 self.FRMCDataEdit.Append(G2G.wxID_SETUPRMC,'Setup RMC','Setup new fullrmc or RMCprofile file') 5717 self.FRMCDataEdit.Append(G2G.wxID_LOADRMC,'Load','Load fullrmc or RMCprofile file') 5718 self.FRMCDataEdit.Append(G2G.wxID_SAVERMC,'Save','Save fullrmc or RMCprofile file') 5719 self.FRMCDataEdit.Append(G2G.wxID_RUNRMC,'Execute','Run fullrmc or RMCprofile file') 5719 5720 self.PostfillDataMenu() 5720 5721
Note: See TracChangeset
for help on using the changeset viewer.