Changeset 4272
- Timestamp:
- Jan 31, 2020 9:34:59 AM (3 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r4270 r4272 5258 5258 '''Solving the structures of 3-aminoquinoline and α-d-lactose monohydrate from powder diffraction data 5259 5259 via Monte Carlo/Simulated Annealing (MC/SA).'''], 5260 5261 ['Reverse Monte Carlo Modeling'], 5262 ['RMCProfile-I', 'RMCProfile-I.htm','Disorder modeling for sulfur hexafluoride', 5263 '''This is the first exercise of a big box modelling for real and reciprocal space diffraction data'''], 5260 5264 5261 5265 ['Stacking Fault Modeling'], -
trunk/GSASIIphsGUI.py
r4270 r4272 4517 4517 if dlg.ShowModal() == wx.ID_OK: 4518 4518 fpath,fName = os.path.split(dlg.GetPath()) 4519 disfile.copy_file(dlg.GetPath(),os.path.join(G2 G.GetImportPath(G2frame),fName))4519 disfile.copy_file(dlg.GetPath(),os.path.join(G2frame.LastGPXdir,fName)) 4520 4520 if os.path.exists(fName): 4521 4521 RMCPdict['files'][fil][0] = fName 4522 G2frame.LastImportDir = fpath #set so next file is found in same place 4522 4523 dlg.Destroy() 4523 4524 else: … … 5193 5194 pName = generalData['Name'].replace(' ','_') 5194 5195 dlg = wx.FileDialog(G2frame, "Choose any RMCProfile csv results file for "+pName+":", 5195 defaultDir=G2 G.GetImportPath(G2frame),style=wx.FD_CHANGE_DIR,wildcard='RMCProfile result csv files|'+pName+'*.csv')5196 defaultDir=G2frame.LastGPXdir,style=wx.FD_CHANGE_DIR,wildcard='RMCProfile result csv files|'+pName+'*.csv') 5196 5197 if dlg.ShowModal() == wx.ID_OK: 5197 5198 path = os.path.split(dlg.GetPath())[0]
Note: See TracChangeset
for help on using the changeset viewer.