Changeset 3973
- Timestamp:
- May 12, 2019 10:08:22 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r3965 r3973 2576 2576 txt.SetFont(font1) 2577 2577 Sizer.Add(txt,0,wx.ALL|wx.EXPAND|WACV,0) 2578 txtSize = txt.GetSize()[1] 2578 2579 else: 2579 2580 Sizer.Add(wx.StaticText(panel,label=title),0,WACV) 2581 txtSize = 0 2580 2582 columnsSizer = wx.BoxSizer(wx.HORIZONTAL) 2581 2583 self.sel = [] … … 2620 2622 Size = [450,375] 2621 2623 panel.SetSize(Size) 2622 Size[0] += 25; Size[1]+= 25+txt .GetSize()[1]2624 Size[0] += 25; Size[1]+= 25+txtSize 2623 2625 self.SetSize(Size) 2624 2626 -
trunk/GSASIIdataGUI.py
r3967 r3973 5239 5239 self.SampleEdit.Append(G2G.wxID_SAMPLEFLAGCOPY,'Copy flags','Copy sample parameter refinement flags to other histograms') 5240 5240 self.SampleEdit.Append(G2G.wxID_SAMPLE1VAL,'Set one value','Set one sample parameter value across multiple histograms') 5241 self.SampleEdit.Append(G2G.wxID_ALLSAMPLELOAD,'Load all','Load sample par mameters over multiple histograms')5241 self.SampleEdit.Append(G2G.wxID_ALLSAMPLELOAD,'Load all','Load sample parameters over multiple histograms') 5242 5242 self.SampleEdit.Append(G2G.wxID_RESCALEALL,'Rescale all','Rescale all data with selected range') 5243 5243 self.PostfillDataMenu() -
trunk/GSASIIfiles.py
r3815 r3973 8 8 ########### SVN repository information ################### 9 9 ''' 10 *GSASIIfile : data (non-GUI) I/O routines*11 ========================================= 10 *GSASIIfiles: data (non-GUI) I/O routines* 11 ========================================== 12 12 13 13 Module with miscellaneous routines for input and output from files. … … 430 430 The .par file has any number of columns separated by spaces. 431 431 The directory for the file must be specified in 432 Config variable ``Column_Metadata_directory``.432 Config variable :var:`config_example.Column_Metadata_directory`. 433 433 As an index to the .par file a second "label file" must be specified with the 434 434 same file root name as the .par file but the extension must be .XXX_lbls (where … … 480 480 Note that several keywords, if defined in the Comments, will be found and 481 481 placed in the appropriate section of the powder histogram(s)'s Sample 482 Parameters after an integration: ``Temperature``, ``Pressure``,``Time``,483 ``FreePrm1``, ``FreePrm2``,``FreePrm3``,``Omega``,``Chi``, and ``Phi``.482 Parameters after an integration: ``Temperature``, ``Pressure``, ``Time``, 483 ``FreePrm1``, ``FreePrm2``, ``FreePrm3``, ``Omega``, ``Chi``, and ``Phi``. 484 484 485 485 After the Python code, supply a vertical bar (|) and then a list of one -
trunk/config_example.py
r3814 r3973 184 184 Column_Metadata_directory = None 185 185 '''When specified and when images are read, GSAS-II will read metadata from a 1-ID 186 style .par and a .EXT_lbls (EXT = image extension) or .lbls file. See :func:`GSAS files.readColMetadata` for186 style .par and a .EXT_lbls (EXT = image extension) or .lbls file. See :func:`GSASIIfile.readColMetadata` for 187 187 information on how this is done. 188 188 '''
Note: See TracChangeset
for help on using the changeset viewer.