Changeset 1032
- Timestamp:
- Aug 14, 2013 3:52:37 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASII.py
r1031 r1032 1227 1227 arg = sys.argv 1228 1228 if len(arg) > 1: 1229 self.GSASprojectfile = arg[1]1229 self.GSASprojectfile = os.path.splitext(arg[1])[0]+'.gpx' 1230 1230 self.dirname = os.path.dirname(arg[1]) 1231 1231 if self.dirname: os.chdir(self.dirname) -
trunk/GSASIIplot.py
r1025 r1032 726 726 Plot.set_title(Title) 727 727 if G2frame.qPlot: 728 Plot.set_xlabel(r'$ q, \AA^{-1}$',fontsize=14)728 Plot.set_xlabel(r'$Q, \AA^{-1}$',fontsize=14) 729 729 else: 730 730 if 'C' in ParmList[0]['Type'][0]: … … 1334 1334 if 'C' in Parms['Type'][0]: 1335 1335 Plot.set_title('Instrument and sample peak widths') 1336 Plot.set_xlabel(r'$ q, \AA^{-1}$',fontsize=14)1337 Plot.set_ylabel(r'$\Delta q/q, \Delta d/d$',fontsize=14)1336 Plot.set_xlabel(r'$Q, \AA^{-1}$',fontsize=14) 1337 Plot.set_ylabel(r'$\Delta Q/Q, \Delta d/d$',fontsize=14) 1338 1338 try: 1339 1339 Xmin,Xmax = limits[1] … … 1391 1391 else: 1392 1392 Plot.set_title('Instrument and sample peak coefficients') 1393 Plot.set_xlabel(r'$ q, \AA^{-1}$',fontsize=14)1394 Plot.set_ylabel(r'$\alpha, \beta, \Delta q/q, \Delta d/d$',fontsize=14)1393 Plot.set_xlabel(r'$Q, \AA^{-1}$',fontsize=14) 1394 Plot.set_ylabel(r'$\alpha, \beta, \Delta Q/Q, \Delta d/d$',fontsize=14) 1395 1395 Xmin,Xmax = limits[1] 1396 1396 T = np.linspace(Xmin,Xmax,num=101,endpoint=True)
Note: See TracChangeset
for help on using the changeset viewer.