Changeset 1123
- Timestamp:
- Oct 25, 2013 2:24:22 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 20 added
- 29 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/exports/G2export_CIF.py
r1117 r1123 8 8 # $Id$ 9 9 ########### SVN repository information ################### 10 '''Code to export a GSAS-II project as a CIF. Variable `self.mode` 11 determines the type of CIF that is created: 10 ''' 11 *Module G2export_CIF: CIF Exports* 12 ------------------------------------------------------ 13 14 This implements a complex exporter :class:`ExportCIF` that can implement an 15 entire project in a complete CIF intended for submission as a 16 publication. In addition, there are two subclasses of :class:`ExportCIF`: 17 :class:`ExportPhaseCIF` and :class:`ExportDataCIF` that 18 export a single phase or data set. Note that ``self.mode`` determines 19 what is written: 12 20 13 21 * `self.mode="simple"` creates a simple CIF with only coordinates 14 for at most a single phase (:class:`ExportSimpleCIF`), while 15 16 * `self.mode="full"` creates a complete CIF of project (:class:`ExportCIF`). 22 or data, while 23 24 * `self.mode="full"` creates a complete CIF of project. 25 17 26 ''' 18 27 -
trunk/exports/G2export_PDB.py
r1115 r1123 8 8 # $Id$ 9 9 ########### SVN repository information ################### 10 '''Code to demonstrate how export routines are created 10 ''' 11 *Module G2export_PDB: Macromolecular export* 12 -------------------------------------------- 13 Code to export a phase into the venerated/obsolete (pick one) 14 ASCII PDB format. Also defines exporter :class:`ExportPhaseCartXYZ` 15 which writes atom positions in orthogonal coordinates for a phase. 16 11 17 ''' 12 18 import numpy as np -
trunk/exports/G2export_csv.py
r1115 r1123 8 8 # $Id$ 9 9 ########### SVN repository information ################### 10 '''Code to create .csv (comma-seaparate variable) files for 11 GSAS-II data export 10 ''' 11 *Module G2export_csv: Spreadsheet export* 12 ------------------------------------------- 13 14 Code to create .csv (comma-separated variable) files for 15 GSAS-II data export to a spreadsheet program, etc. 16 12 17 ''' 13 18 import os.path -
trunk/exports/G2export_examples.py
r1115 r1123 8 8 # $Id$ 9 9 ########### SVN repository information ################### 10 '''Code to demonstrate how GSAS-II data export routines are created 10 ''' 11 *Module G2export_examples: Examples* 12 ------------------------------------------- 13 14 Code to demonstrate how GSAS-II data export routines are created. The 15 classes defined here, :class:`ExportPhaseText`, 16 :class:`ExportSingleText`, :class:`ExportPowderReflText`, 17 and :class:`ExportPowderText` each demonstrate a different type 18 of export. Also see :class:`G2export_map.ExportMapASCII` for an 19 example of a map export. 20 11 21 ''' 12 22 import os.path … … 148 158 self.CloseFile() 149 159 print(str(hist)+' written to file '+str(self.filename)) 150 151 160 class ExportPowderReflText(G2IO.ExportBaseclass): 152 161 '''Used to create a text file of reflections from a powder data set -
trunk/exports/G2export_image.py
r1115 r1123 8 8 # $Id$ 9 9 ########### SVN repository information ################### 10 '''Code to demonstrate how export routines are created. 11 This loads in an image and saves it in PNG format 10 ''' 11 *Module G2export_image: 2D Image data export* 12 ------------------------------------------------------ 13 14 Demonstrates how an image is retrieved and written. Uses 15 a SciPy routine to write a PNG format file. 12 16 ''' 13 17 import os.path -
trunk/exports/G2export_map.py
r1122 r1123 8 8 # $Id$ 9 9 ########### SVN repository information ################### 10 '''Code to demonstrate how export routines are created: Export a Fourier or11 Charge-flip map.12 10 ''' 13 import os.path 11 *Module G2export_map: Map export* 12 ------------------------------------------- 13 14 Code to write Fourier/Charge-Flip atomic density maps out in formats that 15 can be read by external programs. At present a GSAS format 16 that is supported by FOX and DrawXTL 17 (:class:`ExportMapASCII`) and the CCP4 format that 18 is used by COOT (:class:`ExportMapCCP4`) are implemented. 19 ''' 20 import os 14 21 import GSASIIpath 15 22 import numpy as np … … 72 79 73 80 class ExportMapCCP4(G2IO.ExportBaseclass): 74 import os75 81 '''Used to create a text file for a phase 76 82 -
trunk/exports/G2export_shelx.py
r1117 r1123 8 8 # $Id$ 9 9 ########### SVN repository information ################### 10 '''Code to export coordinates in SHELX format, as best as I can makes sense of it 10 ''' 11 *Module G2export_shelx: Examples* 12 ------------------------------------------- 13 14 Code to export coordinates in the SHELX .ins format 15 (as best as I can makes sense of it). 16 11 17 ''' 12 18 import os.path -
trunk/imports/G2phase.py
r1077 r1123 7 7 # $Id$ 8 8 ########### SVN repository information ################### 9 # a set of short routines to read in phases from various file formats 10 # 9 # 10 ''' 11 *Module G2phase: PDB and .EXP* 12 ------------------------------------ 13 14 A set of short routines to read in phases using routines that were 15 previously implemented in GSAS-II: PDB and GSAS .EXP file formats 16 17 ''' 18 11 19 import sys 12 20 import traceback … … 16 24 17 25 class PDB_ReaderClass(G2IO.ImportPhase): 18 'Routine sto import Phase information from a PDB file'26 'Routine to import Phase information from a PDB file' 19 27 def __init__(self): 20 28 super(self.__class__,self).__init__( # fancy way to say ImportPhase.__init__ … … 39 47 40 48 class EXP_ReaderClass(G2IO.ImportPhase): 41 ' Routine sto import Phase information from GSAS .EXP files'49 ' Routine to import Phase information from GSAS .EXP files' 42 50 def __init__(self): 43 51 super(self.__class__,self).__init__( # fancy way to say ImportPhase.__init__ -
trunk/imports/G2phase_CIF.py
r1077 r1123 7 7 # $Id$ 8 8 ########### SVN repository information ################### 9 ''' 10 *Module G2phase_CIF: Coordinates from CIF* 11 ------------------------------------------ 12 13 Parses a CIF using PyCifRW from James Hester and pulls out the 14 structural information. 15 16 ''' 9 17 # Routines to import Phase information from CIF files 10 18 import sys … … 19 27 20 28 class CIFPhaseReader(G2IO.ImportPhase): 29 'Implements a phase importer from a possibly multi-block CIF file' 21 30 def __init__(self): 22 31 super(self.__class__,self).__init__( # fancy way to say ImportPhase.__init__ -
trunk/imports/G2phase_GPX.py
r1077 r1123 7 7 # $Id$ 8 8 ########### SVN repository information ################### 9 ''' 10 *Module G2phase_GPX: Import phase from GSAS-II project* 11 -------------------------------------------------------- 12 13 Copies a phase from another GSAS-II project file into the 14 current project. 15 16 ''' 9 17 # Routines to import Phase information from GSAS-II .gpx files 10 18 import cPickle … … 15 23 16 24 class PhaseReaderClass(G2IO.ImportPhase): 25 'Opens a .GPX file and pulls out a selected phase' 17 26 def __init__(self): 18 27 super(self.__class__,self).__init__( # fancy way to say ImportPhase.__init__ -
trunk/imports/G2pwd_CIF.py
r1104 r1123 7 7 # $Id$ 8 8 ########### SVN repository information ################### 9 # routines to read in structure factors from a CIF 10 # 9 ''' 10 *Module G2pwd_CIF: CIF powder data* 11 ------------------------------------ 12 13 Routine to read in powder data from a CIF. 14 15 ''' 11 16 import sys 12 17 import numpy as np -
trunk/imports/G2pwd_GPX.py
r1077 r1123 7 7 # $Id$ 8 8 ########### SVN repository information ################### 9 # Routines to import powder data from GSAS-II .gpx files 9 ''' 10 *Module G2pwd_GPX: GSAS-II projects* 11 ------------------------------------ 12 Routine to import powder data from GSAS-II .gpx files 13 14 ''' 10 15 import cPickle 11 16 import numpy as np -
trunk/imports/G2pwd_fxye.py
r1117 r1123 7 7 # $Id$ 8 8 ########### SVN repository information ################### 9 # a routine to read in powder data from a GSAS-compatible files 10 # 9 ''' 10 *Module G2pwd_fxye: GSAS data files* 11 ------------------------------------ 12 Routine to read in powder data in a variety of formats 13 that are defined for GSAS. 14 15 ''' 11 16 import sys 12 17 import os.path as ospath -
trunk/imports/G2pwd_xye.py
r1077 r1123 7 7 # $Id$ 8 8 ########### SVN repository information ################### 9 # a routine to read in powder data from a Topas-compatible .xye file 10 # 9 ''' 10 *Module G2pwd_xye: Topas .xye data* 11 ------------------------------------ 12 13 Routine to read in powder data from a Topas-compatible .xye file 14 15 ''' 16 11 17 import sys 12 18 import os.path as ospath -
trunk/imports/G2sfact.py
r1110 r1123 7 7 # $Id$ 8 8 ########### SVN repository information ################### 9 # short routines to read in structure factors from simple file formats 10 # 9 ''' 10 *Module G2sfact: simple HKL import* 11 ----------------------------------- 12 Read structure factors from a simple hkl file. Two routines are 13 provided to read from files containing F or F\ :sup:`2` values. 14 15 ''' 11 16 import sys 12 17 import numpy as np -
trunk/imports/G2sfact_CIF.py
r1110 r1123 7 7 # $Id$ 8 8 ########### SVN repository information ################### 9 ''' 10 *Module G2sfact_CIF: CIF import* 11 ----------------------------------- 12 Read structure factors from a CIF reflection table. 13 14 ''' 9 15 # routines to read in structure factors from a CIF 10 16 # -
trunk/sphinxdocs/build/html/GSASII.html
r1112 r1123 223 223 <tt class="descclassname">GSASII.</tt><tt class="descname">OnFileClose</tt><big>(</big><em>event</em><big>)</big><a class="reference internal" href="_modules/GSASII.html#GSASII.OnFileClose"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASII.GSASII.OnFileClose" title="Permalink to this definition">¶</a></dt> 224 224 <dd><p>Clears the data tree in response to the 225 File/ CloseProject menu button. User is given option to save225 File/New Project menu button. User is given option to save 226 226 the project.</p> 227 227 </dd></dl> -
trunk/sphinxdocs/build/html/GSASIIGUIr.html
r1112 r1123 256 256 257 257 <dl class="class"> 258 <dt id="GSASIIgrid.G2MultiChoiceDialog"> 259 <em class="property">class </em><tt class="descclassname">GSASIIgrid.</tt><tt class="descname">G2MultiChoiceDialog</tt><big>(</big><em>parent</em>, <em>title</em>, <em>header</em>, <em>ChoiceList</em>, <em>**kw</em><big>)</big><a class="headerlink" href="#GSASIIgrid.G2MultiChoiceDialog" title="Permalink to this definition">¶</a></dt> 260 <dd><p>A dialog similar to MultiChoiceDialog except that buttons are 261 added to set all choices and to toggle all choices.</p> 262 <table class="docutils field-list" frame="void" rules="none"> 263 <col class="field-name" /> 264 <col class="field-body" /> 265 <tbody valign="top"> 266 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> 267 <li><strong>ParentFrame</strong> (<em>wx.Frame</em>) – reference to parent frame</li> 268 <li><strong>title</strong> (<em>str</em>) – heading above list of choices</li> 269 <li><strong>header</strong> (<em>str</em>) – Title to place on window frame</li> 270 <li><strong>ChoiceList</strong> (<em>list</em>) – a list of choices where one will be selected</li> 271 <li><strong>kw</strong> – optional keyword parameters for the wx.Dialog may 272 be included such as Size [which defaults to <cite>(320,310)</cite>] and 273 Style (which defaults to <cite>wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER|wx.CENTRE| wx.OK | wx.CANCEL</cite>); 274 note that <cite>wx.OK</cite> and <cite>wx.CANCEL</cite> controls 275 the presence of the eponymous buttons in the dialog.</li> 276 </ul> 277 </td> 278 </tr> 279 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last">the name of the created dialog</p> 280 </td> 281 </tr> 282 </tbody> 283 </table> 284 <dl class="method"> 285 <dt id="GSASIIgrid.G2MultiChoiceDialog.GetSelections"> 286 <tt class="descname">GetSelections</tt><big>(</big><big>)</big><a class="headerlink" href="#GSASIIgrid.G2MultiChoiceDialog.GetSelections" title="Permalink to this definition">¶</a></dt> 287 <dd><p>Returns a list of the indices for the selected choices</p> 288 </dd></dl> 289 290 </dd></dl> 291 292 <dl class="class"> 258 293 <dt id="GSASIIgrid.GSGrid"> 259 294 <em class="property">class </em><tt class="descclassname">GSASIIgrid.</tt><tt class="descname">GSGrid</tt><big>(</big><em>parent</em>, <em>name=''</em><big>)</big><a class="reference internal" href="_modules/GSASIIgrid.html#GSGrid"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIgrid.GSGrid" title="Permalink to this definition">¶</a></dt> … … 880 915 881 916 <dl class="method"> 917 <dt id="GSASIIIO.ExportBaseclass.ExportSelect"> 918 <tt class="descname">ExportSelect</tt><big>(</big><em>AskFile=True</em><big>)</big><a class="headerlink" href="#GSASIIIO.ExportBaseclass.ExportSelect" title="Permalink to this definition">¶</a></dt> 919 <dd><p>Selects histograms or phases when needed. Sets a default file name.</p> 920 <table class="docutils field-list" frame="void" rules="none"> 921 <col class="field-name" /> 922 <col class="field-body" /> 923 <tbody valign="top"> 924 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>AskFile</strong> (<em>bool</em>) – if AskFile is True (default) get the name of the file 925 in a dialog</td> 926 </tr> 927 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">True in case of an error</td> 928 </tr> 929 </tbody> 930 </table> 931 </dd></dl> 932 933 <dl class="method"> 882 934 <dt id="GSASIIIO.ExportBaseclass.GetAtoms"> 883 935 <tt class="descname">GetAtoms</tt><big>(</big><em>phasenam</em><big>)</big><a class="reference internal" href="_modules/GSASIIIO.html#ExportBaseclass.GetAtoms"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIIO.ExportBaseclass.GetAtoms" title="Permalink to this definition">¶</a></dt> … … 898 950 their standard uncertainty (or a negative value)</li> 899 951 <li>td is contains a list with either one or six pairs of numbers: 900 if one number it is U<sub>iso</sub> and with six it is952 if one number it is U<sub>iso</sub> and with six numbers it is 901 953 U<sub>11</sub>, U<sub>22</sub>, U<sub>33</sub>, U<sub>12</sub>, U<sub>13</sub> & U<sub>23</sub> 902 954 paired with their standard uncertainty (or a negative value)</li> … … 927 979 928 980 <dl class="method"> 981 <dt id="GSASIIIO.ExportBaseclass.InitExport"> 982 <tt class="descname">InitExport</tt><big>(</big><em>event</em><big>)</big><a class="headerlink" href="#GSASIIIO.ExportBaseclass.InitExport" title="Permalink to this definition">¶</a></dt> 983 <dd><p>Determines the type of menu that called the Exporter.</p> 984 </dd></dl> 985 986 <dl class="method"> 929 987 <dt id="GSASIIIO.ExportBaseclass.OpenFile"> 930 988 <tt class="descname">OpenFile</tt><big>(</big><em>fil=None</em><big>)</big><a class="reference internal" href="_modules/GSASIIIO.html#ExportBaseclass.OpenFile"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIIO.ExportBaseclass.OpenFile" title="Permalink to this definition">¶</a></dt> … … 939 997 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">the file object opened by the routine which is also 940 998 saved as self.fp</td> 941 </tr>942 </tbody>943 </table>944 </dd></dl>945 946 <dl class="method">947 <dt id="GSASIIIO.ExportBaseclass.SetupExport">948 <tt class="descname">SetupExport</tt><big>(</big><em>event</em>, <em>AskFile=True</em><big>)</big><a class="reference internal" href="_modules/GSASIIIO.html#ExportBaseclass.SetupExport"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIIO.ExportBaseclass.SetupExport" title="Permalink to this definition">¶</a></dt>949 <dd><p>Determines the type of menu that called the Exporter. Selects histograms950 or phases when needed.</p>951 <table class="docutils field-list" frame="void" rules="none">952 <col class="field-name" />953 <col class="field-body" />954 <tbody valign="top">955 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>AskFile</strong> (<em>bool</em>) – if AskFile is True (default) get the name of the file956 in a dialog</td>957 </tr>958 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">True in case of an error</td>959 999 </tr> 960 1000 </tbody> … … 1007 1047 <dl class="method"> 1008 1048 <dt id="GSASIIIO.ExportBaseclass.loadTree"> 1009 <tt class="descname">loadTree</tt><big>(</big>< em>histType=None</em><big>)</big><a class="reference internal" href="_modules/GSASIIIO.html#ExportBaseclass.loadTree"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIIO.ExportBaseclass.loadTree" title="Permalink to this definition">¶</a></dt>1049 <tt class="descname">loadTree</tt><big>(</big><big>)</big><a class="reference internal" href="_modules/GSASIIIO.html#ExportBaseclass.loadTree"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIIO.ExportBaseclass.loadTree" title="Permalink to this definition">¶</a></dt> 1010 1050 <dd><p>Load the contents of the data tree into a set of dicts 1011 1051 (self.OverallParms, self.Phases and self.Histogram as well as self.powderDict … … 1090 1130 <tbody valign="top"> 1091 1131 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> 1092 <li><strong>G2frame</strong> (<em>wx.Frame</em>) – main GSAS-II Frame and data object </li>1132 <li><strong>G2frame</strong> (<em>wx.Frame</em>) – main GSAS-II Frame and data object. Note: not used!</li> 1093 1133 <li><strong>imagefile</strong> (<em>str</em>) – name of image file</li> 1094 1134 <li><strong>imageOnly</strong> (<em>bool</em>) – If True return only the image, -
trunk/sphinxdocs/build/html/GSASIImath.html
r1112 r1123 402 402 <dl class="function"> 403 403 <dt id="GSASIImath.OmitMap"> 404 <tt class="descclassname">GSASIImath.</tt><tt class="descname">OmitMap</tt><big>(</big><em>data</em>, <em>reflDict</em> <big>)</big><a class="reference internal" href="_modules/GSASIImath.html#OmitMap"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIImath.OmitMap" title="Permalink to this definition">¶</a></dt>404 <tt class="descclassname">GSASIImath.</tt><tt class="descname">OmitMap</tt><big>(</big><em>data</em>, <em>reflDict</em>, <em>pgbar=None</em><big>)</big><a class="reference internal" href="_modules/GSASIImath.html#OmitMap"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIImath.OmitMap" title="Permalink to this definition">¶</a></dt> 405 405 <dd><p>default doc string</p> 406 406 <table class="docutils field-list" frame="void" rules="none"> -
trunk/sphinxdocs/build/html/GSASIIplot.html
r1077 r1123 150 150 </dd></dl> 151 151 152 </dd></dl> 153 154 <dl class="function"> 155 <dt id="GSASIIplot.OnStartMask"> 156 <tt class="descclassname">GSASIIplot.</tt><tt class="descname">OnStartMask</tt><big>(</big><em>G2frame</em>, <em>eventkey</em><big>)</big><a class="headerlink" href="#GSASIIplot.OnStartMask" title="Permalink to this definition">¶</a></dt> 157 <dd><p>Initiate the start of a Frame or Polygon map</p> 158 <table class="docutils field-list" frame="void" rules="none"> 159 <col class="field-name" /> 160 <col class="field-body" /> 161 <tbody valign="top"> 162 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple"> 163 <li><strong>G2frame</strong> (<em>wx.Frame</em>) – The main GSAS-II tree “window”</li> 164 <li><strong>eventkey</strong> (<em>str</em>) – a single letter (‘f’ or ‘p’) that 165 determines what type of mask is created.</li> 166 </ul> 167 </td> 168 </tr> 169 </tbody> 170 </table> 152 171 </dd></dl> 153 172 -
trunk/sphinxdocs/build/html/_modules/index.html
r1112 r1123 49 49 50 50 <h1>All modules for which code is available</h1> 51 <ul><li><a href="GSASII.html">GSASII</a></li> 51 <ul><li><a href="G2export_CIF.html">G2export_CIF</a></li> 52 <li><a href="G2export_PDB.html">G2export_PDB</a></li> 53 <li><a href="G2export_csv.html">G2export_csv</a></li> 54 <li><a href="G2export_examples.html">G2export_examples</a></li> 55 <li><a href="G2export_image.html">G2export_image</a></li> 56 <li><a href="G2export_map.html">G2export_map</a></li> 57 <li><a href="G2export_shelx.html">G2export_shelx</a></li> 58 <li><a href="G2phase.html">G2phase</a></li> 59 <li><a href="G2phase_CIF.html">G2phase_CIF</a></li> 60 <li><a href="G2phase_GPX.html">G2phase_GPX</a></li> 61 <li><a href="G2pwd_CIF.html">G2pwd_CIF</a></li> 62 <li><a href="G2pwd_GPX.html">G2pwd_GPX</a></li> 63 <li><a href="G2pwd_fxye.html">G2pwd_fxye</a></li> 64 <li><a href="G2pwd_xye.html">G2pwd_xye</a></li> 65 <li><a href="G2sfact.html">G2sfact</a></li> 66 <li><a href="G2sfact_CIF.html">G2sfact_CIF</a></li> 67 <li><a href="GSASII.html">GSASII</a></li> 52 68 <li><a href="GSASIIElem.html">GSASIIElem</a></li> 53 69 <li><a href="GSASIIElemGUI.html">GSASIIElemGUI</a></li> -
trunk/sphinxdocs/build/html/genindex.html
r1112 r1123 75 75 | <a href="#V"><strong>V</strong></a> 76 76 | <a href="#W"><strong>W</strong></a> 77 | <a href="#X"><strong>X</strong></a> 77 78 78 79 </div> … … 308 309 </dt> 309 310 310 </dl></td>311 <td style="width: 33%" valign="top"><dl>312 311 313 312 <dt><a href="GSASIIutil.html#gltext.Text.centered">centered (gltext.Text attribute)</a> … … 334 333 335 334 </dl></dd> 335 </dl></td> 336 <td style="width: 33%" valign="top"><dl> 336 337 337 338 <dt><a href="GSASIIutil.html#GSASIIElem.CheckElement">CheckElement() (in module GSASIIElem)</a> … … 355 356 356 357 358 <dt><a href="exports.html#G2export_CIF.CIF2dict">CIF2dict() (in module G2export_CIF)</a> 359 </dt> 360 361 362 <dt><a href="exports.html#G2export_CIF.CIFdefHelp">CIFdefHelp (class in G2export_CIF)</a> 363 </dt> 364 365 366 <dt><a href="exports.html#G2export_CIF.EditCIFpanel.CIFEntryWidget">CIFEntryWidget() (G2export_CIF.EditCIFpanel method)</a> 367 </dt> 368 369 370 <dt><a href="imports.html#G2sfact_CIF.CIFhklReader">CIFhklReader (class in G2sfact_CIF)</a> 371 </dt> 372 373 374 <dt><a href="imports.html#G2phase_CIF.CIFPhaseReader">CIFPhaseReader (class in G2phase_CIF)</a> 375 </dt> 376 377 378 <dt><a href="imports.html#G2pwd_CIF.CIFpwdReader">CIFpwdReader (class in G2pwd_CIF)</a> 379 </dt> 380 381 382 <dt><a href="exports.html#G2export_CIF.CIFtemplateSelect">CIFtemplateSelect (class in G2export_CIF)</a> 383 </dt> 384 385 357 386 <dt><a href="GSASIIplot.html#GSASIIplot.G2PlotNoteBook.clear">clear() (GSASIIplot.G2PlotNoteBook method)</a> 358 387 </dt> … … 397 426 398 427 399 <dt><a href="GSASIIGUIr.html#GSASIIgrid.ScrolledMultiEditor.ControlOKButton">ControlOKButton() (GSASIIgrid.ScrolledMultiEditor method)</a> 400 </dt> 401 428 <dt><a href="exports.html#G2export_CIF.EditCIFpanel.ControlOKButton">ControlOKButton() (G2export_CIF.EditCIFpanel method)</a> 429 </dt> 430 431 <dd><dl> 432 433 <dt><a href="GSASIIGUIr.html#GSASIIgrid.ScrolledMultiEditor.ControlOKButton">(GSASIIgrid.ScrolledMultiEditor method)</a> 434 </dt> 435 436 </dl></dd> 402 437 403 438 <dt><a href="GSASIIutil.html#GSASIIlattice.CosAngle">CosAngle() (in module GSASIIlattice)</a> … … 498 533 499 534 535 <dt><a href="exports.html#G2export_CIF.dict2CIF">dict2CIF() (in module G2export_CIF)</a> 536 </dt> 537 538 500 539 <dt><a href="GSASIImapvars.html#GSASIImapvars.Dict2Deriv">Dict2Deriv() (in module GSASIImapvars)</a> 501 540 </dt> … … 527 566 528 567 <dt><a href="GSASIIindex.html#GSASIIindex.DoIndexPeaks">DoIndexPeaks() (in module GSASIIindex)</a> 568 </dt> 569 570 571 <dt><a href="exports.html#G2export_CIF.EditCIFpanel.DoLayout">DoLayout() (G2export_CIF.EditCIFpanel method)</a> 529 572 </dt> 530 573 … … 562 605 563 606 607 <dt><a href="exports.html#G2export_CIF.EditCIFpanel">EditCIFpanel (class in G2export_CIF)</a> 608 </dt> 609 610 611 <dt><a href="exports.html#G2export_CIF.EditCIFtemplate">EditCIFtemplate (class in G2export_CIF)</a> 612 </dt> 613 614 564 615 <dt><a href="GSASIIGUI.html#GSASIIElemGUI.DeleteElement.ElButton">ElButton() (GSASIIElemGUI.DeleteElement method)</a> 565 616 </dt> … … 591 642 </dt> 592 643 593 </dl></td>594 <td style="width: 33%" valign="top"><dl>595 644 596 645 <dt><a href="GSASII.html#GSASII.GSASII.ErrorDialog">ErrorDialog() (GSASII.GSASII method)</a> … … 610 659 611 660 661 <dt><a href="imports.html#G2phase.EXP_ReaderClass">EXP_ReaderClass (class in G2phase)</a> 662 </dt> 663 664 612 665 <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass">ExportBaseclass (class in GSASIIIO)</a> 666 </dt> 667 668 669 <dt><a href="exports.html#G2export_CIF.ExportCIF">ExportCIF (class in G2export_CIF)</a> 670 </dt> 671 672 673 <dt><a href="exports.html#G2export_CIF.ExportDataCIF">ExportDataCIF (class in G2export_CIF)</a> 674 </dt> 675 676 677 <dt><a href="exports.html#G2export_CIF.ExportCIF.Exporter">Exporter() (G2export_CIF.ExportCIF method)</a> 678 </dt> 679 680 <dd><dl> 681 682 <dt><a href="exports.html#G2export_PDB.ExportPhaseCartXYZ.Exporter">(G2export_PDB.ExportPhaseCartXYZ method)</a> 683 </dt> 684 685 686 <dt><a href="exports.html#G2export_PDB.ExportPhasePDB.Exporter">(G2export_PDB.ExportPhasePDB method)</a> 687 </dt> 688 689 690 <dt><a href="exports.html#G2export_csv.ExportPhaseCSV.Exporter">(G2export_csv.ExportPhaseCSV method)</a> 691 </dt> 692 693 694 <dt><a href="exports.html#G2export_csv.ExportPowderCSV.Exporter">(G2export_csv.ExportPowderCSV method)</a> 695 </dt> 696 697 698 <dt><a href="exports.html#G2export_csv.ExportPowderReflCSV.Exporter">(G2export_csv.ExportPowderReflCSV method)</a> 699 </dt> 700 701 702 <dt><a href="exports.html#G2export_csv.ExportSingleCSV.Exporter">(G2export_csv.ExportSingleCSV method)</a> 703 </dt> 704 705 706 <dt><a href="exports.html#G2export_examples.ExportPhaseText.Exporter">(G2export_examples.ExportPhaseText method)</a> 707 </dt> 708 709 710 <dt><a href="exports.html#G2export_examples.ExportPowderReflText.Exporter">(G2export_examples.ExportPowderReflText method)</a> 711 </dt> 712 713 714 <dt><a href="exports.html#G2export_examples.ExportPowderText.Exporter">(G2export_examples.ExportPowderText method)</a> 715 </dt> 716 717 718 <dt><a href="exports.html#G2export_examples.ExportSingleText.Exporter">(G2export_examples.ExportSingleText method)</a> 719 </dt> 720 721 722 <dt><a href="exports.html#G2export_image.ExportImagePNG.Exporter">(G2export_image.ExportImagePNG method)</a> 723 </dt> 724 725 726 <dt><a href="exports.html#G2export_map.ExportMapASCII.Exporter">(G2export_map.ExportMapASCII method)</a> 727 </dt> 728 729 730 <dt><a href="exports.html#G2export_map.ExportMapCCP4.Exporter">(G2export_map.ExportMapCCP4 method)</a> 731 </dt> 732 733 734 <dt><a href="exports.html#G2export_shelx.ExportPhaseShelx.Exporter">(G2export_shelx.ExportPhaseShelx method)</a> 735 </dt> 736 737 </dl></dd> 738 </dl></td> 739 <td style="width: 33%" valign="top"><dl> 740 741 <dt><a href="exports.html#G2export_image.ExportImagePNG">ExportImagePNG (class in G2export_image)</a> 742 </dt> 743 744 745 <dt><a href="exports.html#G2export_map.ExportMapASCII">ExportMapASCII (class in G2export_map)</a> 746 </dt> 747 748 749 <dt><a href="exports.html#G2export_map.ExportMapCCP4">ExportMapCCP4 (class in G2export_map)</a> 750 </dt> 751 752 753 <dt><a href="exports.html#G2export_PDB.ExportPhaseCartXYZ">ExportPhaseCartXYZ (class in G2export_PDB)</a> 754 </dt> 755 756 757 <dt><a href="exports.html#G2export_CIF.ExportPhaseCIF">ExportPhaseCIF (class in G2export_CIF)</a> 758 </dt> 759 760 761 <dt><a href="exports.html#G2export_csv.ExportPhaseCSV">ExportPhaseCSV (class in G2export_csv)</a> 762 </dt> 763 764 765 <dt><a href="exports.html#G2export_PDB.ExportPhasePDB">ExportPhasePDB (class in G2export_PDB)</a> 766 </dt> 767 768 769 <dt><a href="exports.html#G2export_shelx.ExportPhaseShelx">ExportPhaseShelx (class in G2export_shelx)</a> 770 </dt> 771 772 773 <dt><a href="exports.html#G2export_examples.ExportPhaseText">ExportPhaseText (class in G2export_examples)</a> 774 </dt> 775 776 777 <dt><a href="exports.html#G2export_csv.ExportPowderCSV">ExportPowderCSV (class in G2export_csv)</a> 778 </dt> 779 780 781 <dt><a href="exports.html#G2export_csv.ExportPowderReflCSV">ExportPowderReflCSV (class in G2export_csv)</a> 782 </dt> 783 784 785 <dt><a href="exports.html#G2export_examples.ExportPowderReflText">ExportPowderReflText (class in G2export_examples)</a> 786 </dt> 787 788 789 <dt><a href="exports.html#G2export_examples.ExportPowderText">ExportPowderText (class in G2export_examples)</a> 790 </dt> 791 792 793 <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass.ExportSelect">ExportSelect() (GSASIIIO.ExportBaseclass method)</a> 794 </dt> 795 796 797 <dt><a href="exports.html#G2export_csv.ExportSingleCSV">ExportSingleCSV (class in G2export_csv)</a> 798 </dt> 799 800 801 <dt><a href="exports.html#G2export_examples.ExportSingleText">ExportSingleText (class in G2export_examples)</a> 613 802 </dt> 614 803 … … 764 953 <td style="width: 33%" valign="top"><dl> 765 954 955 <dt><a href="exports.html#module-G2export_CIF">G2export_CIF (module)</a> 956 </dt> 957 958 959 <dt><a href="exports.html#module-G2export_csv">G2export_csv (module)</a> 960 </dt> 961 962 963 <dt><a href="exports.html#module-G2export_examples">G2export_examples (module)</a> 964 </dt> 965 966 967 <dt><a href="exports.html#module-G2export_image">G2export_image (module)</a> 968 </dt> 969 970 971 <dt><a href="exports.html#module-G2export_map">G2export_map (module)</a> 972 </dt> 973 974 975 <dt><a href="exports.html#module-G2export_PDB">G2export_PDB (module)</a> 976 </dt> 977 978 979 <dt><a href="exports.html#module-G2export_shelx">G2export_shelx (module)</a> 980 </dt> 981 982 766 983 <dt><a href="GSASIIGUIr.html#GSASIIgrid.G2HtmlWindow">G2HtmlWindow (class in GSASIIgrid)</a> 767 984 </dt> 768 985 769 986 987 <dt><a href="GSASIIGUIr.html#GSASIIgrid.G2MultiChoiceDialog">G2MultiChoiceDialog (class in GSASIIgrid)</a> 988 </dt> 989 990 991 <dt><a href="imports.html#module-G2phase">G2phase (module)</a> 992 </dt> 993 994 995 <dt><a href="imports.html#module-G2phase_CIF">G2phase_CIF (module)</a> 996 </dt> 997 998 999 <dt><a href="imports.html#module-G2phase_GPX">G2phase_GPX (module)</a> 1000 </dt> 1001 1002 770 1003 <dt><a href="GSASIIplot.html#GSASIIplot.G2Plot3D">G2Plot3D (class in GSASIIplot)</a> 771 1004 </dt> … … 784 1017 785 1018 1019 <dt><a href="imports.html#module-G2pwd_CIF">G2pwd_CIF (module)</a> 1020 </dt> 1021 1022 1023 <dt><a href="imports.html#module-G2pwd_fxye">G2pwd_fxye (module)</a> 1024 </dt> 1025 1026 1027 <dt><a href="imports.html#module-G2pwd_GPX">G2pwd_GPX (module)</a> 1028 </dt> 1029 1030 1031 <dt><a href="imports.html#module-G2pwd_xye">G2pwd_xye (module)</a> 1032 </dt> 1033 1034 1035 <dt><a href="imports.html#module-G2sfact">G2sfact (module)</a> 1036 </dt> 1037 1038 1039 <dt><a href="imports.html#module-G2sfact_CIF">G2sfact_CIF (module)</a> 1040 </dt> 1041 1042 786 1043 <dt><a href="GSASIIutil.html#GSASIIspc.GenAtom">GenAtom() (in module GSASIIspc)</a> 787 1044 </dt> … … 1135 1392 </dt> 1136 1393 1394 </dl></td> 1395 <td style="width: 33%" valign="top"><dl> 1137 1396 1138 1397 <dt><a href="GSASIIutil.html#GSASIIspc.GetNXUPQsym">GetNXUPQsym() (in module GSASIIspc)</a> … … 1163 1422 </dt> 1164 1423 1165 </dl></td>1166 <td style="width: 33%" valign="top"><dl>1167 1424 1168 1425 <dt><a href="GSASII.html#GSASII.GSASII.GetPhaseData">GetPhaseData() (GSASII.GSASII method)</a> … … 1276 1533 1277 1534 1535 <dt><a href="GSASIIGUIr.html#GSASIIgrid.G2MultiChoiceDialog.GetSelections">GetSelections() (GSASIIgrid.G2MultiChoiceDialog method)</a> 1536 </dt> 1537 1538 1278 1539 <dt><a href="GSASIImath.html#GSASIImath.GetSHCoeff">GetSHCoeff() (in module GSASIImath)</a> 1279 1540 </dt> … … 1429 1690 1430 1691 <dt><a href="GSASIImapvars.html#GSASIImapvars.GroupConstraints">GroupConstraints() (in module GSASIImapvars)</a> 1692 </dt> 1693 1694 1695 <dt><a href="imports.html#G2pwd_GPX.GSAS2_ReaderClass">GSAS2_ReaderClass (class in G2pwd_GPX)</a> 1696 </dt> 1697 1698 1699 <dt><a href="imports.html#G2pwd_fxye.GSAS_ReaderClass">GSAS_ReaderClass (class in G2pwd_fxye)</a> 1431 1700 </dt> 1432 1701 … … 1595 1864 </dt> 1596 1865 1597 </dl></td> 1598 <td style="width: 33%" valign="top"><dl> 1866 1867 <dt><a href="imports.html#G2sfact.HKLF2_ReaderClass">HKLF2_ReaderClass (class in G2sfact)</a> 1868 </dt> 1869 1870 </dl></td> 1871 <td style="width: 33%" valign="top"><dl> 1872 1873 <dt><a href="imports.html#G2sfact.HKLF_ReaderClass">HKLF_ReaderClass (class in G2sfact)</a> 1874 </dt> 1875 1599 1876 1600 1877 <dt><a href="GSASIIGUIr.html#GSASIIgrid.HorizontalLine">HorizontalLine() (in module GSASIIgrid)</a> … … 1670 1947 1671 1948 1949 <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass.InitExport">InitExport() (GSASIIIO.ExportBaseclass method)</a> 1950 </dt> 1951 1952 1672 1953 <dt><a href="GSASIIGUIr.html#GSASIIIO.ImportStructFactor.InitParameters">InitParameters() (GSASIIIO.ImportStructFactor method)</a> 1673 1954 </dt> … … 1712 1993 1713 1994 1995 <dt><a href="exports.html#G2export_CIF.LoadCIFdic">LoadCIFdic() (in module G2export_CIF)</a> 1996 </dt> 1997 1998 1714 1999 <dt><a href="GSASIIobj.html#GSASIIobj.LoadHistogramIDs">LoadHistogramIDs() (in module GSASIIobj)</a> 1715 2000 </dt> 1716 2001 2002 </dl></td> 2003 <td style="width: 33%" valign="top"><dl> 1717 2004 1718 2005 <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass.loadParmDict">loadParmDict() (GSASIIIO.ExportBaseclass method)</a> 1719 2006 </dt> 1720 2007 1721 </dl></td>1722 <td style="width: 33%" valign="top"><dl>1723 2008 1724 2009 <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass.loadTree">loadTree() (GSASIIIO.ExportBaseclass method)</a> … … 1906 2191 1907 2192 2193 <dt><a href="exports.html#G2export_CIF.EditCIFpanel.OnAddRow">OnAddRow() (G2export_CIF.EditCIFpanel method)</a> 2194 </dt> 2195 2196 1908 2197 <dt><a href="GSASIIGUIr.html#GSASIIgrid.ASCIIValidator.OnChar">OnChar() (GSASIIgrid.ASCIIValidator method)</a> 1909 2198 </dt> … … 1989 2278 </dt> 1990 2279 1991 </dl></td>1992 <td style="width: 33%" valign="top"><dl>1993 2280 1994 2281 <dt><a href="GSASII.html#GSASII.GSASII.OnImportSfact">OnImportSfact() (GSASII.GSASII method)</a> 1995 2282 </dt> 1996 2283 2284 </dl></td> 2285 <td style="width: 33%" valign="top"><dl> 1997 2286 1998 2287 <dt><a href="GSASII.html#GSASII.GSASIImain.OnInit">OnInit() (GSASII.GSASIImain method)</a> … … 2004 2293 2005 2294 2295 <dt><a href="exports.html#G2export_CIF.EditCIFpanel.OnLayoutNeeded">OnLayoutNeeded() (G2export_CIF.EditCIFpanel method)</a> 2296 </dt> 2297 2298 2006 2299 <dt><a href="GSASII.html#GSASII.GSASII.OnMakePDFs">OnMakePDFs() (GSASII.GSASII method)</a> 2007 2300 </dt> … … 2068 2361 2069 2362 2363 <dt><a href="GSASIIplot.html#GSASIIplot.OnStartMask">OnStartMask() (in module GSASIIplot)</a> 2364 </dt> 2365 2366 2070 2367 <dt><a href="GSASII.html#GSASII.GSASII.OnViewLSParms">OnViewLSParms() (GSASII.GSASII method)</a> 2071 2368 </dt> 2072 2369 2073 2370 2074 <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass.OpenFile">OpenFile() (GSASIIIO.ExportBaseclass method)</a> 2075 </dt> 2076 2371 <dt><a href="exports.html#G2export_map.ExportMapCCP4.OpenFile">OpenFile() (G2export_map.ExportMapCCP4 method)</a> 2372 </dt> 2373 2374 <dd><dl> 2375 2376 <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass.OpenFile">(GSASIIIO.ExportBaseclass method)</a> 2377 </dt> 2378 2379 </dl></dd> 2077 2380 2078 2381 <dt><a href="GSASIIutil.html#GSASIIspc.Opposite">Opposite() (in module GSASIIspc)</a> … … 2090 2393 <td style="width: 33%" valign="top"><dl> 2091 2394 2395 <dt><a href="imports.html#G2phase.PDB_ReaderClass">PDB_ReaderClass (class in G2phase)</a> 2396 </dt> 2397 2398 2092 2399 <dt><a href="GSASIIGUIr.html#GSASIIIO.PDFSave">PDFSave() (in module GSASIIIO)</a> 2093 2400 </dt> … … 2126 2433 2127 2434 2435 <dt><a href="imports.html#G2phase_GPX.PhaseReaderClass">PhaseReaderClass (class in G2phase_GPX)</a> 2436 </dt> 2437 2438 2128 2439 <dt><a href="GSASIIGUIr.html#GSASIIIO.ImportPhase.PhaseSelector">PhaseSelector() (GSASIIIO.ImportPhase method)</a> 2129 2440 </dt> … … 2134 2445 2135 2446 2447 <dt><a href="exports.html#G2export_CIF.PickleCIFdict">PickleCIFdict() (in module G2export_CIF)</a> 2448 </dt> 2449 2450 2136 2451 <dt><a href="GSASIIGUIr.html#GSASIIgrid.PickTwoDialog">PickTwoDialog (class in GSASIIgrid)</a> 2137 2452 </dt> … … 2193 2508 </dt> 2194 2509 2510 </dl></td> 2511 <td style="width: 33%" valign="top"><dl> 2195 2512 2196 2513 <dt><a href="GSASIIplot.html#GSASIIplot.PlotSizeStrainPO">PlotSizeStrainPO() (in module GSASIIplot)</a> 2197 2514 </dt> 2198 2515 2199 </dl></td>2200 <td style="width: 33%" valign="top"><dl>2201 2516 2202 2517 <dt><a href="GSASIIplot.html#GSASIIplot.PlotSngl">PlotSngl() (in module GSASIIplot)</a> … … 2233 2548 2234 2549 <dt><a href="GSASIIutil.html#GSASIIlattice.polfcal">polfcal() (in module GSASIIlattice)</a> 2550 </dt> 2551 2552 2553 <dt><a href="exports.html#G2export_CIF.EditCIFtemplate.Post">Post() (G2export_CIF.EditCIFtemplate method)</a> 2235 2554 </dt> 2236 2555 … … 2560 2879 2561 2880 2562 <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass.SetupExport">SetupExport() (GSASIIIO.ExportBaseclass method)</a>2563 </dt>2564 2565 2566 2881 <dt><a href="GSASIIstruc.html#GSASIIstrIO.SetUsedHistogramsAndPhases">SetUsedHistogramsAndPhases() (in module GSASIIstrIO)</a> 2567 2882 </dt> … … 2572 2887 2573 2888 2574 <dt><a href="GSASIIGUIr.html#GSASIIIO.sfloat">sfloat() (in module GSASIIIO)</a> 2575 </dt> 2576 2889 <dt><a href="imports.html#G2pwd_fxye.sfloat">sfloat() (in module G2pwd_fxye)</a> 2890 </dt> 2891 2892 <dd><dl> 2893 2894 <dt><a href="GSASIIGUIr.html#GSASIIIO.sfloat">(in module GSASIIIO)</a> 2895 </dt> 2896 2897 </dl></dd> 2577 2898 2578 2899 <dt><a href="GSASIIobj.html#index-4">SGData description</a> … … 2587 2908 </dt> 2588 2909 2589 </dl></td>2590 <td style="width: 33%" valign="top"><dl>2591 2910 2592 2911 <dt><a href="GSASIIutil.html#GSASIIspc.SGPrint">SGPrint() (in module GSASIIspc)</a> 2593 2912 </dt> 2594 2913 2914 </dl></td> 2915 <td style="width: 33%" valign="top"><dl> 2595 2916 2596 2917 <dt><a href="GSASIIGUIr.html#GSASIIgrid.SingleStringDialog.Show">Show() (GSASIIgrid.SingleStringDialog method)</a> … … 2650 2971 2651 2972 2652 <dt><a href="GSASIIGUIr.html#GSASIIIO.sint">sint() (in module GSASIIIO)</a> 2653 </dt> 2654 2973 <dt><a href="imports.html#G2pwd_fxye.sint">sint() (in module G2pwd_fxye)</a> 2974 </dt> 2975 2976 <dd><dl> 2977 2978 <dt><a href="GSASIIGUIr.html#GSASIIIO.sint">(in module GSASIIIO)</a> 2979 </dt> 2980 2981 </dl></dd> 2655 2982 2656 2983 <dt><a href="GSASIImath.html#GSASIImath.sortArray">sortArray() (in module GSASIImath)</a> … … 3099 3426 </dt> 3100 3427 3101 </dl></td>3102 <td style="width: 33%" valign="top"><dl>3103 3428 3104 3429 <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass.Write">Write() (GSASIIIO.ExportBaseclass method)</a> 3430 </dt> 3431 3432 </dl></td> 3433 <td style="width: 33%" valign="top"><dl> 3434 3435 <dt><a href="exports.html#G2export_csv.WriteList">WriteList() (in module G2export_csv)</a> 3436 </dt> 3437 3438 </dl></td> 3439 </tr></table> 3440 3441 <h2 id="X">X</h2> 3442 <table style="width: 100%" class="indextable genindextable"><tr> 3443 <td style="width: 33%" valign="top"><dl> 3444 3445 <dt><a href="imports.html#G2pwd_xye.xye_ReaderClass">xye_ReaderClass (class in G2pwd_xye)</a> 3105 3446 </dt> 3106 3447 -
trunk/sphinxdocs/build/html/index.html
r1112 r1123 124 124 </ul> 125 125 </li> 126 <li class="toctree-l1"><a class="reference internal" href="exports.html"><em>GSAS-II Export Modules</em></a><ul> 127 <li class="toctree-l2"><a class="reference internal" href="exports.html#module-g2export-examples-examples"><em>Module G2export_examples: Examples</em></a></li> 128 <li class="toctree-l2"><a class="reference internal" href="exports.html#module-g2export-csv-spreadsheet-export"><em>Module G2export_csv: Spreadsheet export</em></a></li> 129 <li class="toctree-l2"><a class="reference internal" href="exports.html#module-g2export-pdb-macromolecular-export"><em>Module G2export_PDB: Macromolecular export</em></a></li> 130 <li class="toctree-l2"><a class="reference internal" href="exports.html#module-g2export-image-2d-image-data-export"><em>Module G2export_image: 2D Image data export</em></a></li> 131 <li class="toctree-l2"><a class="reference internal" href="exports.html#module-g2export-map-map-export"><em>Module G2export_map: Map export</em></a></li> 132 <li class="toctree-l2"><a class="reference internal" href="exports.html#module-g2export-shelx-examples"><em>Module G2export_shelx: Examples</em></a></li> 133 <li class="toctree-l2"><a class="reference internal" href="exports.html#module-g2export-cif-cif-exports"><em>Module G2export_CIF: CIF Exports</em></a></li> 134 </ul> 135 </li> 136 <li class="toctree-l1"><a class="reference internal" href="imports.html"><em>GSAS-II Import Modules</em></a><ul> 137 <li class="toctree-l2"><a class="reference internal" href="imports.html#module-g2phase-pdb-and-exp"><em>Module G2phase: PDB and .EXP</em></a></li> 138 <li class="toctree-l2"><a class="reference internal" href="imports.html#module-g2phase-gpx-import-phase-from-gsas-ii-project"><em>Module G2phase_GPX: Import phase from GSAS-II project</em></a></li> 139 <li class="toctree-l2"><a class="reference internal" href="imports.html#module-g2phase-cif-coordinates-from-cif"><em>Module G2phase_CIF: Coordinates from CIF</em></a></li> 140 <li class="toctree-l2"><a class="reference internal" href="imports.html#module-g2pwd-gpx-gsas-ii-projects"><em>Module G2pwd_GPX: GSAS-II projects</em></a></li> 141 <li class="toctree-l2"><a class="reference internal" href="imports.html#module-g2pwd-fxye-gsas-data-files"><em>Module G2pwd_fxye: GSAS data files</em></a></li> 142 <li class="toctree-l2"><a class="reference internal" href="imports.html#module-g2pwd-xye-topas-xye-data"><em>Module G2pwd_xye: Topas .xye data</em></a></li> 143 <li class="toctree-l2"><a class="reference internal" href="imports.html#module-g2pwd-cif-cif-powder-data"><em>Module G2pwd_CIF: CIF powder data</em></a></li> 144 <li class="toctree-l2"><a class="reference internal" href="imports.html#module-g2sfact-simple-hkl-import"><em>Module G2sfact: simple HKL import</em></a></li> 145 <li class="toctree-l2"><a class="reference internal" href="imports.html#module-g2sfact-cif-cif-import"><em>Module G2sfact_CIF: CIF import</em></a></li> 146 </ul> 147 </li> 126 148 </ul> 127 149 </div> -
trunk/sphinxdocs/build/html/py-modindex.html
r1112 r1123 90 90 <tr class="cap" id="cap-g"><td></td><td> 91 91 <strong>g</strong></td><td></td></tr> 92 <tr> 93 <td></td> 94 <td> 95 <a href="exports.html#module-G2export_CIF"><tt class="xref">G2export_CIF</tt></a></td><td> 96 <em>Export a project in CIF format</em></td></tr> 97 <tr> 98 <td></td> 99 <td> 100 <a href="exports.html#module-G2export_csv"><tt class="xref">G2export_csv</tt></a></td><td> 101 <em>Exports a phase or dataset to a spreadsheet via a 102 comma-separated-variable (csv) format file.</em></td></tr> 103 <tr> 104 <td></td> 105 <td> 106 <a href="exports.html#module-G2export_examples"><tt class="xref">G2export_examples</tt></a></td><td> 107 <em>Demonstrates sample code that exports a phase or dataset to 108 a text file.</em></td></tr> 109 <tr> 110 <td></td> 111 <td> 112 <a href="exports.html#module-G2export_image"><tt class="xref">G2export_image</tt></a></td><td> 113 <em>Exports images</em></td></tr> 114 <tr> 115 <td></td> 116 <td> 117 <a href="exports.html#module-G2export_map"><tt class="xref">G2export_map</tt></a></td><td> 118 <em>Export Fourier and charge-flip atomic density maps</em></td></tr> 119 <tr> 120 <td></td> 121 <td> 122 <a href="exports.html#module-G2export_PDB"><tt class="xref">G2export_PDB</tt></a></td><td> 123 <em>Cartesian coordinate export, including PDB format</em></td></tr> 124 <tr> 125 <td></td> 126 <td> 127 <a href="exports.html#module-G2export_shelx"><tt class="xref">G2export_shelx</tt></a></td><td> 128 <em>Export a phase in Shelx format</em></td></tr> 129 <tr> 130 <td></td> 131 <td> 132 <a href="imports.html#module-G2phase"><tt class="xref">G2phase</tt></a></td><td> 133 <em>Uses previously implemented code: PDB and GSAS .EXP</em></td></tr> 134 <tr> 135 <td></td> 136 <td> 137 <a href="imports.html#module-G2phase_CIF"><tt class="xref">G2phase_CIF</tt></a></td><td> 138 <em>Reads phase information from a CIF</em></td></tr> 139 <tr> 140 <td></td> 141 <td> 142 <a href="imports.html#module-G2phase_GPX"><tt class="xref">G2phase_GPX</tt></a></td><td> 143 <em>Reads phase information from a GSAS-II project (.gpx) file 144 a text file.</em></td></tr> 145 <tr> 146 <td></td> 147 <td> 148 <a href="imports.html#module-G2pwd_CIF"><tt class="xref">G2pwd_CIF</tt></a></td><td> 149 <em>Reads powder data from a CIF</em></td></tr> 150 <tr> 151 <td></td> 152 <td> 153 <a href="imports.html#module-G2pwd_fxye"><tt class="xref">G2pwd_fxye</tt></a></td><td> 154 <em>Reads powder data in all of the GSAS formats</em></td></tr> 155 <tr> 156 <td></td> 157 <td> 158 <a href="imports.html#module-G2pwd_GPX"><tt class="xref">G2pwd_GPX</tt></a></td><td> 159 <em>Reads powder data from from a GSAS-II project (.gpx) file</em></td></tr> 160 <tr> 161 <td></td> 162 <td> 163 <a href="imports.html#module-G2pwd_xye"><tt class="xref">G2pwd_xye</tt></a></td><td> 164 <em>Reads powder data from a Topas format file</em></td></tr> 165 <tr> 166 <td></td> 167 <td> 168 <a href="imports.html#module-G2sfact"><tt class="xref">G2sfact</tt></a></td><td> 169 <em>Reads single crystal data from simple hkl files</em></td></tr> 170 <tr> 171 <td></td> 172 <td> 173 <a href="imports.html#module-G2sfact_CIF"><tt class="xref">G2sfact_CIF</tt></a></td><td> 174 <em>Reads single crystal data from CIF files</em></td></tr> 92 175 <tr> 93 176 <td></td> -
trunk/sphinxdocs/build/html/searchindex.js
r1112 r1123 1 Search.setIndex({objects:{"":{GSASIIgrid:[8,0,1,""],G SASIImapvars:[5,0,1,""],GSASIIobj:[11,0,1,""],scanCCD:[1,0,1,""],GSASIIpy3:[8,0,1,""],GSASIIstrMath:[13,0,1,""],GSASIIindex:[12,0,1,""],GSASIIstrIO:[13,0,1,""],ReadMarCCDFrame:[8,0,1,""],gltext:[9,0,1,""],GSASIIphsGUI:[10,0,1,""],GSASIIrestrGUI:[10,0,1,""],GSASII:[6,0,1,""],GSASIIpath:[9,0,1,""],GSASIIpwd:[7,0,1,""],GSASIIElemGUI:[10,0,1,""],makeMacApp:[1,0,1,""],GSASIIimage:[0,0,1,""],GSASIIpwdGUI:[10,0,1,""],GSASIIplot:[3,0,1,""],GSASIImath:[2,0,1,""],GSASIIdata:[9,0,1,""],GSASIIddataGUI:[10,0,1,""],GSASIIspc:[9,0,1,""],GSASIIimgGUI:[10,0,1,""],FormFactors:[9,0,1,""],GSASIItestplot:[1,0,1,""],GSASIIElem:[9,0,1,""],GSASIIIO:[8,0,1,""],GSASIIstrMain:[13,0,1,""],ElementTable:[9,0,1,""],unit_tests:[1,0,1,""],GSASIIconstrGUI:[10,0,1,""],testDeriv:[1,0,1,""],GSASIIlattice:[9,0,1,""],ImageCalibrants:[9,0,1,""]},GSASIIimgGUI:{UpdateImageControls:[10,2,1,""],UpdateMasks:[10,2,1,""],UpdateStressStrain:[10,2,1,""]},GSASIIgrid:{EnumSelector:[8,4,1,""],downdate:[8,4,1,""],SingleStringDialog:[8,4,1,""],AddHelp:[8,4,1,""],UpdatePWHKPlot:[8,2,1,""],MyHelp:[8,4,1,""],MyHtmlPanel:[8,4,1,""],GetPatternTreeItemId:[8,2,1,""],GridFractionEditor:[8,4,1,""],GetPatternTreeDataNames:[8,2,1,""],ItemSelector:[8,2,1,""],HorizontalLine:[8,2,1,""],UpdateSeqResults:[8,2,1,""],GSNoteBook:[8,4,1,""],GSGrid:[8,4,1,""],UpdateNotebook:[8,2,1,""],UpdateHKLControls:[8,2,1,""],MovePatternTreeToGrid:[8,2,1,""],ShowHelp:[8,2,1,""],ScrolledMultiEditor:[8,4,1,""],PickTwoDialog:[8,4,1,""],DisAglDialog:[8,4,1,""],DataFrame:[8,4,1,""],CallScrolledMultiEditor:[8,2,1,""],G2HtmlWindow:[8,4,1,""],SingleFloatDialog:[8,4,1,""],ValidatedTxtCtrl:[8,4,1,""],SymOpDialog:[8,4,1,""],ASCIIValidator:[8,4,1,""],SetDataMenuBar:[8,2,1,""],NumberValidator:[8,4,1,""],UpdateControls:[8,2,1,""],Table:[8,4,1,""]},GSASIImapvars:{ComputeDepESD:[5,2,1,""],GenerateConstraints:[5,2,1,""],GetIndependentVars:[5,2,1,""],GramSchmidtOrtho:[5,2,1,""],CheckConstraints:[5,2,1,""],GetDependentVars:[5,2,1,""],Dict2Map:[5,2,1,""],GroupConstraints:[5,2,1,""],Dict2Deriv:[5,2,1,""],VarRemapShow:[5,2,1,""],InitVars:[5,2,1,""],StoreEquivalence:[5,2,1,""],PrintIndependentVars:[5,2,1,""],Map2Dict:[5,2,1,""]},GSASIIobj:{LoadHistogramIDs:[11,2,1,""],VarName:[11,4,1,""]},"GSASIIobj.VarName":{re:[11,1,1,""],fullDescr:[11,3,1,""],name:[11,3,1,""],getDescr:[11,3,1,""]},"gltext.TextElement":{owner_cnt:[9,1,1,""],foreground:[9,1,1,""],deleteTexture:[9,3,1,""],isBound:[9,3,1,""],centered:[9,1,1,""],bind:[9,3,1,""],texture:[9,1,1,""],createTexture:[9,3,1,""],texture_size:[9,1,1,""],text:[9,1,1,""],release:[9,3,1,""],draw_text:[9,3,1,""],font:[9,1,1,""]},scanCCD:{main:[1,2,1,""]},"GSASIIplot.G2PlotNoteBook":{Rename:[3,3,1,""],add3D:[3,3,1,""],OnPageChanged:[3,3,1,""],clear:[3,3,1,""],addOgl:[3,3,1,""],addMpl:[3,3,1,""],OnNotebookKey:[3,3,1,""],Delete:[3,3,1,""]},"GSASII.GSASII":{OnImportPhase:[6,3,1,""],CopyDialog:[6,4,1,""],OnDummyPowder:[6,3,1,""],OnPatternTreeItemDelete:[6,3,1,""],OnImportPowder:[6,3,1,""],OnSize:[6,3,1,""],SumDialog:[6,4,1,""],OnPatternTreeItemCollapsed:[6,3,1,""],OnRefine:[6,3,1,""],OnRenameData:[6,3,1,""],OnFileClose:[6,3,1,""],CheckNotebook:[6,3,1,""],OnFileExit:[6,3,1,""],GetPhaseData:[6,3,1,""],OnPatternTreeItemExpanded:[6,3,1,""],ErrorDialog:[6,3,1,""],OnPwdrSum:[6,3,1,""],ViewParmDialog:[6,4,1,""],OnReadPowderPeaks:[6,3,1,""],GetPWDRdatafromTree:[6,3,1,""],OnImageSum:[6,3,1,""],FillMainMenu:[6,3,1,""],GetUsedHistogramsAndPhasesfromTree:[6,3,1,""],OnSeqRefine:[6,3,1,""],OnPatternTreeKeyDown:[6,3,1,""],OnMakePDFs:[6,3,1,""],OnImportSfact:[6,3,1,""],OnViewLSParms:[6,3,1,""],OnFileSaveas:[6,3,1,""],OnFileSave:[6,3,1,""],ReadPowderIparm:[6,3,1,""],OnImageRead:[6,3,1,""],GetPowderIparm:[6,3,1,""],OnFileOpen:[6,3,1,""],GetHKLFdatafromTree:[6,3,1,""],ExitMain:[6,3,1,""],GetFileList:[6,3,1,""],OnAddPhase:[6,3,1,""],ReadPowderInstprm:[6,3,1,""],OnImportGeneric:[6,3,1,""],ConstraintDialog:[6,4,1,""],OnDataDelete:[6,3,1,""],OnPatternTreeItemActivated:[6,3,1,""],OnDeletePhase:[6,3,1,""],OnPatternTreeSelChanged:[6,3,1,""]},GSASIIstrMath:{errRefine:[13,2,1,""],Values2Dict:[13,2,1,""],SHPOcalDerv:[13,2,1,""],GetIntensityCorr:[13,2,1,""],GetHStrainShift:[13,2,1,""],GetReflPos:[13,2,1,""],dervRefine:[13,2,1,""],getPowderProfile:[13,2,1,""],GetHStrainShiftDerv:[13,2,1,""],StructureFactor:[13,2,1,""],GetAbsorbDerv:[13,2,1,""],penaltyDeriv:[13,2,1,""],StructureFactorDerv:[13,2,1,""],SCExtinction:[13,2,1,""],SHTXcal:[13,2,1,""],Dict2Values:[13,2,1,""],ApplyRBModels:[13,2,1,""],GetReflPosDerv:[13,2,1,""],ApplyXYZshifts:[13,2,1,""],GetFobsSq:[13,2,1,""],GetPrefOri:[13,2,1,""],HessRefine:[13,2,1,""],GetSampleSigGam:[13,2,1,""],penaltyFxn:[13,2,1,""],SHTXcalDerv:[13,2,1,""],GetNewCellParms:[13,2,1,""],GetSampleSigGamDerv:[13,2,1,""],GetAbsorb:[13,2,1,""],ApplyRBModelDervs:[13,2,1,""],GetPrefOriDerv:[13,2,1,""],GetAtomFXU:[13,2,1,""],getPowderProfileDerv:[13,2,1,""],SHPOcal:[13,2,1,""],GetIntensityDerv:[13,2,1,""]},GSASIIindex:{monoCellReduce:[12,2,1,""],halfCell:[12,2,1,""],getDmax:[12,2,1,""],getDmin:[12,2,1,""],IndexPeaks:[12,2,1,""],FitHKL:[12,2,1,""],Values2A:[12,2,1,""],calc_M20:[12,2,1,""],sortM20:[12,2,1,""],FitHKLZ:[12,2,1,""],ranaxis:[12,2,1,""],DoIndexPeaks:[12,2,1,""],rotOrthoA:[12,2,1,""],scaleAbyV:[12,2,1,""],A2values:[12,2,1,""],rancell:[12,2,1,""],oddPeak:[12,2,1,""],refinePeaksZ:[12,2,1,""],findBestCell:[12,2,1,""],ran2axis:[12,2,1,""],ranAbyR:[12,2,1,""],swapMonoA:[12,2,1,""],ranAbyV:[12,2,1,""],refinePeaks:[12,2,1,""],TestData:[12,2,1,""]},GSASIIstrIO:{getCellEsd:[13,2,1,""],GetRigidBodyModels:[13,2,1,""],GetHistogramData:[13,2,1,""],GetRigidBodies:[13,2,1,""],SetPhaseData:[13,2,1,""],GetAllPhaseData:[13,2,1,""],GetHistogramPhaseData:[13,2,1,""],cellVary:[13,2,1,""],GetConstraints:[13,2,1,""],CheckConstraints:[13,2,1,""],GetUsedHistogramsAndPhases:[13,2,1,""],GetPawleyConstr:[13,2,1,""],GetPhaseData:[13,2,1,""],SetRigidBodyModels:[13,2,1,""],ShowControls:[13,2,1,""],ShowBanner:[13,2,1,""],GetFprime:[13,2,1,""],SetSeqResult:[13,2,1,""],ProcessConstraints:[13,2,1,""],GetPhaseNames:[13,2,1,""],GetHistograms:[13,2,1,""],GetControls:[13,2,1,""],GetRestraints:[13,2,1,""],GPXBackup:[13,2,1,""],PrintRestraints:[13,2,1,""],getBackupName:[13,2,1,""],SetUsedHistogramsAndPhases:[13,2,1,""],SetHistogramData:[13,2,1,""],GetHistogramNames:[13,2,1,""],cellFill:[13,2,1,""],SetHistogramPhaseData:[13,2,1,""]},ReadMarCCDFrame:{marFrame:[8,4,1,""]},gltext:{TextElement:[9,4,1,""],Text:[9,4,1,""]},GSASIIphsGUI:{UpdatePhaseData:[10,2,1,""]},GSASIIrestrGUI:{UpdateRestraints:[10,2,1,""]},GSASII:{GSASIImain:[6,4,1,""],GSASII:[6,4,1,""],main:[6,2,1,""]},GSASIIpath:{svnGetLog:[9,2,1,""],svnFindLocalChanges:[9,2,1,""],GetVersionNumber:[9,2,1,""],SetVersionNumber:[9,2,1,""],svnGetRev:[9,2,1,""],svnUpdateProcess:[9,2,1,""],svnUpdateDir:[9,2,1,""],whichsvn:[9,2,1,""]},GSASIIpwd:{getFCJVoigt3:[7,2,1,""],norm_gen:[7,4,1,""],getdFCJVoigt3:[7,2,1,""],factorize:[7,2,1,""],getWidthsTOF:[7,2,1,""],Ruland:[7,2,1,""],getPeakProfile:[7,2,1,""],calcIncident:[7,2,1,""],DoPeakFit:[7,2,1,""],Dict2Values:[7,2,1,""],getEpsVoigt:[7,2,1,""],getFCJVoigt:[7,2,1,""],GetNumDensity:[7,2,1,""],ellipseSizeDerv:[7,2,1,""],AbsorbDerv:[7,2,1,""],CalcPDF:[7,2,1,""],Absorb:[7,2,1,""],GetAsfMean:[7,2,1,""],getdEpsVoigt:[7,2,1,""],Values2Dict:[7,2,1,""],fcjde_gen:[7,4,1,""],getHKLpeak:[7,2,1,""],LorchWeight:[7,2,1,""],Transmission:[7,2,1,""],getWidthsCW:[7,2,1,""],SetBackgroundParms:[7,2,1,""],cauchy_gen:[7,4,1,""],Polarization:[7,2,1,""],getgamFW:[7,2,1,""],Oblique:[7,2,1,""],ellipseSize:[7,2,1,""],getFWHM:[7,2,1,""],getBackgroundDerv:[7,2,1,""],getPeakProfileDerv:[7,2,1,""],TestData:[7,2,1,""],makeFFTsizeList:[7,2,1,""],getBackground:[7,2,1,""]},"GSASIIgrid.NumberValidator":{TransferToWindow:[8,3,1,""],Clone:[8,3,1,""],TestValid:[8,3,1,""],CheckInput:[8,3,1,""],ShowValidity:[8,3,1,""],TransferFromWindow:[8,3,1,""],OnChar:[8,3,1,""]},"GSASIIgrid.MyHelp":{OnHelpById:[8,3,1,""],OnHelpAbout:[8,3,1,""],OnSelectVersion:[8,3,1,""],OnCheckUpdates:[8,3,1,""]},"GSASIIgrid.DataFrame":{PostfillDataMenu:[8,3,1,""],Bind:[8,3,1,""],PrefillDataMenu:[8,3,1,""]},GSASIIElemGUI:{PickElement:[10,4,1,""],DeleteElement:[10,4,1,""]},"GSASIIElemGUI.PickElement":{ElButton:[10,3,1,""]},GSASIIimage:{pointInPolygon:[0,2,1,""],FitCircle:[0,2,1,""],makeRing:[0,2,1,""],GetEllipse:[0,2,1,""],ImageCalibrate:[0,2,1,""],makeIdealRing:[0,2,1,""],EdgeFinder:[0,2,1,""],ImageIntegrate:[0,2,1,""],GetDsp:[0,2,1,""],Fill2ThetaAzimuthMap:[0,2,1,""],GetAzm:[0,2,1,""],calcFij:[0,2,1,""],FitDetector:[0,2,1,""],makeMat:[0,2,1,""],calcZdisCosB:[0,2,1,""],ImageRecalibrate:[0,2,1,""],ImageCompress:[0,2,1,""],FitEllipse:[0,2,1,""],GetTthAzm:[0,2,1,""],calcDist:[0,2,1,""],Make2ThetaAzimuthMap:[0,2,1,""],GetTthAzmDsp:[0,2,1,""],GetDetectorXY:[0,2,1,""],FitRing:[0,2,1,""],checkEllipse:[0,2,1,""],GetDetXYfromThAzm:[0,2,1,""],FitStrain:[0,2,1,""],ImageLocalMax:[0,2,1,""],peneCorr:[0,2,1,""],FitStrSta:[0,2,1,""],GetTth:[0,2,1,""]},"GSASIIgrid.ScrolledMultiEditor":{ControlOKButton:[8,3,1,""]},GSASIIpwdGUI:{UpdatePeakGrid:[10,2,1,""],UpdateLimitsGrid:[10,2,1,""],UpdatePDFGrid:[10,2,1,""],UpdateBackground:[10,2,1,""],UpdateReflectionGrid:[10,2,1,""],SetDefaultSample:[10,2,1,""],UpdateUnitCellsGrid:[10,2,1,""],UpdateInstrumentGrid:[10,2,1,""],UpdateIndexPeaksGrid:[10,2,1,""],UpdateSampleGrid:[10,2,1,""],IsHistogramInAnyPhase:[10,2,1,""]},GSASIIplot:{PlotDeltSig:[3,2,1,""],PlotRama:[3,2,1,""],PlotPatterns:[3,2,1,""],PlotPeakWidths:[3,2,1,""],PlotExposedImage:[3,2,1,""],G2PlotNoteBook:[3,4,1,""],PlotTorsion:[3,2,1,""],PlotTexture:[3,2,1,""],G2PlotMpl:[3,4,1,""],PlotSeq:[3,2,1,""],PlotStructure:[3,2,1,""],PlotCovariance:[3,2,1,""],PlotSizeStrainPO:[3,2,1,""],G2PlotOgl:[3,4,1,""],PlotISFG:[3,2,1,""],PlotRigidBody:[3,2,1,""],PlotPowderLines:[3,2,1,""],PlotXY:[3,2,1,""],GSASIItoolbar:[3,4,1,""],PlotTRImage:[3,2,1,""],PlotIntegration:[3,2,1,""],G2Plot3D:[3,4,1,""],PlotImage:[3,2,1,""],PlotSngl:[3,2,1,""]},"GSASIIgrid.downdate":{getVersion:[8,3,1,""]},"GSASIIIO.ImportStructFactor":{InitControls:[8,3,1,""],InitParameters:[8,3,1,""],UpdateParameters:[8,3,1,""],UpdateControls:[8,3,1,""]},"GSASIIgrid.ValidatedTxtCtrl":{ShowStringValidity:[8,3,1,""],EvaluateExpression:[8,3,1,""]},"GSASIIIO.ImportPowderData":{powderdata:[8,1,1,""]},GSASIImath:{getRestPolefig:[2,2,1,""],getTOFgamma:[2,2,1,""],FindAtomIndexByIDs:[2,2,1,""],FourierMap:[2,2,1,""],setPeakparms:[2,2,1,""],GetDATSig:[2,2,1,""],FillAtomLookUp:[2,2,1,""],getMass:[2,2,1,""],GetAtomCoordsByID:[2,2,1,""],mcsaSearch:[2,2,1,""],invQ:[2,2,1,""],getRestAngle:[2,2,1,""],getTOFsigDeriv:[2,2,1,""],getTOFsig:[2,2,1,""],getTOFbeta:[2,2,1,""],GetAtomItemsById:[2,2,1,""],PeaksUnique:[2,2,1,""],getRestPolefigDerv:[2,2,1,""],makeQuat:[2,2,1,""],getSyXYZ:[2,2,1,""],SearchMap:[2,2,1,""],prodQVQ:[2,2,1,""],TLS2Uij:[2,2,1,""],getCWgamDeriv:[2,2,1,""],HessianLSQ:[2,2,1,""],Q2AVdeg:[2,2,1,""],printRho:[2,2,1,""],getRamaDeriv:[2,2,1,""],Q2AV:[2,2,1,""],randomQ:[2,2,1,""],AV2Q:[2,2,1,""],adjHKLmax:[2,2,1,""],getRestDeriv:[2,2,1,""],getAngSig:[2,2,1,""],anneal:[2,2,1,""],calcRamaEnergy:[2,2,1,""],AtomUij2TLS:[2,2,1,""],getRestDist:[2,2,1,""],getDistDerv:[2,2,1,""],getCWgam:[2,2,1,""],getRestChiral:[2,2,1,""],getTOFgammaDeriv:[2,2,1,""],AtomTLS2UIJ:[2,2,1,""],getRestPlane:[2,2,1,""],SetMolCent:[2,2,1,""],AVdeg2Q:[2,2,1,""],ChargeFlip:[2,2,1,""],GetSHCoeff:[2,2,1,""],GetXYZDist:[2,2,1,""],Q2Mat:[2,2,1,""],GetAtomsById:[2,2,1,""],prodQQ:[2,2,1,""],getAtomXYZ:[2,2,1,""],getCWsig:[2,2,1,""],getDensity:[2,2,1,""],calcTorsionEnergy:[2,2,1,""],randomAVdeg:[2,2,1,""],PeaksEquiv:[2,2,1,""],getTOFalpha:[2,2,1,""],getRestTorsion:[2,2,1,""],getWave:[2,2,1,""],sortArray:[2,2,1,""],GetDistSig:[2,2,1,""],ValEsd:[2,2,1,""],GetTorsionSig:[2,2,1,""],getVCov:[2,2,1,""],getCWsigDeriv:[2,2,1,""],UpdateRBUIJ:[2,2,1,""],getTOFalphaDeriv:[2,2,1,""],findOffset:[2,2,1,""],GetAngleSig:[2,2,1,""],OmitMap:[2,2,1,""],UpdateRBXYZ:[2,2,1,""],getRestRama:[2,2,1,""],UpdateMCSAxyz:[2,2,1,""],normQ:[2,2,1,""],getTorsionDeriv:[2,2,1,""],getTOFbetaDeriv:[2,2,1,""],RotateRBXYZ:[2,2,1,""]},"GSASIIIO.ImportBaseclass":{ContentsValidator:[8,3,1,""],MultipleBlockSelector:[8,3,1,""],BlockSelector:[8,3,1,""],MultipleChoicesDialog:[8,3,1,""],ExtensionValidator:[8,3,1,""]},GSASIIddataGUI:{UpdateDData:[10,2,1,""]},GSASIIspc:{test1:[9,2,1,""],test0:[9,2,1,""],test3:[9,2,1,""],test2:[9,2,1,""],SytSym:[9,2,1,""],StandardizeSpcName:[9,2,1,""],GetCSuinel:[9,2,1,""],SGErrors:[9,2,1,""],GetKNsym:[9,2,1,""],HStrainNames:[9,2,1,""],GetOprPtrName:[9,2,1,""],GetNXUPQsym:[9,2,1,""],AllOps:[9,2,1,""],MustrainNames:[9,2,1,""],selftestlist:[9,5,1,""],GenHKLf:[9,2,1,""],Muiso2Shkl:[9,2,1,""],ElemPosition:[9,2,1,""],SpaceGroup:[9,2,1,""],StringOpsProd:[9,2,1,""],MT2text:[9,2,1,""],Latt2text:[9,2,1,""],GenAtom:[9,2,1,""],SGpolar:[9,2,1,""],GetCSxinel:[9,2,1,""],ApplyStringOps:[9,2,1,""],SGPrint:[9,2,1,""],Opposite:[9,2,1,""],SpcGroup:[9,2,1,""],MoveToUnitCell:[9,2,1,""],MustrainCoeff:[9,2,1,""]},"GSASIIplot.GSASIItoolbar":{OnHelp:[3,3,1,""],OnKey:[3,3,1,""]},"GSASII.GSASIImain":{MacOpenFile:[6,3,1,""],OnInit:[6,3,1,""]},"GSASIIElemGUI.DeleteElement":{ElButton:[10,3,1,""]},GSASIItestplot:{Plot:[1,4,1,""],PlotNotebook:[1,4,1,""]},"GSASIIIO.ExportBaseclass":{OpenFile:[8,3,1,""],GetAtoms:[8,3,1,""],loadTree:[8,3,1,""],askSaveFile:[8,3,1,""],Write:[8,3,1,""],SetupExport:[8,3,1,""],dumpTree:[8,3,1,""],GetCell:[8,3,1,""],loadParmDict:[8,3,1,""],CloseFile:[8,3,1,""]},GSASIIElem:{FixValence:[9,2,1,""],GetXsectionCoeff:[9,2,1,""],GetFFC5:[9,2,1,""],GetFormFactorCoeff:[9,2,1,""],CheckElement:[9,2,1,""],getFFvalues:[9,2,1,""],getBLvalues:[9,2,1,""],GetMagFormFacCoeff:[9,2,1,""],ScatFac:[9,2,1,""],FPcalc:[9,2,1,""],GetBLtable:[9,2,1,""],GetAtomInfo:[9,2,1,""],ComptonFac:[9,2,1,""],GetFFtable:[9,2,1,""]},GSASIIIO:{trim:[8,2,1,""],GetEdfData:[8,2,1,""],ImportStructFactor:[8,4,1,""],GetGEsumData:[8,2,1,""],GetTifData:[8,2,1,""],ImportPowderData:[8,4,1,""],ReadPDBPhase:[8,2,1,""],PDFSave:[8,2,1,""],GetG2Image:[8,2,1,""],powderFxyeSave:[8,2,1,""],ExtractFileFromZip:[8,2,1,""],CheckImageFile:[8,2,1,""],GetImgData:[8,2,1,""],MultipleChoicesDialog:[8,4,1,""],sint:[8,2,1,""],SaveIntegration:[8,2,1,""],FileDlgFixExt:[8,2,1,""],SetNewPhase:[8,2,1,""],IndexPeakListSave:[8,2,1,""],PutG2Image:[8,2,1,""],ProjFileOpen:[8,2,1,""],GetImageData:[8,2,1,""],ProjFileSave:[8,2,1,""],GetPowderPeaks:[8,2,1,""],ExportBaseclass:[8,4,1,""],GetMAR345Data:[8,2,1,""],ReadEXPPhase:[8,2,1,""],ImportBaseclass:[8,4,1,""],ImportPhase:[8,4,1,""],sfloat:[8,2,1,""],PeakListSave:[8,2,1,""],powderXyeSave:[8,2,1,""],ReadCIF:[8,2,1,""]},"GSASIIgrid.ASCIIValidator":{Clone:[8,3,1,""],TestValid:[8,3,1,""],OnChar:[8,3,1,""],TransferToWindow:[8,3,1,""],TransferFromWindow:[8,3,1,""]},"GSASIIgrid.SingleStringDialog":{GetValue:[8,3,1,""],Show:[8,3,1,""]},unit_tests:{test_GSASIIlattice:[1,2,1,""],test_GSASIIspc:[1,2,1,""]},GSASIIconstrGUI:{UpdateRigidBodies:[10,2,1,""],UpdateConstraints:[10,2,1,""],MultiIntegerDialog:[10,4,1,""]},"GSASIIgrid.AddHelp":{OnHelpById:[8,3,1,""]},testDeriv:{main:[1,2,1,""]},GSASIIlattice:{test1:[9,2,1,""],Hx2Rh:[9,2,1,""],test3:[9,2,1,""],test2:[9,2,1,""],A2Gmat:[9,2,1,""],test4:[9,2,1,""],test7:[9,2,1,""],test6:[9,2,1,""],test9:[9,2,1,""],test8:[9,2,1,""],permutations:[9,2,1,""],CellBlock:[9,2,1,""],Rh2Hx:[9,2,1,""],Flnh:[9,2,1,""],fillgmat:[9,2,1,""],invpolfcal:[9,2,1,""],Uij2Ueqv:[9,2,1,""],Gmat2AB:[9,2,1,""],GetBraviasNum:[9,2,1,""],calc_rDsq2:[9,2,1,""],test5:[9,2,1,""],rotdMat4:[9,2,1,""],SwapIndx:[9,2,1,""],GenSHCoeff:[9,2,1,""],CentCheck:[9,2,1,""],sortHKLd:[9,2,1,""],CellAbsorption:[9,2,1,""],UijtoU6:[9,2,1,""],selftestlist:[9,5,1,""],getHKLmax:[9,2,1,""],invcell2Gmat:[9,2,1,""],A2cell:[9,2,1,""],polfcal:[9,2,1,""],calc_V:[9,2,1,""],textureIndex:[9,2,1,""],GetKsl:[9,2,1,""],calc_rVsq:[9,2,1,""],sec2HMS:[9,2,1,""],GenHLaue:[9,2,1,""],cell2Gmat:[9,2,1,""],CosSinAngle:[9,2,1,""],rotdMat:[9,2,1,""],SamAng:[9,2,1,""],cell2A:[9,2,1,""],criticalEllipse:[9,2,1,""],MaxIndex:[9,2,1,""],Gmat2cell:[9,2,1,""],combinations:[9,2,1,""],uniqueCombinations:[9,2,1,""],CrsAng:[9,2,1,""],Glnh:[9,2,1,""],cell2AB:[9,2,1,""],selections:[9,2,1,""],GetKcl:[9,2,1,""],calc_rDsq:[9,2,1,""],calc_rV:[9,2,1,""],calc_rDsqZ:[9,2,1,""],OdfChk:[9,2,1,""],cell2GS:[9,2,1,""],GetKclKsl:[9,2,1,""],GenHBravais:[9,2,1,""],Gmat2A:[9,2,1,""],A2invcell:[9,2,1,""],U6toUij:[9,2,1,""],CosAngle:[9,2,1,""],Uij2betaij:[9,2,1,""]},"GSASIIIO.ImportPhase":{PhaseSelector:[8,3,1,""]},GSASIIstrMain:{SeqRefine:[13,2,1,""],PrintDistAngle:[13,2,1,""],DisAglTor:[13,2,1,""],Refine:[13,2,1,""],RetDistAngle:[13,2,1,""],BestPlane:[13,2,1,""],main:[13,2,1,""]},"gltext.Text":{foreground:[9,1,1,""],font:[9,1,1,""],font_size:[9,1,1,""],setForeground:[9,3,1,""],getTexture:[9,3,1,""],setFont_size:[9,3,1,""],text:[9,1,1,""],setText:[9,3,1,""],setCentered:[9,3,1,""],text_element:[9,1,1,""],texture:[9,1,1,""],centered:[9,1,1,""],setFont:[9,3,1,""],draw_text:[9,3,1,""],texture_size:[9,1,1,""],getTexture_size:[9,3,1,""],getTextElement:[9,3,1,""]},GSASIIpy3:{FormatValue:[8,2,1,""],FormulaEval:[8,2,1,""]}},terms:{getnumdens:7,structurefactorderv:13,"0xca8cc30":[],orthogon:9,"0xca8da70":[],yellow:8,four:[13,2,11,8],elemlst:8,prefix:13,targatom:13,fcjde_gen:7,helplbl:8,ranabyr:12,ranabyv:12,deviat:2,noatom:11,"0xbdfd930":[],under:[9,13],mustrain:[9,3],showhelp:8,calcdist:0,everi:[5,11,2,8,9,6],"0xca6e6b0":[],"0x20d5070":[],lattic:[9,11],readpdbphas:8,"0x1f57070":[],uij2u:9,radiusfactor:11,affect:5,relval:[],dependentparmlist:5,unitcellbox:11,atomdata:[9,2],gethistogram:13,formatvalu:8,gethklmax:9,"0x17d4a270":[],vector:[11,5,9,2,13],matric:[5,2],oxid:9,fill2thetaazimuthmap:0,freidel:11,getrestplan:2,calc_m20:12,"0xc92ac30":[],cell2g:9,"0x27281b0":[],importstructfactor:[6,8],direct:[11,2],getdfcjvoigt3:7,sourceforg:4,second:[5,11,2,9,13,6],"4x4":9,even:[9,11],neg:[11,2,8],"0x1f3def0":[],atomuij2tl:2,checknotebook:6,"0xca8cb70":[],ondummypowd:6,alp:7,"new":[5,6,2,8,9,11,13],databank:6,setfont_s:9,analtyt:13,"49012e":2,widget:[10,8],"0x17d492f0":[],error:[5,6,2,8,9,13],here:[9,8],met:2,getcwsig:2,path:[1,6,9],"0x28047b0":[],interpret:[11,1,9,13],interatom:[13,11],precis:[2,8],aui:8,"0xb96c8f0":[],aka:[13,11],covdata:[13,2],"0x18052330":[],getcwgam:2,linearli:5,putg2imag:8,total:9,unit:[4,5,13,2,8,9,10,11],ftol:2,plot:[1,11,3,8,4],describ:[1,11,5],dmdv:[5,13],seqnam:3,flnh:9,fillatomlookup:2,positiveonli:8,call:[1,3,7,6,2,8,9,10,5,13],"0x20d3fb0":[],"0x1e50430":[],"0x1e0b9f0":[],calc:[0,4,7,8],type:[4,3,13,2,8,9,11],until:[2,8],cellfil:13,swap:[],usercalibr:9,updatehklcontrol:8,"0x209e930":9,inst2:7,getatom:8,inflect:9,relat:[11,5,9,2,13],notic:13,warn:13,exce:13,"0x17d4a870":[],"0xc92aab0":[],must:[4,11,8,2,5],pickel:10,"2phi":7,cell2ab:9,setup:[13,7],work:[9,2,8],wtfactor:11,betaij:9,rd_list:6,root:11,obliqu:7,avdeg2q:2,overrid:[9,8],give:[9,3,2,11],"0x5d22bf0":[],digit:8,indic:[5,11,2,8,9,13],getcel:8,getphasedata:[6,13],want:9,end:8,thing:9,cylind:7,ilim:0,gsasiiimag:[0,4],how:[11,2],histophas:13,celllist:8,collaps:6,lam:[9,11],u22:[9,11],less:[9,2,8],after:[3,7,5,13,2,8,9],substanc:9,befor:[7,5,13,2,8,11],sedg:9,rulcoff:7,retain:8,oninit:6,"0x17d1a170":[],averag:11,svngetlog:9,"0x5b45230":[],cellvari:13,attempt:[6,8],third:11,"0x2734c30":[],constraintdialog:6,textcontrol:[],jlim:0,enter:8,lambda:[9,7],g13:9,g12:9,g11:9,oatom:2,origin:[5,13,2],over:[1,13,2,8],mx2:5,becaus:[9,8],addit:[5,9,8],mx1:5,veri:[2,8],"0xca96470":[],incid:0,varremapshow:5,vari:[5,13,2,11],"0x17d1a1b0":[],"0xca96270":[],sgtbx:9,img:8,"0x5b45430":[],fix:[5,11,7,8,9,13],orthonorm:5,rigidbodi:13,ifdup:9,gsasiiddata:10,getbackgroundderv:7,"0x17d180b0":[],treeitemid:10,gridfractioneditor:8,fil:8,calc_rvsq:9,oncheckupd:8,them:[5,9,13,8],"0x2728270":[],var1:11,mapdata:2,thei:[1,11,8,2,5],var2:11,coehlo:12,g2obj:[],readpowderinstprm:6,"break":8,printrho:2,g2frame:[3,10,8],setvalu:8,bank:6,choic:[10,8],"0xca8dcb0":[],"0xca962b0":[],getvalu:8,neutron:[9,11],atptr:[13,2],svnfindlocalchang:9,g2htmlwindow:8,your:[],european:8,"0x17d49430":[],side:9,bond:11,wxapp:6,updateseqresult:8,laboratori:9,odfchk:9,extract:[9,11,8],"0x9f9cc30":[],unbound:8,goe:11,newli:5,gof:11,rh2hx:9,dsp:[0,2],predefin:8,content:[1,4,6,2,8,9,10,11,13],gonio:11,reader:[6,8],comptonfac:9,ntz:2,linear:13,oxyz:2,free:9,standard:[4,9,2,11,8],helptyp:8,longnam:7,fcalcpres:8,gsasiitestplot:[1,4],angl:[0,3,7,13,2,8,9,11],"0xc6296f0":[],"0x209eb30":9,"0x7a3feb0":[],local:[1,9],"0xc92ab30":[],iso:8,"0x1e5ce70":[],getknsym:9,confus:8,"0x279ec30":[],shkl:9,rang:[2,8],"0x17d4a730":[],render:9,independ:5,"0x5e96d30":[],"0x5b45570":[],unlik:5,alreadi:[9,8],"0x2376470":[],"0x6144930":[],thick:7,agre:6,primari:11,sgcen:[9,11],cartesian:[9,2,11],"0x1e50330":[],"0x17d1a0f0":[],tor:2,top:[11,2,8],sometim:3,xdata:7,master:5,dwell:2,zipfil:8,"0x28213b0":[],a31:9,q2avdeg:2,consol:13,"0xc634730":[],makemat:0,"0xca95670":[],phipsi:3,"0x279eab0":[],"0x23764f0":[],getfobssq:13,test_gsasiilattic:1,target:13,keyword:8,provid:[5,9,7,8],getrestangl:2,hname:13,atomtyp:[9,11],project:[6,11,8],matter:[9,8],plotcovari:3,rotdmat4:9,"0x2821370":[],jmol:9,plotstructur:3,maxdigit:8,fashion:9,"0x234a770":[],quench:2,"0xc6057b0":[],deleteel:10,rai:[0,9,7,11],fithkl:12,raw:[6,9],seed:2,seen:[9,3],seem:8,getazm:0,pickl:8,applyrbmodel:13,latter:5,elsym:9,"0x20d51b0":[],"0xca8abb0":[],hklfname:6,parmlist:5,simplifi:8,scaleabyv:12,object:[4,6,8,9,10,11,13],pnt:11,boltzmann:2,rbmodel:[13,11],letter:[9,11,8],phase:[4,3,6,2,8,9,10,11,13],typ:8,im3m:[],usecancel:8,tradit:11,imagerecalibr:0,gettthazmdsp:0,don:9,simplif:5,doc:[0,4,3,7,13,2,8,9,10,12],"0x7b26f30":[],checkinput:8,doe:[0,4,3,6,2,8,11],dummi:6,sitesym:9,gmat2cel:9,gettextel:9,section:9,came:8,"0xca555b0":[],fhkl:2,"0x9fabd30":[],random:[11,2],radiu:[0,11,7],"0x5ea9870":[],radii:[0,13,11],getbltabl:9,pkg:8,generateconstraint:5,involv:5,absolut:[1,9],uniquecombin:9,gettorsionsig:2,ellipsoid:[9,3,11],contourlevel:11,menu:[1,6,8],explain:[],"0xb931c30":[],gsasiimapvar:[4,5],"0xca95530":[],sethistogramphasedata:13,balyuzi:9,maetric:9,testdata:[12,7],plate:[7,8],shkei:2,wide:8,bondradiu:11,stop:2,errrefin:13,"0x2804870":[],bondradii:11,net:4,dgmda:9,"0x1e503f0":[],makefftsizelist:7,"0x17d49330":[],"0xc629770":[],respond:[3,10],headinglist:8,isbound:9,plotpeakwidth:3,datatyp:[6,7,8],num:[2,9,7],dervrefin:13,result:[1,11,2,8,9,13],respons:6,fail:[1,8],fosq:8,simpl:[9,3,8],"0x5bda530":9,best:[9,8],"0x1d7afb0":[],movetounitcel:9,dependentlist:5,tensor:[11,9,13],mur:7,"0x18a61030":[],wikipedia:5,atlookup:[13,2],figur:[3,2],finger:[11,7],"0xc4ca830":[],parmdict:[0,2,5,6,7,8,13],triplet:11,omg:0,gpxfile:13,gsasiirestrgui:[4,10],newnam:3,updateimagecontrol:10,instbank:6,extens:[4,6,8],deby:11,ranid:11,toler:[9,2],"0xb96cd30":[],cov:2,cox:[11,7],compton:[9,7],against:[1,9],refltyp:2,omitmap:2,chargeflip:2,browser:8,setseqresult:13,con:11,schmidt:5,base_schedul:2,"2nd":9,"0xca8cb30":[],permut:9,xtol:[2,7],swapindx:9,gethistogramphasedata:13,itemselector:8,duplic:[9,8],gethklfdatafromtre:6,clip:11,wxtextctrl:[],getdmin:12,numpi:[4,7,13,2,8,9],three:[5,13,2,11,8],been:[5,9,2,13,8],marquardt:11,much:8,valu:[1,7,6,2,8,9,10,5,11,12,13],basic:[4,8],futur:[6,7,8],known:6,quickli:1,"0xb931db0":[],bravai:[9,12],filedlgfixext:8,ani:[5,6,2,8,9,11,13],cauchy_gen:7,testderiv:[1,4],child:[11,3],pdfsave:8,"0xb931cf0":[],findoffset:2,ident:[9,8],diffract:[1,4,6,8,9,10,11],tand:8,cell2a:9,calcul:[4,6,7,9],getpwdrdatafromtre:6,"0x9fabcb0":[],glnh:9,printabl:8,elbutton:10,oldpag:10,"0xc605770":[],"0xc92aa70":[],"0x1f3dfb0":[],kwarg:[1,3,8],setmolc:2,ight:[],sever:5,getpowderprofilederv:13,jame:8,perform:[11,6,2,9,8],make:[0,6,2,8,9,10,13],"0x234a830":[],complex:5,descend:9,cosangl:9,mcsa:[11,2],"0xc60a770":[],"0x279eb70":[],phasenum:11,"0x1e741f0":[],projectfil:9,"0xc639730":[],"0xca8daf0":[],numbervalid:8,refin:[1,5,6,2,8,11,12,13],movepatterntreetogrid:[10,8],topa:8,redefin:5,"0x18a61b30":[],wtype:6,min:[2,8],contact:9,"0x17d1a970":[],thi:[0,1,3,5,6,2,8,9,10,11,12,13],eleterm:9,onpatterntreeitemcollaps:6,left:11,stringent:2,identifi:8,just:9,getreflposderv:13,doindexpeak:12,equivalanc:5,getreflpo:13,sgsymbol:9,"0x2804970":[],yet:12,previous:5,directli:[13,11],mix:5,debug:1,getwidthstof:7,fortran:9,hap:[13,11],els:[9,13],expon:8,constrant:5,applic:[1,6],cossinangl:9,"0x20d5bb0":[],which:[3,7,5,6,2,8,9,10,11,13],maxval:8,preserv:[9,8],"0x234a6f0":[],onmakepdf:6,ifrevers:9,id_ok:8,background:[10,9,7,11,8],authorship:13,getsyxyz:2,searchmap:2,"0x1e74930":[],measur:[1,11],g33:9,vdw:11,specif:[6,9,8],arbitrari:[9,11],"0xca96130":[],"0xca8dbf0":[],oddpeak:12,"0x1eb49f0":[],incoher:9,"0x195f16f0":[],openfil:8,right:7,old:[6,9],"0x6c91d70":[],deal:9,somehow:3,"0xc60a6f0":[],intern:5,maxit:2,getintensityderv:13,transmiss:7,plotdeltsig:3,thu:[5,8],uniq:[9,13],"0xca8ccb0":[],applescript:1,normal:[9,3,2],subclass:6,gettofalphaderiv:2,getbackground:7,fob:[],gettifdata:8,condit:2,"0xca953f0":[],formfactor:[4,9],plu:[],histnum:11,stefan:9,binden:9,baktyp:7,av2q:2,"0xca8ac70":[],deletetextur:9,hst:5,post:8,fvec:2,filepoint:8,"0xca8aa70":[],obj:6,atomtls2uij:2,latt2text:9,slightli:9,polariz:11,simul:[6,2,11,8],"0xb931d70":[],produc:[1,8],postfilldatamenu:8,t_new:2,regist:[1,8],xyz:[11,9,2,13,8],"float":[0,7,5,13,2,8,9,11],bound:[6,2,9],ranrang:2,xye:8,"0x5d22c70":[],"0x5ff4330":[],suffici:1,support:[9,8],gettthazm:0,transform:[9,2,11],why:6,avail:[3,2],width:11,getatomfxu:13,editor:8,"0x1960a270":[],analysi:3,head:[9,8],"0x202a430":[],form:[11,5,9,13],offer:8,forc:[11,8],"0x5f7b770":[],refcount:9,plottextur:3,"0x20d57f0":[],resetreflist:13,formatnam:8,"true":[1,3,6,2,8,9,11,13],rbobj:2,powder:[1,3,4,6,7,8,9,10,11],absent:9,azm:[0,7],coeff:[2,9,3,7],asksavefil:8,pawleyvari:13,maximum:[2,9,7,11,8],tell:8,crystal:[4,3,6,2,9,11,13],histtyp:8,gettorsionderiv:2,prodqvq:2,later:[5,13,11,8],"0xca95270":[],"0x6c91cf0":[],dumptre:8,hstrainnam:9,diagnost:3,triclin:[9,11],updateunitcellsgrid:10,face:9,"0x209ea30":9,computedepesd:5,nx1:5,fixedvarlist:5,when:[0,3,6,8,9,10,11,13],refactor:[0,12],role:11,test:[1,3,4,2,8,9],tif:8,mult1:[5,11],"0xca95470":[],macopenfil:6,intend:[11,8],intens:[9,3,11,8],probabilist:2,"0xca8ba70":[],omega:[0,9,11],brentano:[11,7],longer:[11,2],anywher:[],postlbl:8,pseudo:[2,8],genshcoeff:9,ignor:[5,11,8,9,13,6],datafram:8,time:[11,6,2,9],push:9,"0x17e348f0":[],nxn:[11,2],"0x17e34930":[],powderxyesav:8,rancel:12,"0xca965b0":[],spgrp:[9,11],skip:[6,9],"0x1960a1f0":[],global:[4,9,11,5],"0x1e156b0":[],pval:13,invcell2gmat:9,unit_test:[1,4],unconstrain:5,gettofbetaderiv:2,forceunit:8,"0x1eb4a30":[],row:[5,9,11,8],hold:[13,11,8],depend:[5,9,7,11,8],unnumb:11,zone:3,plotxi:3,decim:[2,8],readabl:2,calc_rdsqz:9,zref:12,dialog:[6,8],okcontrol:8,vec:13,"0x6144770":[],plotrigidbodi:3,"0x21e7e30":[],getangsig:2,shpocal:13,sourc:[0,1,2,3,5,6,7,8,9,10,11,12,13],"0xca8ac30":[],string:[0,2,3,5,6,7,8,9,10,11,12,13],dictat:8,planedata:13,getramaderiv:2,fitellips:0,"0x5ff43f0":[],cool:2,level:[11,2],gui:[4,9,12,10,8],iter:2,prob:9,magnet:9,item:[4,5,6,2,8,9,10,11,13],varylist:[0,7,5,13,2,8,11],gmat2a:9,der:11,dir:8,siga:13,prevent:[5,8],cosd:8,slower:8,version:[1,9,11,8],hack:9,"0x18a618f0":[],sign:[9,8],cost:2,phfx:13,randomavdeg:2,g22:9,appear:[5,6,8],"0x235d2f0":[],selftestlist:9,uniform:2,current:[1,3,6,8,9,11,13],axial:9,u33:[9,11],"0xca55370":[],"0xca554b0":[],copydialog:6,"0x5e96df0":[],deriv:[1,4,7,13,2,8,9,5],printindependentvar:5,test2:[9,8],genatom:9,coeffici:[2,9,7,11],satisfi:5,"0x17d1a030":[],plotsizestrainpo:3,box:8,dreel:1,"0x235d230":[],shift:[13,11,8],bot:[],saveintegr:8,bob:0,findatomindexbyid:2,onviewlsparm:6,commonli:9,nmax:7,repositori:[9,8],extra:[2,8],dtype:[],modul:[0,1,2,3,4,5,6,7,8,9,10,12,11],prefer:[11,9,3,13],parma:[],nfev:2,"1st":[5,9,2],"0x18052370":[],instal:[4,9,8],dispers:9,atinfo:3,memori:[9,13],gpxbackup:13,sorthkld:9,subvers:9,applystringop:9,msg:9,black:11,marccd:8,"0xca6e6f0":[],"0x20d5030":[],python:[1,9,8,11,4],"0x17cc0a70":[],"0x17d18930":[],rigid:[13,3,10,11],prototyp:1,parm2:5,parm1:5,plotisfg:3,"0xc63d770":[],"0x1d7ad30":[],"0x27b6630":[],prepar:[9,11],importphasereaderlist:6,uniqu:[9,2,11],"0x17d4a230":[],values2dict:[13,7],"0x235d2b0":[],can:[1,3,7,6,2,8,9,5,11,13],tabul:9,purpos:3,zeroref:12,problemat:5,pawlei:11,nearest:9,sgequiv_2002_orthorhomb:[],"0xbdfd7b0":[],critic:9,tabl:[4,5,6,2,8,9,10],phaseselector:8,structurefactor:13,changetyp:[],occup:[11,8],orthorhomb:[9,11],alwai:[11,9,13,8],numitem:2,multipl:[11,6,3,9,8],viewpoint:11,"0x1f3deb0":[],tilt:7,write:[1,8],checkimagefil:8,criterion:2,gettofalpha:2,map:[11,2],remap:5,mar:[4,8],"0x17d492b0":[],sgprint:9,"0xca8ca70":[],clone:8,mac:[1,6,3,8,4],readerlist:6,mag:2,mai:[1,11,8,9,13,6],data:[0,1,3,4,2,6,7,8,9,10,11,13],hklf:[13,10,11,8],harmon:[11,9,13],stress:10,practic:2,ny1:5,"0x279ebb0":[],inform:[5,6,2,8,9,10,11,13],"switch":8,cannot:[5,11],combin:[9,11],gamma:[9,11,8],callabl:2,onrefin:6,"0xc92ac70":[],timemap:6,ranaxi:12,"0x5e96e70":[],pyopengl:4,tth:[0,9,7],getpeakprofilederv:7,still:6,pointer:[11,2],equiv:[],divis:8,"0x1e50470":[],group:[4,5,11,8,9,13],plotpattern:3,platform:[6,8],window:[1,6,3,10,8],ntri:12,"0x1e0b9b0":[],x_old:2,getrestrama:2,m_2:[],m_1:[],main:[1,4,6,8,10,11,13],"0x17e348b0":[],getcontrol:13,non:[5,9,11],"0xca8bbb0":[],calctorsionenergi:2,confirmoverwrit:8,cellsig:8,initi:[5,13,2,11,8],nation:[],showrigidbodi:11,"0x5feff70":[],now:[5,9,11],enabl:8,term:[1,3,7,13,2,9,5,11],name:[1,3,7,6,2,8,9,10,5,11,13],hessianlsq:2,revers:2,separ:[11,4,6,9,8],"0xca55470":[],muiso2shkl:9,"0x1e74130":[],ddata:10,updat:[4,7,13,2,8,9,5],compil:9,citat:13,"0xca6e630":[],replac:8,checkconstraint:[5,13],gaussian:11,newvar:[],edgefind:0,"0x5d22db0":[],wavelength:11,happen:8,genhkl:9,alpha2:11,"0xc6396f0":[],shown:[10,1,11,2,8],alpha1:11,absorpt:[9,7,11],getatomsbyid:2,space:[4,11,2,8,9,13],plotseq:3,profil:[11,8],bragg:[11,7],updatesamplegrid:10,updaterbxyz:2,formula:8,gethstrainshiftderv:13,correct:[11,7,8,9,13,6],gram:5,"0x17d1a130":[],onsiz:6,contain:[3,5,6,7,8,9,11,13],accordingli:8,cart:2,onfilesavea:6,fxye:8,theori:6,constr:5,org:[4,5],"0x240078":13,orb:9,wai:[9,8],motion:3,turn:[10,8],place:[11,6,2,9,8],getrestderiv:2,u23:[9,11],"0x17cc0a30":[],view:[6,11],imposs:9,first:[5,6,2,8,9,10,11,13],oper:[11,9,13,8],atomlabel:13,peaklistsav:8,onc:5,arrai:[7,5,6,2,8,9,11,13],generaldata:[3,2],bestplan:13,test0:9,fast:[2,8],symmetri:[11,9,2,13,8],"0x1f570b0":[],ring:[0,3],open:[6,7,13,8],"0xca96230":[],size:[3,7,11,2,8,9],given:[1,6,2,9],ellipsesizederv:7,"0x5b45470":[],convent:9,"0x17e36530":[],gsasiipath:[4,9],checkel:9,initparamet:8,necessarili:9,getbraviasnum:9,conveni:[],frame:[6,10,8],angleradii:11,updaterestraint:10,fraction:[9,11,8],copi:[6,8],edit:[6,11,8],vdwscale:11,specifi:[1,5,6,2,8,9,11,13],peaksequiv:2,"0x1d7a970":[],pnc:11,contentsvalid:8,than:[1,9,8,2,5],"0x9f9ccb0":[],xsectip:9,unpolar:7,"0x17d49470":[],redefinit:5,applet:[1,4],param2:5,param1:5,were:[11,6,2,9,8],posit:[2,9,12,7,11],"0x17d49270":[],seri:[1,13,2,8,10,11],pre:[],lowest:11,sai:9,reflist:13,argument:[1,2,8],maxindex:9,"0x17d186f0":[],gsasiipy3:[4,8],gsasiiindex:[4,12],"0x9f9cc70":[],ramanam:3,squar:[1,7,13,2,9,5,11],picktwodialog:8,fftabl:9,gettofsig:2,note:[1,4,5,6,2,8,9,10,11],gsasiielemgui:[4,10],take:[1,5,13,2,8,9],makemacapp:[1,4],obcoeff:7,leastsq:[13,7,8],phaserest:13,noth:[1,9,8],channel:9,dzero:2,begin:[11,8],sure:[6,8],trace:9,pfile:[5,13],multipli:[5,9,2,11],unsuccess:2,calc_rv:9,"0xca8dc70":[],beta:[9,11,8],pair:[11,9,2,13,8],fcj:7,cagliotti:11,renam:[6,3],"0xc6296b0":[],hmax:2,updatebackground:10,infodict:2,order:[9,11,8],pattern:[4,11,3,10,8],"0x202a4f0":[],derivdict:5,axi:[0,7,11,2,8,9],slope:2,show:[1,3,5,6,8,9,10,11],strictextens:8,atom:[4,11,2,8,9,13],"0x1e155b0":[],"0x6144970":[],sguniq:[9,11],corner:9,unfinish:[],odfln:[9,2],rotat:[0,9,2],onli:[1,5,6,2,8,9,10,11,13],ratio:11,dictlst:8,"0x28213f0":[],activ:6,written:[9,13,8],mfb:9,dict:[3,7,5,6,2,8,9,10,11,13],"0x17d4a170":[],"0xc63d6f0":[],errordialog:6,analyt:[1,9],overwritten:13,onseqrefin:6,"0x279eaf0":[],fitpgm:7,variou:[7,8],get:[3,6,2,8,9,13],ellipseprob:11,"0xca95630":[],cia:11,secondari:11,tailor:6,"0xca8cc70":[],requir:[1,8,2,4],cif:[11,8],prime:7,standardizespcnam:9,"0xca963b0":[],getxsectioncoeff:9,"0x5b454b0":[],disagldialog:[13,8],pawleyref:13,through:8,anisotrop:11,where:[0,1,2,6,7,8,9,10,5,11,13],summari:5,wiki:5,getrestdist:2,caller:10,centrosymmetr:[9,11],findbestcel:12,morehelpitem:8,prefilldatamenu:8,"0x202a1b0":[],"0xca960f0":[],getkclksl:9,symoplist:9,gsasiiddatagui:[4,10],ondatadelet:6,page:[3,10,8],qvq:2,ibrav:12,"0xca8abf0":[],label:[11,6,13,8],hist:11,between:[11,5,6,9],"import":[6,8],"0x6c91db0":[],"0x2728230":[],"0x17cc0930":[],gsasiiplot:[4,3],parent:[1,6,3,10,8],gsasiielem:[4,9],style:8,cycl:[1,11,2,8],getanglesig:2,dmin:[9,12,7,11],indexpeaklistsav:8,gsasiistrio:[4,13],come:2,onecycl:7,pseudopotenti:2,fit:[0,13,11,8],"0x23764b0":[],region:8,"0x7a3fbf0":[],mont:11,inconsist:5,mani:8,"0x7a3fdf0":[],updaterigidbodi:10,extensionlist:8,atomlookup:2,getsamplesiggamderv:13,among:2,color:[9,10,11,8],filldiagon:[],period:[4,9,10,8],pole:3,colon:[11,8],pola:7,"0xb96ca70":[],cancel:8,"0xca955b0":[],extinct:13,amino:9,better:[2,8],"0x202a170":[],coupl:9,gsgrid:8,controlokbutton:8,invers:[5,9,3,2],mark:8,reldict:[],u11:[9,11],u13:[9,11],u12:[9,11],valueerror:9,curvatur:2,"0x203b5b0":[],"2th":7,irrevel:9,bmp:9,"0x1e503b0":[],gsasiispc:[1,9,8,11,4],those:[5,9,2,11,8],"0xca8bc30":[],"case":[5,9,10,11,8],getprefori:13,npix:8,ondeletephas:6,cast:[9,8],invok:8,exist:[5,6,13,8],"0xca555f0":[],"0x6c91e30":[],anytim:8,stdout:13,metric:[11,9,13],"100th":9,strain:[11,10],good:[11,2],setfont:9,plotrama:3,makeback:13,ascii:[5,8],genhklf:9,peaksuniqu:2,"0x20d5230":[],develop:[4,9],"0x18a61070":[],author:9,instrnam:11,check:[1,9,8,5,4],scrolledwindow:10,html:[4,8],shpocalderv:13,getrestpolefigderv:2,"0x6c91c30":[],eventu:9,"0x1e15670":[],getcwgamderiv:2,sethistogramdata:13,cifinput:8,viewdir:11,"0x17d493f0":[],someon:3,controldict:13,getsamplesiggam:13,defn:[],"0xca8ab30":[],isotop:[9,11],appropri:[6,2,11,8],onleav:8,maxaccept:2,fpcalc:9,fmmm:[],model:[5,13,2],rhomax:2,refdict:13,convient:9,getrestraint:13,lastiparmfil:6,execut:[9,2],addhelp:8,tip:10,"0xbdfd9f0":[],bitmap:9,"0x180522b0":[],gangl:9,outlin:11,tobi:[1,9],goniomet:[9,11],miscellan:8,except:[1,9,13],littl:[9,12],instrument:[6,3,10,11,8],"0x21e7d70":[],exercis:9,angarrai:13,tetragon:[9,11],"0xca96570":[],var_2:[],var_1:[],real:9,psi:[2,9,7],sortm20:12,around:[0,2],read:[4,11,8,9,13,6],temperatur:[11,2],grid:[2,8],mol:11,"0x1e504b0":[],onselectvers:8,oldnam:3,"0xb931cb0":[],"0x27b6670":[],saniti:8,getedfdata:8,inten:7,sfloat:8,integ:[10,9,7,8],server:9,either:[7,5,6,2,8,9,11],"0x28047f0":[],spacegroup:9,nice:9,onfilesav:6,"0x209e9f0":9,parentfram:8,"0xca955f0":[],sec2hm:9,anomal:9,"0xca95330":[],"0x17d494b0":[],newplot:3,showvalid:8,invpolfc:9,fitstrsta:0,imageonli:8,test_gsasiispc:1,tls2uij:2,confirm:8,"0x7bff170":[],oldxi:11,definit:[5,13,11,8],lastdatafil:6,showstringvalid:8,"0x5ff43b0":[],getfftabl:9,"0xc60a730":[],cylindr:[9,13],refer:[4,6,13,8],ifb:9,power:7,each:[7,5,6,2,8,9,10,11,13],idup:9,"0xca8dab0":[],gsasiimain:6,cauchi:[11,2],found:[4,11,2,9,13,6],"0x5e96cf0":[],"throw":[1,9,13],"0x17d1a930":[],"0xb96c7b0":[],central:13,fcalc:[],degre:[0,5,9,2,11],neighbor:13,atomptr:11,mean:[7,8],backup:13,"0x17e36430":[],readcif:8,routin:[1,3,4,5,6,2,8,9,10,11,13],"0x2804930":[],effici:5,"_init_import":6,getcwsigderiv:2,harm:5,"0x21e7db0":[],updateinstrumentgrid:10,"0x17d18170":[],getformfactorcoeff:9,drawatom:2,onimagesum:6,spglist:[],updatepeakgrid:10,log:[9,3,2],opengl:[4,9,3],getversionnumb:9,madden:1,overwrit:8,start:[1,3,6,2,8,9],interfac:9,getblvalu:9,getoprptrnam:9,"0x7a3fe70":[],svn:9,"0xc92abf0":[],tupl:[5,9,2,13,8],bundl:4,"0x2728070":[],amongst:2,diffus:11,svngetrev:9,srm660a:9,"0x1e74970":[],gl_blend:9,notat:8,getshcoeff:2,"0x195f16b0":[],atmdata:9,"default":[3,6,2,8,9,10,11,13],fixedlist:[5,13],getellips:0,ipvt:2,imagecompress:0,expect:[1,6,3,8],a2valu:12,maxev:2,creat:[1,3,4,5,6,2,8,9,10,11],updateconstraint:10,uij:[9,13],cellblock:9,"0xca954b0":[],decreas:[9,11],adsc:8,file:[1,4,6,8,9,11,13],"0x17d187b0":[],proport:3,extensionvalid:8,fill:[9,13],denot:2,incorrectli:8,createtextur:9,loadtre:8,yob:11,orient:[11,9,3,13],field:[9,8],valid:8,lorchweight:7,projfileopen:8,getksl:9,edgemin:0,getgesumdata:8,kingslei:0,sequenc:[2,8],symbol:[9,11],getvers:8,"0x1e740b0":[],prodqq:2,peak:[7,6,2,8,10,12,11],xpix:0,reduc:[1,11,5,4],getatominfo:9,directori:[1,9,11,8],mask:[0,3,10],mass:11,"0xb931d30":[],potenti:[6,2,8],"0xc60a6b0":[],swapmonoa:12,u6touij:9,represent:9,all:[0,1,3,5,6,2,8,9,10,11,13],dist:0,onkei:3,"0x61447b0":[],forbidden:9,dollas:11,rowlabel:8,"0xca8aab0":[],gmat2ab:9,getdsp:0,reson:9,follow:[11,8],acosd:[],children:11,"0x5d22c30":[],refinepeak:12,immm:[],"0xc60a8b0":[],atommass:11,ifnon:10,setcent:9,distsum:0,program:[1,6,12],present:[1,6,8,9,5],"0x17e347f0":[],"0x20d5170":[],pointinpolygon:0,trim:8,monocellreduc:12,postion:11,"0x5f7b730":[],setforeground:9,far:9,invcel:9,util:[4,9],sumdialog:6,updatemask:10,callscrolledmultieditor:8,curve_fit:2,map2dict:5,strang:8,method:[2,8],ishistograminanyphas:10,exitmain:6,"0xca964b0":[],list:[0,4,2,6,7,8,9,10,5,11,13],signific:2,laue:[9,11],adjust:2,scanccd:[1,4],cosin:8,small:8,"0xc6397b0":[],anal:0,gsasiisolv:[],dimens:[13,2],"0x1d7a430":[],crystallographi:1,"0x1e15730":[],modal:8,zero:[5,13,2,8,9,12,11],pressur:11,design:13,pass:[3,8],"0xca961b0":[],lammax:[11,2],plottrimag:3,what:[6,8],diam:7,dict1:8,sub:11,"0x5b453f0":[],sum:[2,6,7,11,8],rval:11,getg2imag:8,brief:2,getcsuinel:9,delet:[4,6,3,10,9],"0xca952f0":[],q2av:2,"0xca8acb0":[],menubar:6,"public":9,retdistangl:13,"0x1d7a1f0":[],enumselector:8,full:[13,2],christian:9,variat:12,u2uij:9,symmetr:2,getrigidbodi:13,mulp:9,modifi:[9,13],mult:[9,11,8],selectedatom:11,onpatterntreeitemactiv:6,search:[0,9,2,11],fillmainmenu:6,onnotebookkei:3,fpath:9,prior:8,autoran:2,within:[9,11],pick:[3,10],action:[6,10],getrestchir:2,magnitud:2,xsum:0,diamet:[11,7],via:[1,9,8],"0x1960a1b0":[],primit:8,onfileexit:6,gettextur:9,inappropri:8,g2plotogl:3,xtaldict:8,g2oprlist:9,"0xca8bcf0":[],elementgui:[],select:[4,7,6,2,8,9,10,11,13],distinct:9,etc:[0,1,3,7,13,2,8,9],containt:[5,2],two:[5,6,2,8,9,11,13],a51:9,taken:8,mustraincoeff:9,minor:0,more:[5,6,2,8,10,11],flat:[2,7],desir:2,line:[1,9,3,8],textcrtl:8,flag:[9,2,11],stick:[9,3,11],"0x203b6b0":[],particular:[6,11],penecorr:0,cach:9,sgpolar:9,none:[0,1,2,3,5,6,7,8,9,10,11,13],dep:0,nparrai:2,sgpolax:[9,11],mt2text:9,remain:13,archiv:8,scherrer:11,"0x17cc09f0":[],"0x17e34730":[],def:[],deg:[2,7],prompt:[10,8],distarrai:13,scan:[1,9,8,4],"0x1d7abf0":[],gethistogramnam:[6,13],share:5,accept:[9,2,8],sphere:11,minimum:[2,9,7,8],onleave1:[],"0x1e5cef0":[],setversionnumb:9,refinepeaksz:12,"0xca8caf0":[],hapvari:13,newlin:8,divid:5,rather:[1,3,8,5],anoth:[5,10,8],camerapo:11,getmass:2,pwdrname:6,makeidealr:0,reject:0,acta:9,voltag:11,getgamfw:7,getmar345data:8,resourc:1,referenc:12,algebra:[5,8],myhelp:8,variant:11,capitalizt:9,reflect:[4,3,6,8,9,10,11,13],plane:7,cromer:9,"0x17d1a070":[],setrigidbodymodel:13,loadparmdict:8,varianc:2,associ:[6,3,10,11,8],ysum:0,hfx:13,"short":[9,11],"0xc4ca8b0":[],caus:[5,9,2,13,8],"0x18a61a30":[],spheric:[11,9,13],txyz:2,help:8,"0x1e0b970":[],plotexposedimag:3,fft:7,held:5,thermal:[11,3],ncmax:12,same:[1,5,6,2,8,9,10,11],"0xca96370":[],paramet:[0,1,2,3,4,5,6,7,8,9,10,11,13],softlink:1,latt:9,mcsasearch:2,glide:[],combobox:8,getpatterntreeitemid:8,ycalc:11,diffractomet:11,might:8,alter:2,"0x5e96db0":[],muiso:9,scipi:[4,2],"return":[1,7,6,2,8,9,5,11,13],uij2ueqv:9,rhombohedr:[9,11],rwp:11,framework:11,gsasiipwdgui:[4,6,10],filedialog:8,onimageread:6,"0xca6e5f0":[],"0xc63d730":[],document:[4,11,8],ifq:2,"0xca6e7f0":[],readexpphas:8,getxyzdist:2,ifd:8,getffc5:9,radian:2,compris:5,importpowderreaderlist:6,fulli:7,unicod:8,truncat:8,"0x1d7a570":[],"0x17d4a9b0":[],weight:[11,2,8],realli:9,orbnam:9,lab6:9,rigidbodydict:13,energi:[9,2],beyond:2,todo:11,event:[6,3,8],onaddphas:6,robert:[],calcramaenergi:2,invq:2,abl:[6,9],print:[5,9,2,13,8],iparm:7,getusedhistogramsandphas:13,evaluateexpress:8,add3d:3,typehint:8,"0x5e96ef0":[],calc_rdsq:9,"0xca8db30":[],polyhedra:3,guess:[6,2],antialias:9,mmm:[9,11],quick:8,setupexport:8,base:[9,10,8],ask:[6,8],closefil:8,applyrbmodelderv:13,cov_x:2,launch:1,omit:11,"0x279ebf0":[],perhap:3,flip:11,assign:[5,13,11,8],magformfactor:9,itemtext:8,"0x17d4a0f0":[],"0x5e96e30":[],upper:[2,8],exchang:[],ncell:9,misc:[4,8],number:[7,5,6,2,8,9,11,13],extern:[4,5],bondlist:11,done:[5,9,8],construct:2,checkellips:0,blank:[11,8],getallphasedata:13,python2:11,miss:5,betwe:[],"0xca554f0":[],differ:[11,2,8],pm3m:[],script:[1,4],criticalellips:9,interact:[10,8],lxsect:9,least:[1,7,13,2,9,11],pwdrdata:6,gpx:[11,6,13],getphasenam:13,scheme:9,store:[5,9,10,11,8],option:[1,3,5,6,2,8,9],relationship:[5,13,11],parm:[6,2,8],crystallograph:[9,2],"0x5feff30":[],selector:8,hapdict:13,hkld:9,part:[4,9,8,5],pname:13,"0x17d4a130":[],onrenamedata:6,normq:2,importphas:[6,8],std:2,brugger:9,kind:[3,8],datdata:13,tof:[6,3],remov:[0,5,13,12,2],shcoeff:2,"0x61448f0":[],horizont:8,tunit:2,"0x1e74170":[],dopeakfit:7,vcov:2,"0x27280b0":[],comput:[1,4,5,13,2,8,9,11],"0xca6e730":[],gsasiigrid:[4,6,10,13,8],"0x2804830":[],histnam:8,packag:[4,3],gramschmidtortho:5,complet:[5,9],fast_sa:2,"0x195f1670":[],iflist:9,bht:6,powderfxyesav:8,equival:[11,5,9,2,13],self:[0,1,3,4,6,8,9],getnewcellparm:[13,11],also:[3,5,6,2,8,9,11,13],without:[9,8],build:[5,9],jacobian:[5,13,2],updatepdfgrid:10,parms2:2,compat:[6,8],distribut:[4,9,3],updatepwhkplot:8,powderdata:8,grassman:2,previou:[10,9,2],reach:2,mixtur:9,font_siz:9,amat:[9,2],plai:11,updatestressstrain:10,ccd:[1,4],maco:1,alpha:[9,11,8],seqdata:3,"0x20d50f0":[],charg:11,g23:9,"0xca8bb70":[],readerobject:6,clear:[5,6,3],seqrefin:13,setphasedata:13,"0xca6e670":[],hessrefin:13,clean:9,azimuth:[0,11,3,7],seqresult:13,"0x234a670":[],sgerror:9,humid:11,"0x17d180f0":[],multiintegerdialog:10,downdat:8,"0x17d4a1b0":[],azmuth:9,"0x234a7b0":[],distanc:[2,13,7,11,8],"0x1f570f0":[],"0x18a610b0":[],swapcolumn:[],onfileopen:6,find:[1,9,2,5],npsind:7,rotorthoa:12,penalti:[1,2],cell:[4,13,2,8,9,10,12,11],copyright:13,pmmm:[],pycifrw:8,solut:2,factor:[3,6,7,8,9,11,13],"0x17d18030":[],getrestpolefig:2,"0x1f3df30":[],unus:6,express:[5,8],disagltor:13,make2thetaazimuthmap:0,hid:11,"0x5d22b70":[],monoclin:[9,11],initvar:5,centcheck:9,getkcl:9,"0x5d22d70":[],"0xca553b0":[],oneonli:10,coord:9,"0x17d16fb0":[],statist:8,a2invcel:9,"0x61449b0":[],iflmn:9,arr:[],set:[1,5,6,2,8,9,10,11],"0xc6346f0":[],tree:[1,3,4,6,8,10,11],testvalid:8,see:[1,5,13,2,8,9,11],sec:9,arg:[11,2,8],uiso:11,close:[6,8],sel:[],contour:3,icalc:11,baldwin:1,someth:[0,9],onimportsfact:6,"0xca956f0":[],"0x5b452b0":[],smallest:2,asciivalid:8,getdetxyfromthazm:0,gener:[1,3,5,13,2,9,10,11],getrigidbodymodel:13,altern:[11,8],"0x1e15530":[],str:[5,6,7,8,9,11,13],showhydrogen:11,"0x20d5970":[],"0x1e740f0":[],"31m":[9,11],fillgmat:9,extractfilefromzip:8,both:[5,9,8],last:[1,6,2,8,9,11,13],delimit:9,confirmread:8,arraylist:5,nonstandard_sglist:[],"0x1e74070":[],gethistogramdata:13,"0x202a4b0":[],sginv:[9,11],pdf:[10,6,3,7,8],"0x5f7b7f0":[],whole:9,pdb:8,load:[11,9,13,8],getcsxinel:9,symopdialog:8,simpli:5,point:[11,9,2,13],schedul:2,"0x17d181b0":[],"0x1e155f0":[],blockselector:8,residu:2,header:8,getimgdata:8,param:7,linux:[3,8],svnupdatedir:9,along:[13,11],ran2axi:12,elemposit:9,contraint:5,cellabsorpt:9,updatephasedata:10,devic:9,empti:[5,6,9,8],waasmaier:9,seqsig:3,"0x28049f0":[],"0xca8dc30":[],flight:11,imag:[0,4,3,6,8,9,10],"0x279ecb0":[],coordin:[3,11,2,8,9,13],gam:[9,7,11],"0x5b454f0":[],func:2,look:[6,9],solid:9,"0xc6396b0":[],"while":[5,8],powderfil:8,abov:[5,8],"0x202a3b0":[],"0xca8baf0":[],gettth:0,getpowderiparm:6,loop:[13,2],vol:7,von:1,echelon:[],itself:2,uiso2uij:9,limit:[7,6,2,8,10,11],"0x1e748b0":[],previousinvalid:8,plotintegr:3,irrelev:9,minim:[6,2],shorten:8,argonn:[],shorter:8,applyxyzshift:[13,11],hester:8,histlist:11,"0x6c91df0":[],singlefloatdialog:8,elementt:[4,9],conflict:5,"0x28048b0":[],setvaryflag:5,optim:[2,9,7],restraint:[4,13,10,11],"0x1e74230":[],covari:[4,13,2,11,8],user:[6,9,8],"0xc60a870":[],viewparmdialog:6,typic:8,getusedhistogramsandphasesfromtre:[6,11],lower:[2,8],phasenam:[13,3,10,8],lib:11,onpatterntreeitemexpand:6,entri:[5,13,2,8,9,10,11],restraintdict:13,gsa:[1,4,5,6,8,9,10,11,13],"0x209eaf0":9,textctrl:8,propos:2,explan:11,a_5:[],a_4:[],a_3:[],a_2:[],a_1:[],a_0:[],getfilelist:6,ruland:7,gsasiiconstrgui:[4,10],shape:7,updatemcsaxyz:2,onimportpowd:6,covmatrix:[5,11,2,8],uij2betaij:9,gl_alpha_test:9,initcontrol:8,"0xca55570":[],getintensitycorr:13,hklfdata:6,subsequ:8,app:[1,6,8],float32:[],bin:9,sum_:[],march:11,format:[11,6,2,9,8],"0x2728130":[],getatomcoordsbyid:2,sgtext:9,ellist:[9,7],macromolecular:8,bit:12,getabsorb:13,onhelpbyid:8,lost:8,randomq:2,getimagedata:8,whitespac:8,zclip:11,collect:11,api:4,valenc:9,strsta:0,encount:2,constr1:5,constr2:5,some:[0,5,13,2,8,9,10],back:9,"0x234a8b0":[],wxpython:[4,8],sampl:[0,7,6,2,9,10,11],multipleselect:8,ijk:9,cell2gmat:9,gltext:[4,9],scale:[0,2,5,6,7,9,11],t_n:[],calcpdf:7,though:2,per:11,larg:[13,8],"0x6c91c70":[],"0xca8bab0":[],plotimag:3,"0x203b5f0":[],run:[1,6,8,11,5],perpendicular:11,samang:9,step:[11,7],output:[5,9,2,13,8],from:[0,1,3,4,5,6,2,8,9,10,11,12,13],getpowderpeak:8,"0xca8ab70":[],constraint:[4,5,6,8,10,11,13],sizeh:11,materi:9,lieberman:9,"0x5ea98f0":[],"0xb931e70":[],"0x20d50b0":[],"0x17cc0970":[],updatenotebook:8,"2g_":[],block:[9,8],reduct:1,cutoff:[9,2],"__future__":8,rho:2,"0x5d501b0":[],getdetectorxi:0,getffvalu:9,"0xca552f0":[],keystrok:[3,8],textureindex:9,previparm:6,setnewphas:8,groupconstraint:5,badvalu:7,npcosd:7,getdmax:12,apprevi:8,"long":9,custom:8,"0xca8cbb0":[],perp:0,includ:[1,4,11,2,8,9,12],"0x17d493b0":[],"0x5d50170":[],"0x1e15630":[],properli:8,pwr:12,transfertowindow:8,"0xca95570":[],"0xc92aa30":[],sthl2:7,translat:[9,2],delta:0,newatomdict:[13,11,8],info:[11,9,3,13,8],dfdvdict:13,"0x1e502f0":[],idlist:[11,2],consist:[11,5,9,13,8],pgbar:2,"0x17d1ac30":[],disaglctl:13,getatomitemsbyid:2,"0xca8bc70":[],highlight:[11,8],sxc:11,"0xca8cbf0":[],projfilesav:8,"0xca95370":[],doesn:9,horizontallin:8,"0x1e504f0":[],jmin:2,g2phase:8,showcontrol:13,gsasiistrmain:[1,13,4],updateparamet:8,titl:[6,10,11,8],sequenti:[5,6,8],"0x9fabc70":[],invalid:[13,8],nam:5,bmat:2,addmpl:3,angstrom:11,gettexture_s:9,"0x2734cb0":[],asymmetr:11,getabsorbderv:13,draw:[4,9,2,11,8],groupedparm:[],gsasiiphsgui:[4,10],values2a:12,"0x27b66b0":[],f000x:11,gsasiitoolbar:3,"0x5e96cb0":[],eval:2,plotcanva:3,f000n:11,"0x27282b0":[],algorithm:[9,2],psing:2,textel:9,orbit:9,spcgroup:[11,9,13,8],iabsnt:9,"0x17e34830":[],dict2map:5,ypix:0,"0x1e5cf30":[],scroll:8,x_new:2,code:[0,9,12,8],edf:8,edg:9,queri:2,broaden:[11,3],"0x21e7df0":[],"0x5d500f0":[],ellips:[0,3],focu:[3,8],"0x17d4a2b0":[],"0x17d18230":[],showmod:8,elsewher:5,onimportgener:6,estim:2,"0x1d7aab0":[],opposit:9,"0x2376530":[],aris:8,"0x1e73fb0":[],g2plotmpl:3,"0xc92abb0":[],"0x209e970":9,wave:[0,13,12,7,8],calczdiscosb:0,volum:[9,8],showabc:11,tri:6,cctbx:9,button:[6,8],shtxcal:13,"0xc92aaf0":[],"try":[2,8],"0x5d22cf0":[],"3x3":[9,11],"0xca6e830":[],errstr:9,"0x9fabc30":[],phasedata:13,pleas:[9,8],"0xca964f0":[],getfprim:13,"0xca954f0":[],memorydc:9,maintain:10,"0x5d22bb0":[],possibl:[5,9,2,11,8],onpatterntreeselchang:[6,10],"0x17d187f0":[],acid:9,carlo:11,click:10,append:8,exportbaseclass:8,index:[4,13,2,8,10,12,11],fitstrain:0,"0xc639770":[],http:[4,5],access:[1,9,3,8],experiment:2,onpagechang:3,gsasiistruct:6,imaginari:9,feval:2,sgdata_t:[],a2gmat:9,"0x202a230":[],sint:8,"0x1d7a870":[],matplotlib:[4,3],bodi:[13,3,10,11],let:2,hkl:[9,12,2],sind:8,sine:8,sinc:8,gsasiiio:[4,6,8],refldata:2,"0x17e346f0":[],convers:9,getpatterntreedatanam:8,larger:11,ifcoup:9,addogl:3,sangl:9,getvcov:2,chang:[5,9,2,11,8],hexagon:[9,11],maker:0,"0x2734c70":[],pxy:0,calibr:[4,9,3],"0x61447f0":[],appli:[1,5,13,2,8,9,11],approxim:[9,2],parentid:8,scalex:0,submodul:[4,13,10],"boolean":9,dict2deriv:5,sgn:2,pxc:11,scalei:0,genhlau:9,formulaev:8,"0x17d1a1f0":[],invarraylist:5,zip:8,minval:8,shcoef:9,chi:[0,9,11],doubl:[],gsasiipwd:7,isotrop:[9,11],mydir:11,equivalenc:5,fitcircl:0,few:[],"0x17d18130":[],fep:2,save:[1,5,6,2,8,9,11],phasedict:11,wxwidget:9,pfx:[13,7],sort:[9,2],"0xbdfdb70":[],"0x234a7f0":[],getcellesd:13,fulldescr:11,gsasiidata:[4,9],trail:[2,8],fixeddict:5,calc_rdsq2:9,retriev:[9,2],"0x195f15f0":[],augment:2,"0x7b26ef0":[],extradoc:7,"0xca962f0":[],thin:8,meet:2,scatter:[4,9,7,11,8],control:[0,6,7,8,10,11,12,13],"0x279ec70":[],printrestraint:13,"0xc92ab70":[],process:[5,9,10,8],tax:3,taz:3,slit:11,chisq:11,htype:13,tab:[3,10,8],multiplechoicesdialog:8,xmin:2,tam:0,tan:[2,8],updateindexpeaksgrid:10,tai:3,revstr:9,notblank:8,surfac:[0,9,2],fm3m:[],dpdpola:7,"0x203b670":[],six:[13,8],"0x17cc0ab0":[],brian:[],sig:[13,7,11,8],getbackupnam:13,getpreforiderv:13,backcolor:11,sij:7,"0x20d5130":[],sin:[9,7,8],"0x195f17b0":[],frac:[],"0x209e9b0":9,overridden:8,singular:[5,2],gsasiimath:[4,2],prelbl:8,g2plot3d:3,depthfog:11,notebook:[1,3,10,8],inst:7,ranfunc:12,getdescr:11,fitr:0,getindependentvar:5,"0x17d18fb0":[],"0x17e34870":[],"0x9fabcf0":[],getpowderprofil:13,correspond:[1,5,13,7,8,9],mjk:5,lam2:11,allop:9,lam1:11,"0x279ea70":[],allow:[5,6,7,9,8],"0x1e15770":[],asc:9,xyzequiv:9,"0x1d7a1b0":[],newcelldict:[11,8],"0x1f57130":[],hx2rh:9,itemloc:2,"0x17e364b0":[],move:[9,10,8],gettofsigderiv:2,"0x5e96d70":[],"0xca8bcb0":[],fwhm:11,formatconstraint:[],outer:[13,2,11],treat:[6,8],"0xca8aaf0":[],"0x1e50370":[],"0x17d1a0b0":[],getdependentvar:5,uijtou6:9,friedel:9,penaltyfxn:13,texture_s:9,"0x5d50130":[],scextinct:13,greater:[9,2],handl:[10,8],overal:[11,8],rowechelon:[],norm_gen:7,dat:[1,9],"0xc634770":[],covvari:11,shtxcalderv:13,mustrainnam:9,bar:1,nkeep:5,distangl:[],nfb:9,nfa:9,"0x17e34770":[],"0x7b26fb0":[],halfcel:12,paramprefix:5,genhbravai:9,"0x9f9ccf0":[],gettofbeta:2,mode:[9,13,8],independentvar:5,lorentzian:11,getdistsig:2,"0x17cc0af0":[],multipleblockselector:8,product:2,pixlimit:9,sortarrai:2,setbackgroundparm:7,"0x1e5ceb0":[],"0x202a2f0":[],our:9,onpwdrsum:6,gsnotebook:8,getmagformfaccoeff:9,special:11,out:[5,13,8],variabl:[4,5,13,2,8,11],p4mmm:9,matrix:[0,13,2,8,9,11],onpatterntreeitemdelet:6,origatom:13,waal:11,stub:9,polfcal:9,suitabl:[0,9],rel:[1,2,5],max:8,leverag:11,ref:[13,7,11],math:[4,9,13],jephcoat:[11,7],insid:9,"0x17d4a2f0":[],font:9,dictionari:[7,5,6,2,8,9,10,11,13],latest:9,releas:9,singlestringdialog:8,dmax:12,valesd:2,byteord:8,val:[11,8],"0x5b45370":[],could:[6,9],put:[9,13,8],snt:11,keep:8,length:[9,2,11,8],"0xc4ca7f0":[],outsid:9,geometri:7,draw_text:9,choicelist:8,usebestvisu:6,"0x20d51f0":[],softwar:[9,8],"0x1e0b930":[],loadhistogramid:11,"0xc629730":[],hex:9,cmmm:[],constrdict:5,list1:8,scene:9,q2mat:2,date:9,"0xca96330":[],imagelocalmax:0,owner:9,onreadpowderpeak:6,unknown:9,licens:9,system:[9,8],messag:[6,9,13],attach:8,"0xb931c70":[],arrayin:5,disagldata:13,man:10,"final":[5,2],"0xca55330":[],storeequival:5,shell:8,"0x2734bf0":[],"0xc4ca870":[],cyc:2,thresh:7,rst:[],copybutton:8,ierr:9,exactli:11,stringopsprod:9,"0xca6e7b0":[],plotnotebook:1,structur:[1,3,4,6,2,8,11,13],charact:[9,11,8],"0x17d49370":[],bind:[9,11,8],gsasiilattic:[1,9,4],bet:7,exp:[2,8],concatin:13,plotpowderlin:3,marfram:8,gsasiiobj:[4,11],getpawleyconstr:13,ballscal:11,have:[1,9,8,11,5],dpsda:9,need:[0,4,3,6,7,8,9,10,11,12,13],element:[4,11,7,8,9,10],hessian:[13,2,11],getfcjvoigt:7,"0x5bda570":9,updatelimitsgrid:10,gsasii:[1,4,6,7,8,9,10,13],"0x5d22cb0":[],lener:9,discret:2,gettofgammaderiv:2,longformatnam:8,detector:[1,3,7,8],singl:[4,3,5,6,8,11,13],textur:[11,9,13],unless:[11,8],"0xca8db70":[],maxcyc:2,vdwradii:11,eltabl:9,"0x18a61130":[],pyc:11,pyd:9,"class":[1,3,4,7,6,2,8,9,10,11],enthought:4,imagecalibr:[0,4,9],placement:11,url:8,retval:2,request:[3,8],indx:[12,2],"0x5bda5b0":9,tornam:3,powderdict:8,determin:[11,5,9,13,8],printal:5,constrain:5,rotdmat:9,nmin:7,pohkl:11,text_el:9,"0x1e74030":[],text:[4,6,9,8],filetyp:6,reinit:9,loadid:11,bring:[10,8],"0x17e347b0":[],"0xca8cab0":[],"0x6144870":[],varnam:11,redirect:6,locat:[1,4,11,2,8,9],rbdata:[3,2],"0x2821430":[],setdatamenubar:8,should:[1,5,6,2,8,9,11,13],dict2valu:[13,7],"0x5e96eb0":[],fillarrai:[],gsasiistrmath:[4,13,11],anneal:[11,2],"0x17d4a070":[],hope:[9,8],fithklz:12,usefit:2,count:[9,13],sgop:[9,11],pwdr:[13,10,11,8],pull:11,convert:[5,9,2,8],"0xb931df0":[],showbann:13,askfil:8,"0x279eb30":[],beam:[0,11],indparmlist:5,"0x18a610f0":[],increas:[9,2,11,8],"0x209eb70":9,"0xca96170":[],displac:11,"0x195f1830":[],offsetlist:9,stuff:2,integr:[0,3,8],"0x1f57030":[],constdict:13,shl:7,dpi:[1,3],"0x17d4a0b0":[],constlist:13,penaltyderiv:13,gethstrainshift:13,importmenuid:6,"0xc60a7f0":[],accord:[9,11],"3mr":[9,11],"0xc605730":[],"0x195f1630":[],dopawlei:11,dlg:[2,13,12,7,8],correctli:[7,8],sgdata:[7,11,2,8,9,13],nuclear:11,numer:[1,2],state:[9,2],setpeakparm:2,theta:[0,9,3,7,11],speed:9,xydata:7,getwav:2,pawleylookup:13,xrang:2,kei:[7,5,13,2,8,9,11],exampl:[9,2,8],updatereflectiongrid:10,zstep:11,entir:[13,8],onimportphas:6,"0x1e741b0":[],"2pi":2,kev:9,deletedata:6,"0xca8bb30":[],rbtype:[3,2],nfc:9,getdens:2,goal:2,canopi:4,fitdetector:0,equal:5,len:[],chosen:[3,8],instanc:3,"0x17d1aab0":[],equat:[5,11],"0x5bda4f0":9,onfileclos:6,rama:3,"0x27280f0":[],comment:8,n_ob:[],"0x17d4a1f0":[],oriq:2,svnupdateprocess:9,indici:8,solv:[],reciproc:[11,9,13],"0x5ea9930":[],respect:[13,2,8],clearsigint:6,"0x202a270":[],torsion:[3,2],quit:6,imageintegr:0,"0x28048f0":[],cent:9,childrenless:8,compon:8,fprime:9,"0x17d18070":[],calccontrol:13,mult2:[5,11],foreground:9,immedi:2,"0xca953b0":[],"0x195f17f0":[],pid:[11,2],kirfel:9,crsang:9,"0x234a6b0":[],opnum:9,togeth:6,sigdict:[5,13,8],"0x18a611b0":[],"0x1e747f0":[],getepsvoigt:7,input:[1,5,6,2,8,10,13],"0x5d22d30":[],gethklpeak:7,"0x234a870":[],onpatterntreekeydown:6,getdepsvoigt:7,pixel:9,defin:[0,5,6,2,8,9,10,11,13],sgtextlist:9,"0xca8dbb0":[],observ:[1,11],"0x6c91bf0":[],validatedtxtctrl:8,"0x27b66f0":[],mz2:5,almost:8,"0x6c91d30":[],"0x5ff4370":[],site:[9,11,8],adjhklmax:2,refl:13,revis:[9,8],"0xca956b0":[],"0x18a61170":[],ramachandrandist:9,urlorfil:8,getdatsig:2,histonam:10,cross:9,sqrt:[2,7,8],printdistangl:13,pickid:8,largest:[9,2],"0x1f3df70":[],phi:[0,2,9,7,11],ball:[11,3],slave:5,context:9,cubic:[9,11],absorb:7,effect:5,ion:9,nob:[11,2],transferfromwindow:8,canva:3,suchomel:1,iob:11,expand:[11,6,9,8],uncertainti:[5,13,2,11,8],absorbderv:7,center:[11,9,13],"0x234a730":[],colour:9,well:[5,6,9,8],gettofgamma:2,likewis:5,"0xc6346b0":[],command:8,"0x5f7b7b0":[],sglaue:[9,2,13],position:9,"0x5feffb0":[],momtyp:7,usual:[0,13,2,8],test1:[9,8],mfa:9,test3:9,mfc:9,test5:9,test4:9,test7:9,test6:9,test9:9,test8:9,glut:9,nval:9,obtain:[4,6,2,9,8],readpowderiparm:6,a2cel:9,getconstraint:13,hess:[13,2],"0xca8bbf0":[],adv:0,web:8,varynam:2,adp:11,smith:0,drawback:9,updaterbuij:2,add:[6,3,9,8],getfwhm:7,"0x28049b0":[],onhelpabout:8,densiti:2,bool:[11,2,8,9,13,6],"0x1960a230":[],"0x1e15570":[],match:[1,6,2,11,8],plotsngl:3,samsym:[9,2],"12346e7":2,press:[3,8],gnu:9,height:[2,11,7],makequat:2,m_n:[],loss:8,sizev:8,updatecontrol:8,like:[6,2,9],sizer:8,trigon:[9,11],ranstart:2,displacei:11,"0x202a1f0":[],necessari:9,gsasiiimggui:[4,10],lose:9,"0x17d181f0":[],resiz:6,imagefil:8,uijequiv:9,displacex:11,drop:6,"0x195f1730":[],polar:[9,7,11],"0x6c91cb0":[],settext:9,suppli:[1,6,8,5],"0xca952b0":[],"export":8,updateddata:10,proper:9,setdefaultsampl:10,librari:[4,9,11],getwidthscw:7,"0x209ea70":9,sampleparm:3,"0x195f1770":[],full_output:2,lead:8,assum:[1,6,3,9],instfil:6,"0x61448b0":[],getpeakprofil:7,"0xc6056f0":[],overlai:9,fixval:9,g2plotnotebook:3,snc:11,fouriermap:2,"0x1e50530":[],journal:1,"0x17cc09b0":[],zsum:0,cryst:[9,7],"0xc63d6b0":[],"0xc60a830":[],offset:[9,13],dct:8,lorenzian:11,panel:8,continu:[2,8],setusedhistogramsandphas:13,about:[0,9,2,8],column:[9,8],freedom:5,"0x20d5930":[],odf:9,"0x209eab0":9,learn_rat:2,you:[9,2],fals:[3,7,5,6,2,8,9,10,11,13],atomnum:11,disabl:8,rotaterbxyz:2,own:11,calcfij:0,"0x17d1a230":[],"0xca965f0":[],getasfmean:7,automat:[6,8],dataset:6,diagon:[9,11],"0x1e156f0":[],"0x180522f0":[],waterfal:3,importsfactreaderlist:6,merg:[1,9],"0x1eb4a70":[],van:11,sgsy:[9,11],getnxupqsym:9,m3m:[9,11],texturedata:13,"0x17cc0b70":[],onhelp:3,"3m1":[9,11],appl:[7,8],inner:[11,9,2,13],"0x17cc0b30":[],"var":[5,11],newimag:3,individu:[11,8],"function":[4,3,7,13,2,8,9,10,11],getdistderv:2,"0x2728170":[],subdirectori:9,unexpect:5,eac:8,processconstraint:13,"0x27281f0":[],histogram:[11,6,10,13,8],scatfac:9,bltabl:9,highest:[9,11],loc:8,owner_cnt:9,"0x5b455b0":[],made:13,"0x17e36630":[],whether:2,displai:[3,11,8,9,10,6],"0x1eb4ab0":[],record:[4,11],below:[11,9,2,13,8],indexpeak:12,otherwis:[9,11,8],problem:[5,2,8],"0x6144830":[],whichsvn:9,instead:[9,8],getfcjvoigt3:7,evalu:[2,8],"int":[0,7,6,2,8,9,10,11,13],descript:[9,2,11],dure:9,filenam:[6,8],pix:0,"0x18a618b0":[],implement:[5,11,2,8],calc_v:9,ceo2:9,ind:2,"0xca6e770":[],fjac:2,probabl:[9,11,8],getatomxyz:2,plottors:3,sglatt:[9,11],collabel:8,detail:[5,9,11],calcincid:7,importpowderdata:[6,8],readmarccdfram:[4,8],other:[5,6,2,8,9,10,11],lookup:9,ellipses:7,varieti:8,most:11,hacker:9,repeat:[9,8],my1:5,refldict:2,ndarrai:2,getresttors:2,sytsym:9,quaternion:[11,2],patch:9,"0x5ea98b0":[],inhalesdelpi:9,constant:[5,9,2,11],scrolledmultieditor:8,collist:[],scientif:8,"0x235d270":[],overallparm:8,importbaseclass:8,"0xb931e30":[],myhtmlpanel:8,esd:[5,2,8],onchar:8,rbid:13},objtypes:{"0":"py:module","1":"py:attribute","2":"py:function","3":"py:method","4":"py:class","5":"py:data"},titles:["<em>GSASIIimage: Image calc module</em>","<em>GSAS-II Scripts</em>","<em>GSASIImath: computation module</em>","<em>GSASIIplot: plotting routines</em>","GSAS-II Developer’s Documentation","<em>GSASIImapvars: Parameter constraints</em>","<em>GSAS-II Main Module</em>","<em>GSASII powder calculation module</em>","<em>GSAS-II GUI Routines</em>","<em>GSAS-II Utility Modules</em>","<em>GSAS-II GUI Submodules</em>","<em>GSASIIobj: Data objects</em>","<em>GSASIIindex: Cell Indexing Module</em>","<em>GSAS-II Structure Submodules</em>"],objnames:{"0":["py","module","Python module"],"1":["py","attribute","Python attribute"],"2":["py","function","Python function"],"3":["py","method","Python method"],"4":["py","class","Python class"],"5":["py","data","Python data"]},filenames:["GSASIIimage","GSASIIscripts","GSASIImath","GSASIIplot","index","GSASIImapvars","GSASII","GSASIIpwd","GSASIIGUIr","GSASIIutil","GSASIIGUI","GSASIIobj","GSASIIindex","GSASIIstruc"]})1 Search.setIndex({objects:{"":{GSASIIgrid:[8,0,1,""],G2export_shelx:[2,0,1,""],GSASIImapvars:[5,0,1,""],GSASIIobj:[13,0,1,""],G2sfact:[11,0,1,""],scanCCD:[1,0,1,""],GSASIIpy3:[8,0,1,""],GSASIIstrMath:[15,0,1,""],GSASIIindex:[14,0,1,""],GSASIIstrIO:[15,0,1,""],ReadMarCCDFrame:[8,0,1,""],G2phase_CIF:[11,0,1,""],gltext:[9,0,1,""],GSASIIphsGUI:[12,0,1,""],GSASIIrestrGUI:[12,0,1,""],GSASII:[6,0,1,""],GSASIIpath:[9,0,1,""],GSASIIpwd:[7,0,1,""],G2export_map:[2,0,1,""],GSASIIElemGUI:[12,0,1,""],makeMacApp:[1,0,1,""],GSASIIconstrGUI:[12,0,1,""],GSASIIimage:[0,0,1,""],GSASIIpwdGUI:[12,0,1,""],GSASIIplot:[3,0,1,""],G2export_image:[2,0,1,""],G2pwd_GPX:[11,0,1,""],G2export_examples:[2,0,1,""],G2pwd_xye:[11,0,1,""],GSASIImath:[10,0,1,""],GSASIIdata:[9,0,1,""],GSASIIddataGUI:[12,0,1,""],G2pwd_CIF:[11,0,1,""],GSASIIspc:[9,0,1,""],GSASIIimgGUI:[12,0,1,""],FormFactors:[9,0,1,""],G2phase:[11,0,1,""],GSASIItestplot:[1,0,1,""],G2export_CIF:[2,0,1,""],GSASIIElem:[9,0,1,""],GSASIIIO:[8,0,1,""],G2phase_GPX:[11,0,1,""],GSASIIstrMain:[15,0,1,""],G2export_PDB:[2,0,1,""],ElementTable:[9,0,1,""],G2pwd_fxye:[11,0,1,""],G2sfact_CIF:[11,0,1,""],unit_tests:[1,0,1,""],G2export_csv:[2,0,1,""],testDeriv:[1,0,1,""],GSASIIlattice:[9,0,1,""],ImageCalibrants:[9,0,1,""]},"G2export_CIF.EditCIFtemplate":{Post:[2,3,1,""]},GSASIIgrid:{EnumSelector:[8,4,1,""],downdate:[8,4,1,""],SingleStringDialog:[8,4,1,""],AddHelp:[8,4,1,""],UpdatePWHKPlot:[8,2,1,""],MyHelp:[8,4,1,""],MyHtmlPanel:[8,4,1,""],GetPatternTreeItemId:[8,2,1,""],GridFractionEditor:[8,4,1,""],GetPatternTreeDataNames:[8,2,1,""],ItemSelector:[8,2,1,""],HorizontalLine:[8,2,1,""],UpdateSeqResults:[8,2,1,""],GSNoteBook:[8,4,1,""],GSGrid:[8,4,1,""],UpdateNotebook:[8,2,1,""],UpdateHKLControls:[8,2,1,""],MovePatternTreeToGrid:[8,2,1,""],ShowHelp:[8,2,1,""],ScrolledMultiEditor:[8,4,1,""],PickTwoDialog:[8,4,1,""],DisAglDialog:[8,4,1,""],DataFrame:[8,4,1,""],CallScrolledMultiEditor:[8,2,1,""],G2HtmlWindow:[8,4,1,""],SingleFloatDialog:[8,4,1,""],ValidatedTxtCtrl:[8,4,1,""],SymOpDialog:[8,4,1,""],G2MultiChoiceDialog:[8,4,1,""],ASCIIValidator:[8,4,1,""],SetDataMenuBar:[8,2,1,""],NumberValidator:[8,4,1,""],UpdateControls:[8,2,1,""],Table:[8,4,1,""]},"GSASIIplot.G2PlotNoteBook":{Rename:[3,3,1,""],add3D:[3,3,1,""],OnPageChanged:[3,3,1,""],clear:[3,3,1,""],addOgl:[3,3,1,""],addMpl:[3,3,1,""],OnNotebookKey:[3,3,1,""],Delete:[3,3,1,""]},"G2export_csv.ExportPowderReflCSV":{Exporter:[2,3,1,""]},GSASIItestplot:{Plot:[1,4,1,""],PlotNotebook:[1,4,1,""]},GSASIIrestrGUI:{UpdateRestraints:[12,2,1,""]},"G2export_CIF.ExportCIF":{Exporter:[2,3,1,""]},G2phase_CIF:{CIFPhaseReader:[11,4,1,""]},G2export_map:{ExportMapCCP4:[2,4,1,""],ExportMapASCII:[2,4,1,""]},"G2export_examples.ExportPowderText":{Exporter:[2,3,1,""]},"G2export_examples.ExportPowderReflText":{Exporter:[2,3,1,""]},G2export_image:{ExportImagePNG:[2,4,1,""]},G2sfact:{HKLF2_ReaderClass:[11,4,1,""],HKLF_ReaderClass:[11,4,1,""]},G2phase:{EXP_ReaderClass:[11,4,1,""],PDB_ReaderClass:[11,4,1,""]},"GSASIIIO.ExportBaseclass":{OpenFile:[8,3,1,""],dumpTree:[8,3,1,""],loadTree:[8,3,1,""],askSaveFile:[8,3,1,""],Write:[8,3,1,""],ExportSelect:[8,3,1,""],GetCell:[8,3,1,""],InitExport:[8,3,1,""],GetAtoms:[8,3,1,""],loadParmDict:[8,3,1,""],CloseFile:[8,3,1,""]},G2export_CIF:{EditCIFpanel:[2,4,1,""],CIFtemplateSelect:[2,4,1,""],EditCIFtemplate:[2,4,1,""],LoadCIFdic:[2,2,1,""],ExportCIF:[2,4,1,""],CIFdefHelp:[2,4,1,""],ExportPhaseCIF:[2,4,1,""],ExportDataCIF:[2,4,1,""],CIF2dict:[2,2,1,""],PickleCIFdict:[2,2,1,""],dict2CIF:[2,2,1,""]},"GSASIIgrid.SingleStringDialog":{GetValue:[8,3,1,""],Show:[8,3,1,""]},"G2export_image.ExportImagePNG":{Exporter:[2,3,1,""]},GSASIIconstrGUI:{UpdateRigidBodies:[12,2,1,""],UpdateConstraints:[12,2,1,""],MultiIntegerDialog:[12,4,1,""]},GSASIIstrMain:{SeqRefine:[15,2,1,""],PrintDistAngle:[15,2,1,""],DisAglTor:[15,2,1,""],Refine:[15,2,1,""],RetDistAngle:[15,2,1,""],BestPlane:[15,2,1,""],main:[15,2,1,""]},G2sfact_CIF:{CIFhklReader:[11,4,1,""]},"GSASIIIO.ImportBaseclass":{ContentsValidator:[8,3,1,""],MultipleBlockSelector:[8,3,1,""],BlockSelector:[8,3,1,""],MultipleChoicesDialog:[8,3,1,""],ExtensionValidator:[8,3,1,""]},"gltext.TextElement":{owner_cnt:[9,1,1,""],foreground:[9,1,1,""],deleteTexture:[9,3,1,""],isBound:[9,3,1,""],centered:[9,1,1,""],bind:[9,3,1,""],texture:[9,1,1,""],createTexture:[9,3,1,""],texture_size:[9,1,1,""],text:[9,1,1,""],release:[9,3,1,""],draw_text:[9,3,1,""],font:[9,1,1,""]},scanCCD:{main:[1,2,1,""]},"GSASII.GSASII":{OnImportPhase:[6,3,1,""],CopyDialog:[6,4,1,""],OnDummyPowder:[6,3,1,""],OnPatternTreeItemDelete:[6,3,1,""],OnImportPowder:[6,3,1,""],OnSize:[6,3,1,""],SumDialog:[6,4,1,""],OnPatternTreeItemCollapsed:[6,3,1,""],OnRefine:[6,3,1,""],OnRenameData:[6,3,1,""],OnFileClose:[6,3,1,""],CheckNotebook:[6,3,1,""],OnFileExit:[6,3,1,""],GetPhaseData:[6,3,1,""],OnPatternTreeItemExpanded:[6,3,1,""],ErrorDialog:[6,3,1,""],OnPwdrSum:[6,3,1,""],ViewParmDialog:[6,4,1,""],OnReadPowderPeaks:[6,3,1,""],GetPWDRdatafromTree:[6,3,1,""],OnImageSum:[6,3,1,""],FillMainMenu:[6,3,1,""],GetUsedHistogramsAndPhasesfromTree:[6,3,1,""],OnSeqRefine:[6,3,1,""],OnPatternTreeKeyDown:[6,3,1,""],OnMakePDFs:[6,3,1,""],OnImportSfact:[6,3,1,""],OnViewLSParms:[6,3,1,""],OnFileSaveas:[6,3,1,""],OnFileSave:[6,3,1,""],ReadPowderIparm:[6,3,1,""],OnImageRead:[6,3,1,""],GetPowderIparm:[6,3,1,""],OnFileOpen:[6,3,1,""],GetHKLFdatafromTree:[6,3,1,""],ExitMain:[6,3,1,""],GetFileList:[6,3,1,""],OnAddPhase:[6,3,1,""],ReadPowderInstprm:[6,3,1,""],OnImportGeneric:[6,3,1,""],ConstraintDialog:[6,4,1,""],OnDataDelete:[6,3,1,""],OnPatternTreeItemActivated:[6,3,1,""],OnDeletePhase:[6,3,1,""],OnPatternTreeSelChanged:[6,3,1,""]},gltext:{TextElement:[9,4,1,""],Text:[9,4,1,""]},GSASIIpwd:{getFCJVoigt3:[7,2,1,""],norm_gen:[7,4,1,""],getdFCJVoigt3:[7,2,1,""],factorize:[7,2,1,""],getWidthsTOF:[7,2,1,""],Ruland:[7,2,1,""],getPeakProfile:[7,2,1,""],calcIncident:[7,2,1,""],DoPeakFit:[7,2,1,""],Dict2Values:[7,2,1,""],getEpsVoigt:[7,2,1,""],getFCJVoigt:[7,2,1,""],GetNumDensity:[7,2,1,""],ellipseSizeDerv:[7,2,1,""],AbsorbDerv:[7,2,1,""],CalcPDF:[7,2,1,""],Absorb:[7,2,1,""],GetAsfMean:[7,2,1,""],getdEpsVoigt:[7,2,1,""],Values2Dict:[7,2,1,""],fcjde_gen:[7,4,1,""],getHKLpeak:[7,2,1,""],LorchWeight:[7,2,1,""],Transmission:[7,2,1,""],getWidthsCW:[7,2,1,""],getPeakProfileDerv:[7,2,1,""],cauchy_gen:[7,4,1,""],Polarization:[7,2,1,""],getgamFW:[7,2,1,""],Oblique:[7,2,1,""],ellipseSize:[7,2,1,""],getFWHM:[7,2,1,""],getBackgroundDerv:[7,2,1,""],SetBackgroundParms:[7,2,1,""],TestData:[7,2,1,""],makeFFTsizeList:[7,2,1,""],getBackground:[7,2,1,""]},"GSASIIgrid.ValidatedTxtCtrl":{ShowStringValidity:[8,3,1,""],EvaluateExpression:[8,3,1,""]},"GSASIIgrid.MyHelp":{OnHelpById:[8,3,1,""],OnHelpAbout:[8,3,1,""],OnSelectVersion:[8,3,1,""],OnCheckUpdates:[8,3,1,""]},G2export_examples:{ExportPowderReflText:[2,4,1,""],ExportPowderText:[2,4,1,""],ExportPhaseText:[2,4,1,""],ExportSingleText:[2,4,1,""]},GSASIIpwdGUI:{UpdatePeakGrid:[12,2,1,""],UpdateLimitsGrid:[12,2,1,""],UpdatePDFGrid:[12,2,1,""],UpdateBackground:[12,2,1,""],UpdateReflectionGrid:[12,2,1,""],SetDefaultSample:[12,2,1,""],UpdateUnitCellsGrid:[12,2,1,""],UpdateInstrumentGrid:[12,2,1,""],UpdateIndexPeaksGrid:[12,2,1,""],UpdateSampleGrid:[12,2,1,""],IsHistogramInAnyPhase:[12,2,1,""]},G2pwd_fxye:{sint:[11,2,1,""],GSAS_ReaderClass:[11,4,1,""],sfloat:[11,2,1,""]},G2pwd_GPX:{GSAS2_ReaderClass:[11,4,1,""]},"G2export_map.ExportMapCCP4":{OpenFile:[2,3,1,""],Exporter:[2,3,1,""]},G2pwd_xye:{xye_ReaderClass:[11,4,1,""]},G2pwd_CIF:{CIFpwdReader:[11,4,1,""]},GSASIIspc:{test1:[9,2,1,""],test0:[9,2,1,""],test3:[9,2,1,""],test2:[9,2,1,""],SytSym:[9,2,1,""],StandardizeSpcName:[9,2,1,""],GetCSuinel:[9,2,1,""],SGErrors:[9,2,1,""],GetKNsym:[9,2,1,""],HStrainNames:[9,2,1,""],GetOprPtrName:[9,2,1,""],GetNXUPQsym:[9,2,1,""],AllOps:[9,2,1,""],MustrainNames:[9,2,1,""],selftestlist:[9,5,1,""],GenHKLf:[9,2,1,""],Muiso2Shkl:[9,2,1,""],ElemPosition:[9,2,1,""],SpaceGroup:[9,2,1,""],StringOpsProd:[9,2,1,""],MT2text:[9,2,1,""],Latt2text:[9,2,1,""],GenAtom:[9,2,1,""],SGpolar:[9,2,1,""],GetCSxinel:[9,2,1,""],ApplyStringOps:[9,2,1,""],SGPrint:[9,2,1,""],Opposite:[9,2,1,""],SpcGroup:[9,2,1,""],MoveToUnitCell:[9,2,1,""],MustrainCoeff:[9,2,1,""]},GSASIIIO:{trim:[8,2,1,""],GetEdfData:[8,2,1,""],ImportStructFactor:[8,4,1,""],GetGEsumData:[8,2,1,""],GetTifData:[8,2,1,""],ImportPowderData:[8,4,1,""],ReadPDBPhase:[8,2,1,""],PDFSave:[8,2,1,""],GetG2Image:[8,2,1,""],powderFxyeSave:[8,2,1,""],ExtractFileFromZip:[8,2,1,""],CheckImageFile:[8,2,1,""],GetImgData:[8,2,1,""],MultipleChoicesDialog:[8,4,1,""],sint:[8,2,1,""],SaveIntegration:[8,2,1,""],FileDlgFixExt:[8,2,1,""],SetNewPhase:[8,2,1,""],IndexPeakListSave:[8,2,1,""],PutG2Image:[8,2,1,""],ProjFileOpen:[8,2,1,""],GetImageData:[8,2,1,""],ProjFileSave:[8,2,1,""],GetPowderPeaks:[8,2,1,""],ExportBaseclass:[8,4,1,""],GetMAR345Data:[8,2,1,""],ReadEXPPhase:[8,2,1,""],ImportBaseclass:[8,4,1,""],ImportPhase:[8,4,1,""],sfloat:[8,2,1,""],PeakListSave:[8,2,1,""],powderXyeSave:[8,2,1,""],ReadCIF:[8,2,1,""]},"G2export_csv.ExportPhaseCSV":{Exporter:[2,3,1,""]},"G2export_PDB.ExportPhaseCartXYZ":{Exporter:[2,3,1,""]},GSASII:{GSASIImain:[6,4,1,""],GSASII:[6,4,1,""],main:[6,2,1,""]},G2export_shelx:{ExportPhaseShelx:[2,4,1,""]},GSASIImapvars:{ComputeDepESD:[5,2,1,""],GenerateConstraints:[5,2,1,""],GetIndependentVars:[5,2,1,""],GroupConstraints:[5,2,1,""],CheckConstraints:[5,2,1,""],GetDependentVars:[5,2,1,""],Dict2Map:[5,2,1,""],GramSchmidtOrtho:[5,2,1,""],Dict2Deriv:[5,2,1,""],VarRemapShow:[5,2,1,""],InitVars:[5,2,1,""],StoreEquivalence:[5,2,1,""],PrintIndependentVars:[5,2,1,""],Map2Dict:[5,2,1,""]},GSASIIobj:{LoadHistogramIDs:[13,2,1,""],VarName:[13,4,1,""]},GSASIIpy3:{FormatValue:[8,2,1,""],FormulaEval:[8,2,1,""]},GSASIIstrMath:{errRefine:[15,2,1,""],Values2Dict:[15,2,1,""],SHPOcalDerv:[15,2,1,""],GetIntensityCorr:[15,2,1,""],GetHStrainShift:[15,2,1,""],GetReflPos:[15,2,1,""],dervRefine:[15,2,1,""],getPowderProfile:[15,2,1,""],GetHStrainShiftDerv:[15,2,1,""],StructureFactor:[15,2,1,""],GetAbsorbDerv:[15,2,1,""],penaltyDeriv:[15,2,1,""],StructureFactorDerv:[15,2,1,""],SCExtinction:[15,2,1,""],SHTXcal:[15,2,1,""],Dict2Values:[15,2,1,""],ApplyRBModels:[15,2,1,""],GetReflPosDerv:[15,2,1,""],ApplyXYZshifts:[15,2,1,""],GetFobsSq:[15,2,1,""],GetPrefOri:[15,2,1,""],HessRefine:[15,2,1,""],penaltyFxn:[15,2,1,""],GetSampleSigGam:[15,2,1,""],SHTXcalDerv:[15,2,1,""],GetNewCellParms:[15,2,1,""],GetSampleSigGamDerv:[15,2,1,""],GetAbsorb:[15,2,1,""],ApplyRBModelDervs:[15,2,1,""],GetPrefOriDerv:[15,2,1,""],GetAtomFXU:[15,2,1,""],getPowderProfileDerv:[15,2,1,""],SHPOcal:[15,2,1,""],GetIntensityDerv:[15,2,1,""]},GSASIIindex:{monoCellReduce:[14,2,1,""],halfCell:[14,2,1,""],getDmax:[14,2,1,""],getDmin:[14,2,1,""],IndexPeaks:[14,2,1,""],FitHKL:[14,2,1,""],Values2A:[14,2,1,""],calc_M20:[14,2,1,""],sortM20:[14,2,1,""],FitHKLZ:[14,2,1,""],ranaxis:[14,2,1,""],DoIndexPeaks:[14,2,1,""],rotOrthoA:[14,2,1,""],scaleAbyV:[14,2,1,""],A2values:[14,2,1,""],rancell:[14,2,1,""],oddPeak:[14,2,1,""],refinePeaksZ:[14,2,1,""],findBestCell:[14,2,1,""],ran2axis:[14,2,1,""],ranAbyR:[14,2,1,""],swapMonoA:[14,2,1,""],ranAbyV:[14,2,1,""],refinePeaks:[14,2,1,""],TestData:[14,2,1,""]},"GSASII.GSASIImain":{MacOpenFile:[6,3,1,""],OnInit:[6,3,1,""]},"GSASIIgrid.NumberValidator":{TransferToWindow:[8,3,1,""],Clone:[8,3,1,""],TestValid:[8,3,1,""],CheckInput:[8,3,1,""],ShowValidity:[8,3,1,""],TransferFromWindow:[8,3,1,""],OnChar:[8,3,1,""]},GSASIIElemGUI:{PickElement:[12,4,1,""],DeleteElement:[12,4,1,""]},GSASIIimage:{pointInPolygon:[0,2,1,""],FitCircle:[0,2,1,""],makeRing:[0,2,1,""],GetEllipse:[0,2,1,""],ImageCalibrate:[0,2,1,""],makeIdealRing:[0,2,1,""],EdgeFinder:[0,2,1,""],ImageIntegrate:[0,2,1,""],GetDsp:[0,2,1,""],Fill2ThetaAzimuthMap:[0,2,1,""],GetAzm:[0,2,1,""],calcFij:[0,2,1,""],FitDetector:[0,2,1,""],makeMat:[0,2,1,""],calcZdisCosB:[0,2,1,""],ImageRecalibrate:[0,2,1,""],ImageCompress:[0,2,1,""],FitEllipse:[0,2,1,""],GetTthAzm:[0,2,1,""],FitStrain:[0,2,1,""],Make2ThetaAzimuthMap:[0,2,1,""],GetTthAzmDsp:[0,2,1,""],GetDetectorXY:[0,2,1,""],FitRing:[0,2,1,""],checkEllipse:[0,2,1,""],GetDetXYfromThAzm:[0,2,1,""],calcDist:[0,2,1,""],ImageLocalMax:[0,2,1,""],peneCorr:[0,2,1,""],FitStrSta:[0,2,1,""],GetTth:[0,2,1,""]},GSASIIplot:{PlotDeltSig:[3,2,1,""],PlotRama:[3,2,1,""],OnStartMask:[3,2,1,""],PlotPatterns:[3,2,1,""],PlotTRImage:[3,2,1,""],PlotExposedImage:[3,2,1,""],G2PlotNoteBook:[3,4,1,""],PlotTorsion:[3,2,1,""],PlotTexture:[3,2,1,""],G2PlotMpl:[3,4,1,""],PlotSeq:[3,2,1,""],PlotStructure:[3,2,1,""],PlotCovariance:[3,2,1,""],PlotSizeStrainPO:[3,2,1,""],G2PlotOgl:[3,4,1,""],PlotISFG:[3,2,1,""],PlotRigidBody:[3,2,1,""],PlotPowderLines:[3,2,1,""],PlotXY:[3,2,1,""],GSASIItoolbar:[3,4,1,""],PlotPeakWidths:[3,2,1,""],PlotIntegration:[3,2,1,""],G2Plot3D:[3,4,1,""],PlotImage:[3,2,1,""],PlotSngl:[3,2,1,""]},"GSASIIgrid.downdate":{getVersion:[8,3,1,""]},"G2export_csv.ExportPowderCSV":{Exporter:[2,3,1,""]},GSASIIddataGUI:{UpdateDData:[12,2,1,""]},GSASIIimgGUI:{UpdateImageControls:[12,2,1,""],UpdateMasks:[12,2,1,""],UpdateStressStrain:[12,2,1,""]},"GSASIIgrid.G2MultiChoiceDialog":{GetSelections:[8,3,1,""]},"G2export_PDB.ExportPhasePDB":{Exporter:[2,3,1,""]},G2phase_GPX:{PhaseReaderClass:[11,4,1,""]},"G2export_map.ExportMapASCII":{Exporter:[2,3,1,""]},"GSASIIgrid.ASCIIValidator":{Clone:[8,3,1,""],TestValid:[8,3,1,""],OnChar:[8,3,1,""],TransferToWindow:[8,3,1,""],TransferFromWindow:[8,3,1,""]},"G2export_shelx.ExportPhaseShelx":{Exporter:[2,3,1,""]},"GSASIIElemGUI.PickElement":{ElButton:[12,3,1,""]},testDeriv:{main:[1,2,1,""]},GSASIIlattice:{test1:[9,2,1,""],Hx2Rh:[9,2,1,""],test3:[9,2,1,""],test2:[9,2,1,""],A2Gmat:[9,2,1,""],test4:[9,2,1,""],test7:[9,2,1,""],test6:[9,2,1,""],test9:[9,2,1,""],test8:[9,2,1,""],permutations:[9,2,1,""],CellBlock:[9,2,1,""],Rh2Hx:[9,2,1,""],Flnh:[9,2,1,""],fillgmat:[9,2,1,""],invpolfcal:[9,2,1,""],Uij2Ueqv:[9,2,1,""],GetBraviasNum:[9,2,1,""],calc_rDsq2:[9,2,1,""],test5:[9,2,1,""],rotdMat4:[9,2,1,""],SwapIndx:[9,2,1,""],GenSHCoeff:[9,2,1,""],CentCheck:[9,2,1,""],sortHKLd:[9,2,1,""],CellAbsorption:[9,2,1,""],UijtoU6:[9,2,1,""],selftestlist:[9,5,1,""],Gmat2AB:[9,2,1,""],invcell2Gmat:[9,2,1,""],A2cell:[9,2,1,""],polfcal:[9,2,1,""],calc_V:[9,2,1,""],textureIndex:[9,2,1,""],GetKsl:[9,2,1,""],calc_rVsq:[9,2,1,""],sec2HMS:[9,2,1,""],GenHLaue:[9,2,1,""],cell2Gmat:[9,2,1,""],getHKLmax:[9,2,1,""],CosSinAngle:[9,2,1,""],rotdMat:[9,2,1,""],SamAng:[9,2,1,""],cell2A:[9,2,1,""],criticalEllipse:[9,2,1,""],MaxIndex:[9,2,1,""],Gmat2cell:[9,2,1,""],combinations:[9,2,1,""],uniqueCombinations:[9,2,1,""],CrsAng:[9,2,1,""],Glnh:[9,2,1,""],cell2AB:[9,2,1,""],selections:[9,2,1,""],GetKcl:[9,2,1,""],calc_rDsq:[9,2,1,""],calc_rV:[9,2,1,""],calc_rDsqZ:[9,2,1,""],OdfChk:[9,2,1,""],cell2GS:[9,2,1,""],GetKclKsl:[9,2,1,""],GenHBravais:[9,2,1,""],Gmat2A:[9,2,1,""],A2invcell:[9,2,1,""],U6toUij:[9,2,1,""],CosAngle:[9,2,1,""],Uij2betaij:[9,2,1,""]},"GSASIIIO.ImportPhase":{PhaseSelector:[8,3,1,""]},"GSASIIobj.VarName":{re:[13,1,1,""],fullDescr:[13,3,1,""],name:[13,3,1,""],getDescr:[13,3,1,""]},GSASIIstrIO:{getCellEsd:[15,2,1,""],GetRigidBodyModels:[15,2,1,""],GetHistogramData:[15,2,1,""],GetRigidBodies:[15,2,1,""],SetPhaseData:[15,2,1,""],GetAllPhaseData:[15,2,1,""],GetHistogramPhaseData:[15,2,1,""],cellVary:[15,2,1,""],SetHistogramData:[15,2,1,""],CheckConstraints:[15,2,1,""],GetUsedHistogramsAndPhases:[15,2,1,""],GetPawleyConstr:[15,2,1,""],GetPhaseData:[15,2,1,""],SetRigidBodyModels:[15,2,1,""],ShowControls:[15,2,1,""],ShowBanner:[15,2,1,""],GetFprime:[15,2,1,""],SetSeqResult:[15,2,1,""],ProcessConstraints:[15,2,1,""],GetPhaseNames:[15,2,1,""],GetHistograms:[15,2,1,""],GetControls:[15,2,1,""],GetRestraints:[15,2,1,""],GPXBackup:[15,2,1,""],PrintRestraints:[15,2,1,""],getBackupName:[15,2,1,""],SetUsedHistogramsAndPhases:[15,2,1,""],GetConstraints:[15,2,1,""],GetHistogramNames:[15,2,1,""],cellFill:[15,2,1,""],SetHistogramPhaseData:[15,2,1,""]},ReadMarCCDFrame:{marFrame:[8,4,1,""]},GSASIIphsGUI:{UpdatePhaseData:[12,2,1,""]},GSASIIpath:{svnGetLog:[9,2,1,""],svnFindLocalChanges:[9,2,1,""],GetVersionNumber:[9,2,1,""],SetVersionNumber:[9,2,1,""],svnGetRev:[9,2,1,""],svnUpdateProcess:[9,2,1,""],svnUpdateDir:[9,2,1,""],whichsvn:[9,2,1,""]},"GSASIIgrid.DataFrame":{PostfillDataMenu:[8,3,1,""],Bind:[8,3,1,""],PrefillDataMenu:[8,3,1,""]},"GSASIIIO.ImportStructFactor":{InitParameters:[8,3,1,""],InitControls:[8,3,1,""],UpdateParameters:[8,3,1,""],UpdateControls:[8,3,1,""]},GSASIImath:{getRestPolefig:[10,2,1,""],getTOFgamma:[10,2,1,""],FindAtomIndexByIDs:[10,2,1,""],FourierMap:[10,2,1,""],setPeakparms:[10,2,1,""],GetDATSig:[10,2,1,""],FillAtomLookUp:[10,2,1,""],getCWgam:[10,2,1,""],GetAtomCoordsByID:[10,2,1,""],mcsaSearch:[10,2,1,""],invQ:[10,2,1,""],getRestAngle:[10,2,1,""],getTOFsigDeriv:[10,2,1,""],getTOFsig:[10,2,1,""],getTOFbeta:[10,2,1,""],GetAtomItemsById:[10,2,1,""],PeaksUnique:[10,2,1,""],getRestPolefigDerv:[10,2,1,""],makeQuat:[10,2,1,""],getSyXYZ:[10,2,1,""],SearchMap:[10,2,1,""],prodQVQ:[10,2,1,""],TLS2Uij:[10,2,1,""],getCWgamDeriv:[10,2,1,""],HessianLSQ:[10,2,1,""],Q2AVdeg:[10,2,1,""],printRho:[10,2,1,""],getRamaDeriv:[10,2,1,""],Q2AV:[10,2,1,""],randomQ:[10,2,1,""],AV2Q:[10,2,1,""],adjHKLmax:[10,2,1,""],getRestDeriv:[10,2,1,""],getAngSig:[10,2,1,""],anneal:[10,2,1,""],calcRamaEnergy:[10,2,1,""],AtomUij2TLS:[10,2,1,""],getRestDist:[10,2,1,""],getDistDerv:[10,2,1,""],getMass:[10,2,1,""],getRestChiral:[10,2,1,""],getTOFgammaDeriv:[10,2,1,""],AtomTLS2UIJ:[10,2,1,""],getRestPlane:[10,2,1,""],SetMolCent:[10,2,1,""],AVdeg2Q:[10,2,1,""],ChargeFlip:[10,2,1,""],GetSHCoeff:[10,2,1,""],GetXYZDist:[10,2,1,""],Q2Mat:[10,2,1,""],GetAtomsById:[10,2,1,""],prodQQ:[10,2,1,""],getAtomXYZ:[10,2,1,""],getCWsig:[10,2,1,""],getDensity:[10,2,1,""],calcTorsionEnergy:[10,2,1,""],randomAVdeg:[10,2,1,""],PeaksEquiv:[10,2,1,""],getTOFalpha:[10,2,1,""],getRestTorsion:[10,2,1,""],getWave:[10,2,1,""],sortArray:[10,2,1,""],GetDistSig:[10,2,1,""],ValEsd:[10,2,1,""],GetTorsionSig:[10,2,1,""],getVCov:[10,2,1,""],getCWsigDeriv:[10,2,1,""],UpdateRBUIJ:[10,2,1,""],getTOFalphaDeriv:[10,2,1,""],findOffset:[10,2,1,""],GetAngleSig:[10,2,1,""],OmitMap:[10,2,1,""],UpdateRBXYZ:[10,2,1,""],getRestRama:[10,2,1,""],UpdateMCSAxyz:[10,2,1,""],normQ:[10,2,1,""],getTorsionDeriv:[10,2,1,""],getTOFbetaDeriv:[10,2,1,""],RotateRBXYZ:[10,2,1,""]},"GSASIIIO.ImportPowderData":{powderdata:[8,1,1,""]},"G2export_csv.ExportSingleCSV":{Exporter:[2,3,1,""]},"GSASIIplot.GSASIItoolbar":{OnHelp:[3,3,1,""],OnKey:[3,3,1,""]},"GSASIIElemGUI.DeleteElement":{ElButton:[12,3,1,""]},"G2export_examples.ExportPhaseText":{Exporter:[2,3,1,""]},GSASIIElem:{FixValence:[9,2,1,""],GetXsectionCoeff:[9,2,1,""],GetFFC5:[9,2,1,""],GetFormFactorCoeff:[9,2,1,""],CheckElement:[9,2,1,""],getFFvalues:[9,2,1,""],getBLvalues:[9,2,1,""],GetMagFormFacCoeff:[9,2,1,""],ScatFac:[9,2,1,""],FPcalc:[9,2,1,""],GetBLtable:[9,2,1,""],GetAtomInfo:[9,2,1,""],ComptonFac:[9,2,1,""],GetFFtable:[9,2,1,""]},"GSASIIgrid.ScrolledMultiEditor":{ControlOKButton:[8,3,1,""]},"G2export_examples.ExportSingleText":{Exporter:[2,3,1,""]},G2export_PDB:{ExportPhaseCartXYZ:[2,4,1,""],ExportPhasePDB:[2,4,1,""]},G2export_csv:{ExportPowderCSV:[2,4,1,""],ExportPhaseCSV:[2,4,1,""],ExportPowderReflCSV:[2,4,1,""],WriteList:[2,2,1,""],ExportSingleCSV:[2,4,1,""]},unit_tests:{test_GSASIIlattice:[1,2,1,""],test_GSASIIspc:[1,2,1,""]},"G2export_CIF.EditCIFpanel":{OnLayoutNeeded:[2,3,1,""],DoLayout:[2,3,1,""],CIFEntryWidget:[2,3,1,""],OnAddRow:[2,3,1,""],ControlOKButton:[2,3,1,""]},"GSASIIgrid.AddHelp":{OnHelpById:[8,3,1,""]},"gltext.Text":{getTextElement:[9,3,1,""],font:[9,1,1,""],font_size:[9,1,1,""],setForeground:[9,3,1,""],getTexture:[9,3,1,""],setFont_size:[9,3,1,""],text:[9,1,1,""],setText:[9,3,1,""],setCentered:[9,3,1,""],text_element:[9,1,1,""],texture:[9,1,1,""],centered:[9,1,1,""],setFont:[9,3,1,""],draw_text:[9,3,1,""],foreground:[9,1,1,""],texture_size:[9,1,1,""],getTexture_size:[9,3,1,""]}},terms:{getnumdens:7,structurefactorderv:15,func:10,orthogon:[2,9],represent:9,yellow:8,gsas2_readerclass:11,four:[15,10,13,8],elemlst:8,prefix:15,targatom:15,fcjde_gen:7,helplbl:8,exportphaseshelx:2,ranabyr:14,"0x18052330":[],deviat:10,noatom:13,"0xbdfd930":[],under:[9,15],suitabl:[0,9],showhelp:8,calcdist:0,everi:[2,5,6,10,8,9,13],"0xca6e6b0":[],"0x20d5070":[],dollas:13,"0x1f57070":[],uij2u:9,radiusfactor:13,affect:5,look:[2,6,9],relval:[],dependentparmlist:5,unitcellbox:13,atomdata:[9,10],gethistogram:15,formatvalu:8,solid:9,"0x17d4a270":[],vector:[13,5,9,10,15],math:[4,9,15],openfil:[2,8],fill2thetaazimuthmap:0,freidel:13,getrestplan:10,calc_m20:14,"0xc92ac30":[],cell2g:9,"0x27281b0":[],exportpowdercsv:2,importstructfactor:[11,6,8],direct:[13,10],getdfcjvoigt3:7,sourceforg:4,second:[5,13,10,9,15,6],"4x4":9,even:[9,13],neg:[13,10,8],"0x1f3def0":[],checknotebook:6,"0xca8cb70":[],ondummypowd:6,"0x5d22c30":[],"new":[2,5,6,10,8,9,13,15],databank:6,setfont_s:9,analtyt:15,"49012e":10,widget:[2,12,8],displai:[2,3,6,8,9,12,13],"0x17d492f0":[],"0x202a3b0":[],here:[2,9,8],met:10,g2pwd_cif:[4,11],getcwsig:10,path:[1,2,6,9],"0x28047b0":[],interpret:[13,1,9,15],penecorr:0,interatom:[15,13],canva:3,precis:[10,8],aui:8,vener:2,"0xb96c8f0":[],aka:[15,13],covdata:[15,10],ranabyv:14,getcwgam:10,linearli:5,putg2imag:8,horizontallin:8,total:9,unit:[4,5,15,10,8,9,12,13],ftol:10,plot:[1,13,3,8,4],describ:[1,2,13,5],dmdv:[5,15],seqnam:3,flnh:9,vol:7,positiveonli:8,call:[10,1,2,3,5,6,7,8,9,12,15],"0x20d3fb0":[],"0x1e50430":[],"0x1e0b9f0":[],calc:[0,4,7,8],type:[4,2,3,15,10,8,9,13],until:[10,8],cellfil:15,swap:[],usercalibr:9,updatehklcontrol:8,"0x209e930":9,inst2:7,getatom:8,inflect:9,relat:[13,5,9,10,15],notic:15,warn:[2,15],exce:15,"0x17d4a870":[],hold:[15,13,8],must:[4,13,8,10,5],pickel:12,"2phi":7,cell2ab:9,setup:[15,7],work:[11,9,10,8],wtfactor:13,betaij:9,helpwin:2,ccp4:2,root:13,obliqu:7,findatomindexbyid:10,overrid:[9,8],"0xca952f0":[],sorthkld:9,"0x17cc0a70":[],digit:8,indic:[5,13,10,8,9,15],getcel:8,monocellreduc:14,getphasedata:[6,15],want:9,end:[2,8],odfchk:9,cylind:7,ilim:0,gsasiiimag:[0,4],how:[2,10,13],histophas:15,celllist:8,equivalenc:5,collaps:6,lam:[9,13],u22:[9,13],after:[10,2,3,5,15,7,8,9],substanc:9,befor:[7,5,15,10,8,13],sedg:9,rulcoff:7,draw_text:9,oninit:6,"0x17d1a170":[],averag:13,svngetlog:9,util:[4,9],"0x5b45230":[],getwidthscw:7,attempt:[6,8],third:13,"0x2734c30":[],displac:13,constraintdialog:6,textcontrol:[],jlim:0,enter:8,sumdialog:6,lambda:[9,7],g13:9,order:[9,13,8],g11:9,oatom:10,origin:[5,15,10],composit:2,over:[1,15,10,8],mx2:5,becaus:[9,8],mx1:5,curve_fit:10,"0xca95570":[],"0xca96470":[],incid:0,varremapshow:5,vari:[5,15,10,13],"0x17d1a1b0":[],"0xca96270":[],position:9,sgtbx:9,img:8,"0x5b45430":[],fix:[5,13,7,8,9,15],constant:[5,9,10,13],strang:8,rigidbodi:15,ifdup:9,gsasiiddata:12,getbackgroundderv:7,onc:[5,2],treeitemid:12,gridfractioneditor:8,fil:[2,8],calc_rvsq:9,oncheckupd:8,them:[5,2,9,15,8],"0x2728270":[],var1:13,mapdata:10,thei:[1,2,5,13,10,8],var2:13,coehlo:14,g2obj:[],readpowderinstprm:6,"break":8,printrho:10,setvalu:[2,8],bank:6,choic:[12,8],repaint:2,"0xca8dcb0":[],"0xca962b0":[],getvalu:8,conflict:5,atptr:[15,10],svnfindlocalchang:9,g2htmlwindow:8,european:8,"0x17d49430":[],side:9,bond:13,wxapp:6,updateseqresult:8,laboratori:9,extract:[9,13,8],"0x9f9cc30":[],unbound:8,goe:13,newli:[5,2],gof:13,rh2hx:9,dsp:[0,10],predefin:8,content:[1,2,4,6,10,8,9,12,13,15],gonio:13,reader:[6,8],comptonfac:9,ntz:10,linear:15,oxyz:10,free:9,standard:[4,9,10,13,8],exportpowderreflcsv:2,longnam:7,fcalcpres:8,gsasiitestplot:[1,4],angl:[0,2,3,10,15,7,8,9,13],"0xc6296f0":[],"0x209eb30":9,"0x7a3feb0":[],"0xc92ab30":[],iso:8,"0x1e5ce70":[],getknsym:9,argonn:[],confus:8,"0x279ec30":[],shkl:9,rang:[10,8],"0x17d4a730":[],render:9,independ:5,"0x5e96d30":[],system:[9,8],unlik:5,alreadi:[9,8],"0x2376470":[],"0x6144930":[],thick:7,agre:6,primari:13,sgcen:[9,13],cartesian:[13,2,10,9],"0x1e50330":[],"0x17d1a0f0":[],tor:10,top:[2,10,13,8],sometim:3,xdata:7,master:5,dwell:10,zipfil:8,"0x28213b0":[],a31:9,q2avdeg:10,consol:15,"0xc634730":[],makemat:0,"0xca95670":[],phipsi:3,"0x279eab0":[],"0x1e15730":[],"0x23764f0":[],getfobssq:15,test_gsasiilattic:1,target:15,keyword:[2,8],provid:[11,5,9,7,8],getrestangl:10,hname:15,atomtyp:[9,13],project:[4,2,11,13,8,6],matter:[9,8],headeritem:2,plotcovari:3,rotdmat4:9,"0x2821370":[],jmol:9,plotstructur:3,drawatom:10,maxdigit:8,fashion:9,"0x234a770":[],quench:10,"0xc6057b0":[],deleteel:12,rai:[0,9,7,13],fithkl:14,raw:[6,9],seed:10,seen:[9,3],seem:8,getazm:0,gsa:[1,2,3,4,5,6,8,9,12,11,13,15],applyrbmodel:15,mfa:9,latter:5,elsym:9,"0xca8abb0":[],hklfname:6,cifhklread:11,parmlist:5,simplifi:8,scaleabyv:14,object:[4,2,6,8,9,12,13,15],panel:[2,8],vdwscale:13,boltzmann:10,rbmodel:[15,13],letter:[9,3,13,8],phase:[4,2,3,11,6,10,8,9,12,13,15],typ:8,im3m:[],usecancel:8,tradit:13,peaksequiv:10,gettthazmdsp:0,don:[11,9],simplif:5,doc:[0,4,3,10,15,7,8,9,12,14],"0x7b26f30":[],g2sfact_cif:[4,11],doe:[0,4,2,3,6,10,8,13],dummi:6,sitesym:9,gmat2cel:9,propos:10,sum:[10,6,7,13,8],came:8,"0xca555b0":[],fhkl:10,getg2imag:8,random:[13,10],radiu:[0,13,7],"0x5ea9870":[],radii:[0,15,13],getbltabl:9,pkg:8,generateconstraint:5,involv:5,absolut:[1,9],exactli:13,layout:2,gettorsionsig:10,ellipsoid:[9,3,13],contourlevel:13,menu:[11,1,2,6,8],explain:[],"0xb931c30":[],reinit:9,gsasiimapvar:[4,5],"0xca95530":[],sethistogramphasedata:15,balyuzi:9,cifblk:2,maetric:9,testdata:[14,7],plate:[7,8],shkei:10,wide:8,bondradiu:13,stop:10,errrefin:15,linux:[3,8],ruland:7,bondradii:13,net:4,dgmda:9,"0x1e503f0":[],makefftsizelist:7,gettofbeta:10,"0x17d49330":[],"0xc629770":[],respond:[3,12],headinglist:8,isbound:9,plotpeakwidth:3,datatyp:[6,7,8],num:[10,9,7],dervrefin:15,result:[1,13,10,8,9,15],respons:6,fail:[1,2,8],fosq:8,dict2cif:2,"0x5bda530":9,best:[2,9,8],"0x1d7afb0":[],movetounitcel:9,dependentlist:5,tensor:[13,9,15],mur:7,"0x18a61030":[],wikipedia:5,atlookup:[15,10],figur:[3,10],finger:[13,7],"0xc4ca830":[],parmdict:[0,10,5,6,7,8,15],triplet:13,omg:0,gpxfile:15,gsasiirestrgui:[4,12],newnam:3,updateimagecontrol:12,gl_alpha_test:9,extens:[4,6,8],deby:13,gsasiilattic:[1,9,4],toler:[9,10],"0xb96cd30":[],cov:10,cox:[13,7],compton:[9,7],against:[1,9],"0x17d4a070":[],refltyp:10,omitmap:10,chargeflip:10,browser:8,setseqresult:15,con:13,schmidt:5,base_schedul:10,"2nd":9,permut:9,xtol:[10,7],sgpolax:[9,13],swapindx:9,mulp:9,itemselector:8,duplic:[9,8],gethklfdatafromtre:6,plotpowderlin:3,wxtextctrl:[],getdmin:14,numpi:[4,7,15,10,8,9],three:[5,15,10,13,8],been:[2,5,15,10,8,9],marquardt:13,much:8,mult:[9,13,8],basic:[4,8],quickli:1,"0xb931db0":[],filedlgfixext:8,anywher:[],cauchy_gen:7,testderiv:[1,4],child:[13,3],pdfsave:8,"0xb931cf0":[],findoffset:10,ident:[9,8],diffract:[1,2,4,6,8,9,12,13],tand:8,cell2a:9,calcul:[4,6,7,9],getpwdrdatafromtre:6,"0x9fabcb0":[],bin:9,glnh:9,printabl:8,elbutton:12,oldpag:12,"0xc605770":[],"0xc92aa70":[],"0x1f3dfb0":[],kwarg:[1,3,8],setmolc:10,march:13,sever:5,jame:[11,8],perform:[2,6,10,8,9,13],make:[0,2,6,10,8,9,12,15],"0x234a830":[],outsid:9,complex:[5,2],descend:9,cosangl:9,mcsa:[13,10],"0xc60a770":[],"0x279eb70":[],phasenum:13,"0x1e741f0":[],projectfil:9,"0xc639730":[],publ:2,"0xca8daf0":[],numbervalid:8,refin:[1,5,6,10,8,13,14,15],movepatterntreetogrid:[12,8],topa:[11,4,8],redefin:5,fourier:2,"0x18a61b30":[],wtype:6,updatelimitsgrid:12,layoutcal:2,contact:9,"0x17d1a970":[],thi:[0,1,2,3,5,6,10,8,9,12,11,13,14,15],onpatterntreeitemcollaps:6,left:13,stringent:10,identifi:8,just:9,getreflposderv:15,doindexpeak:14,equivalanc:5,getreflpo:15,sgsymbol:9,"0x2804970":[],yet:14,previous:[5,11],directli:[15,13],lener:9,getwidthstof:7,help:[2,8],mask:[0,3,12],fortran:9,hap:[15,13],cherri:2,expon:8,take:[1,5,15,10,8,9],applic:[1,6],cossinangl:9,"0x20d5bb0":[],gettofgammaderiv:10,maxval:8,preserv:[9,8],"0x234a6f0":[],longformatnam:8,ifrevers:9,id_ok:8,background:[12,9,7,13,8],authorship:15,getsyxyz:10,searchmap:10,"0x1e74930":[],measur:[1,13],g33:9,vdw:13,specif:[9,2,6,8],arbitrari:[9,13],"0xca96130":[],"0xca8dbf0":[],oddpeak:14,"0x1eb49f0":[],dzero:10,"0x195f16f0":[],oxid:9,right:7,old:[6,9],"0x6c91d70":[],deal:9,somehow:3,"0xc60a6f0":[],intern:5,maxit:10,getintensityderv:15,transmiss:7,plotdeltsig:3,thu:[5,8],uniq:[9,15],"0xca8ccb0":[],applescript:1,normal:[9,3,10],g2phase_cif:[4,11],subclass:[2,6],gettofalphaderiv:10,getbackground:7,fob:[],gettifdata:8,"0x5ff43f0":[],"0xca953f0":[],core:2,plu:[],histnum:13,stefan:9,binden:9,baktyp:7,saveintegr:8,"0xca8ac70":[],deletetextur:9,repositori:[9,8],post:[2,8],gpxbackup:15,filepoint:8,"0xca8aa70":[],obj:[2,6],atomtls2uij:10,latt2text:9,slightli:9,exportcif:2,simul:[6,10,13,8],"0xb931d70":[],produc:[1,8],postfilldatamenu:8,t_new:10,containt:[5,10],xyz:[2,13,10,8,9,15],"float":[0,10,2,5,15,7,8,9,11,13],bound:[6,10,9],g2export_map:[4,2],xye:[11,4,8],"0x17e34730":[],accordingli:8,"0x5ff4330":[],wai:[9,8],support:[2,9,8],gettthazm:0,transform:[9,10,13],gnu:9,"class":[1,2,3,4,10,6,7,8,9,12,11,13],avail:[3,10],width:13,getatomfxu:15,editor:8,fraction:[9,13,8],lowest:13,head:[9,8],"0x202a430":[],form:[13,5,9,15],offer:8,forc:[13,8],obcoeff:7,refcount:9,plottextur:3,"0x20d57f0":[],resetreflist:15,formatnam:8,"true":[1,2,3,6,10,8,9,13,15],rbobj:10,absent:9,azm:[0,7],coeff:[10,9,3,7],asksavefil:8,pawleyvari:15,"0x202a1b0":[],"0x21e7d70":[],crystal:[4,2,3,11,6,10,9,13,15],histtyp:[],minor:0,gettorsionderiv:10,prodqvq:10,later:[13,5,2,15,8],"0xca95270":[],"0x6c91cf0":[],dumptre:8,hstrainnam:9,diagnost:3,exist:[5,6,15,8],updateunitcellsgrid:12,tornam:3,check:[1,2,4,5,8,9],ijk:9,nx1:5,fixedvarlist:5,tip:12,refactor:[0,14],tetragon:[9,13],test:[1,3,4,10,8,9],tif:8,solv:[],"0xca95470":[],cell2gmat:9,intend:[2,13,8],exportsinglecsv:2,intens:[9,3,13,8],textcrtl:8,"0xca8ba70":[],omega:[0,9,13],brentano:[13,7],longer:[13,10],postlbl:8,pseudo:[10,8],genshcoeff:9,multichoicedialog:8,ignor:[5,13,8,9,15,6],nmin:7,time:[13,2,10,6,9],push:9,"0x17e348f0":[],nxn:[13,10],"0x17e34930":[],powderxyesav:8,rancel:14,"0xca965b0":[],spgrp:[9,13],skip:[2,6,9],"0x1960a1f0":[],global:[4,9,13,5],"0x1e156b0":[],pval:15,invcell2gmat:9,unit_test:[1,4],unconstrain:5,forceunit:8,"0x1eb4a30":[],row:[13,5,2,9,8],"0xc92aab0":[],depend:[5,9,7,13,8],unnumb:13,zone:3,plotxi:3,decim:[10,8],readabl:10,calc_rdsqz:9,zref:14,dialog:[2,6,8],okcontrol:8,vec:15,"0x6144770":[],plotrigidbodi:3,"0x21e7e30":[],getangsig:10,shpocal:15,owner_cnt:9,sourc:[0,1,2,3,5,6,7,8,9,10,11,12,13,14,15],loopstructur:2,string:[0,10,2,3,5,6,7,8,9,12,11,13,14,15],coot:2,planedata:15,handl:[12,8],getramaderiv:10,fitellips:0,condit:10,cifdic:2,exact:2,cool:10,level:[13,10],gui:[4,9,14,12,8],iter:10,dic:2,magnet:9,item:[4,2,5,6,10,8,9,12,13,15],harmon:[13,9,15],varylist:[0,7,5,15,10,8,13],"0x6144970":[],gmat2a:9,nparrai:10,dir:8,siga:15,prevent:[5,8],cosd:8,slower:8,formfactor:[4,9],hack:9,"0x18a618f0":[],sign:[9,8],cost:10,phfx:15,randomavdeg:10,g2phase_gpx:[4,11],g22:9,appear:[5,6,8],"0x235d2f0":[],selftestlist:9,uniform:10,current:[1,2,3,11,6,8,9,13,15],axial:9,u33:[9,13],copydialog:6,"0x5e96df0":[],deriv:[10,1,2,4,5,15,7,8,9,11],printindependentvar:5,genatom:9,coeffici:[10,9,7,13],satisfi:5,"0x17d1a030":[],plotsizestrainpo:3,box:8,dreel:1,"0x235d230":[],shift:[15,13,8],bot:[],av2q:10,bob:0,avdeg2q:10,onviewlsparm:6,commonli:9,nmax:7,hst:5,extra:[10,8],dtype:[],modul:[0,1,2,3,4,5,6,7,8,9,10,11,12,14,13],prefer:[13,9,3,15],parma:[],nfev:10,"0x17e36630":[],"1st":[5,9,10],"0x18052370":[],instal:[4,9,8],dispers:9,atinfo:3,distarrai:15,memori:[9,15],fvec:10,"_d_2":2,give:[9,3,10,13],subvers:9,applystringop:9,msg:[2,9],black:13,marccd:8,"0xca6e6f0":[],"0x20d5030":[],"0x5d22bf0":[],"0x17d18930":[],rigid:[15,3,12,13],prototyp:1,parm2:5,parm1:5,plotisfg:3,"0xc63d770":[],sphere:13,"0x27b6630":[],prepar:[9,13],importphasereaderlist:6,uniqu:[9,10,13],"0x17d4a230":[],values2dict:[15,7],minimum:[10,9,7,8],can:[10,1,2,3,5,6,7,8,9,13,15],tabul:9,purpos:3,zeroref:14,problemat:5,pawlei:13,nearest:9,sgequiv_2002_orthorhomb:[],"0xbdfd7b0":[],critic:9,phaseselector:8,structurefactor:15,changetyp:[],occup:[13,8],orthorhomb:[9,13],alwai:[13,9,15,8],numitem:10,multipl:[2,3,13,8,9,6],viewpoint:13,"0x1f3deb0":[],tilt:7,write:[1,2,8],checkimagefil:8,criterion:10,gettofalpha:10,map:[4,2,3,10,13],remap:5,mar:[4,8],"0x17d492b0":[],sgprint:9,"0xca95630":[],clone:8,mac:[1,6,3,8,4],readerlist:6,mag:10,mai:[1,13,8,9,15,6],values2a:14,data:[0,1,2,3,4,10,6,7,8,9,12,11,13,15],hklf:[11,15,12,13,8],man:12,stress:12,practic:10,ny1:5,"0x279ebb0":[],inform:[2,5,6,10,8,9,12,11,13,15],"switch":8,cannot:[5,13],combin:[9,13],block:[11,2,9,8],callabl:10,onrefin:6,"0xc92ac70":[],timemap:6,ranaxi:14,"0x5e96e70":[],onlayoutneed:2,tth:[0,9,7],getpeakprofilederv:7,still:6,pointer:[13,10],equiv:[],pwdrname:6,"0x1e50470":[],group:[4,5,13,8,9,15],plotpattern:3,platform:[6,8],window:[1,2,3,6,8,12],ntri:14,"0x1e0b9b0":[],x_old:10,getrestrama:10,m_2:[],m_1:[],main:[1,2,3,4,6,8,12,13,15],"0x17e348b0":[],getcontrol:15,non:[5,9,13],"0xca8bbb0":[],calctorsionenergi:10,confirmoverwrit:8,cellsig:8,initi:[2,3,5,15,10,8,13],nation:[],showrigidbodi:13,"0x5feff70":[],now:[5,9,13],term:[1,3,7,15,10,9,5,13],voltag:13,name:[10,1,2,3,5,6,7,8,9,12,11,13,15],hessianlsq:10,revers:10,ranrang:10,separ:[4,2,13,8,9,6],"0xca55470":[],muiso2shkl:9,"0x1e74130":[],ddata:12,updat:[10,4,2,5,15,7,8,9],compil:9,citat:15,"0xca6e630":[],replac:8,checkconstraint:[5,15],gaussian:13,newvar:[],"0x5d22db0":[],wavelength:13,happen:8,genhkl:9,alpha2:13,"0xc6396f0":[],shown:[12,1,13,10,8],alpha1:13,absorpt:[9,7,13],getatomsbyid:10,space:[4,13,10,8,9,15],plotseq:3,profil:[13,8],bragg:[13,7],stuff:10,updatesamplegrid:12,updaterbxyz:10,formula:8,gethstrainshiftderv:15,correct:[13,7,8,9,15,6],integr:[0,3,8],onaddrow:2,"0x17d1a130":[],onsiz:6,"0x1f57030":[],"0x5d22c70":[],cart:10,onfilesavea:6,fxye:8,theori:6,constr:5,org:[4,5],"0x240078":15,orb:9,"0x1eb4a70":[],suffici:1,motion:3,turn:[12,8],place:[2,11,6,10,8,9,13],getrestderiv:10,u23:[9,13],"0x17cc0a30":[],"0x17d4a0b0":[],imposs:9,first:[2,5,6,10,8,9,12,13,15],oper:[13,2,9,15,8],atomlabel:15,peaklistsav:8,"0x17d180b0":[],arrai:[7,5,6,10,8,9,13,15],generaldata:[3,10],bestplan:15,currentexporttyp:2,"long":[11,9],symmetri:[13,9,10,15,8],"0x1f570b0":[],ring:[0,3],open:[2,11,6,7,8,15],"0xca96230":[],size:[3,7,13,10,8,9],test6:9,given:[1,6,10,9],helptyp:8,"0x5b45470":[],convent:9,"0x17e36530":[],gsasiipath:[4,9],checkel:9,initparamet:8,test3:9,necessarili:9,demonstr:2,getbraviasnum:9,mjk:5,conveni:[],"0xc60a7f0":[],angleradii:13,updaterestraint:12,"0x1960a270":[],ranstart:10,"public":[2,9],copi:[11,2,6,8],pnt:13,specifi:[1,2,5,6,10,8,9,13,15],imagerecalibr:0,"0x1d7a970":[],pnc:13,than:[1,2,5,10,8,9],png:2,"0x9f9ccb0":[],xsectip:9,unpolar:7,"0x17d49470":[],cifpwdread:11,redefinit:5,applet:[1,4],param2:5,param1:5,were:[11,13,10,8,9,6],posit:[2,7,13,10,9,14],"0x17d49270":[],seri:[1,15,10,8,12,13],pre:[],analysi:3,sai:9,reflist:15,argument:[1,10,8],maxindex:9,"0x17d186f0":[],gsasiipy3:[4,8],gsasiiindex:[4,14],"0x9f9cc70":[],ramanam:3,squar:[1,7,15,10,9,5,13],picktwodialog:8,fftabl:9,gettofsig:10,note:[1,2,4,5,6,10,8,9,12,13],gsasiielemgui:[4,12],constrant:5,makemacapp:[1,4],"0x5f7b770":[],phaserest:15,noth:[1,9,8],channel:9,incoher:9,phasereaderclass:11,begin:[13,8],sure:[6,8],ciftemplateselect:2,trace:9,pfile:[5,15],multipli:[5,9,10,13],unsuccess:10,calc_rv:9,"0xca8dc70":[],beta:[9,13,8],pair:[13,9,10,15,8],fcj:7,renam:[6,3],"0xc6296b0":[],hmax:10,updatebackground:12,infodict:10,g12:9,getepsvoigt:7,nuclear:13,"0x202a4f0":[],derivdict:5,axi:[0,7,13,10,8,9],slope:10,test8:9,show:[1,2,3,5,6,8,9,12,13],strictextens:8,delta:0,"0x1e155b0":[],writelist:2,sguniq:[9,13],corner:9,unfinish:[],odfln:[9,10],rotat:[0,9,10],onli:[1,2,5,6,10,8,9,12,13,15],ratio:13,dictlst:8,"0x28213f0":[],activ:6,state:[9,10],dict:[10,2,3,5,6,7,8,9,12,13,15],"0x17d4a170":[],"0xc63d6f0":[],errordialog:6,analyt:[1,9],overwritten:15,"0x279eaf0":[],fitpgm:7,variou:[7,8],get:[3,6,10,8,9,15],ellipseprob:13,"0xca8ca70":[],"0x1e502f0":[],secondari:13,mfc:9,tailor:6,"0xca8cc70":[],requir:[1,2,8,10,4],idlist:[13,10],prime:7,standardizespcnam:9,"0xca963b0":[],getxsectioncoeff:9,"0x5b454b0":[],disagldialog:[15,8],pawleyref:15,aris:8,ncmax:14,anisotrop:13,where:[0,1,2,5,6,7,8,9,10,12,13,15],summari:5,wiki:5,getrestdist:10,pgbar:10,centrosymmetr:[9,13],findbestcel:14,morehelpitem:8,prefilldatamenu:8,maximum:[10,9,7,13,8],"0xca960f0":[],dpsda:9,getkclksl:9,symoplist:9,gsasiiddatagui:[4,12],ondatadelet:6,page:[3,12,8],qvq:10,enumer:2,ibrav:14,"0xca8abf0":[],label:[13,6,15,8],hist:13,between:[13,5,6,9],"import":[11,4,6,8],"0x6c91db0":[],"0x2728230":[],"0x17cc0930":[],gsasiiplot:[4,3],parent:[1,2,3,6,8,12],g2export_csv:[4,2],mcsasearch:10,cycl:[1,13,10,8],getanglesig:10,dmin:[9,14,7,13],highlight:[2,13,8],gsasiistrio:[4,15],come:10,onecycl:7,pseudopotenti:10,fit:[0,15,13,8],"0x23764b0":[],region:8,"0x7a3fbf0":[],mont:13,inconsist:5,mani:8,"0x7a3fdf0":[],updaterigidbodi:12,extensionlist:8,atomlookup:10,getsamplesiggamderv:15,among:10,color:[9,12,13,8],filldiagon:[],period:[4,9,12,8],pole:3,sxc:13,colon:[13,8],pola:7,"0xb96ca70":[],cancel:[2,8],"0xca8cbf0":[],extinct:15,amino:9,better:[10,8],"0x202a170":[],coupl:9,gsgrid:8,controlokbutton:[2,8],invers:[5,9,3,10],mark:8,reldict:[],u11:[9,13],individu:[13,8],u13:[9,13],u12:[9,13],valueerror:9,curvatur:10,"0x203b5b0":[],histogram:[11,13,8,12,15,6],"2th":7,irrevel:9,bmp:9,"0x1e503b0":[],gsasiispc:[1,9,8,13,4],tmplate:2,thing:9,those:[5,9,10,13,8],"0xca8bc30":[],"case":[5,9,12,13,8],getprefori:15,npix:8,ondeletephas:6,cast:[9,8],invok:8,"0x195f16b0":[],triclin:[9,13],"0xca555f0":[],"0x6c91e30":[],anytim:8,stdout:15,metric:[13,9,15],"100th":9,strain:[13,12],scipi:[4,2,10],pdb_readerclass:11,setfont:9,plotrama:3,makeback:15,ascii:[5,2,8],genhklf:9,peaksuniqu:10,"0x20d5230":[],develop:[4,9],cpickl:2,"0x18a61070":[],author:9,instrnam:13,"0x209ea30":9,binari:2,scrolledwindow:12,html:[4,8],shpocalderv:15,getrestpolefigderv:10,"0x6c91c30":[],eventu:9,bring:[12,8],"0x1e15670":[],getcwgamderiv:10,sethistogramdata:15,cifinput:8,"0x5bda4f0":9,"0x17d493f0":[],someon:3,controldict:15,getsamplesiggam:15,defn:[],"0xca8ab30":[],isotop:[9,13],appropri:[6,10,13,8],helptxt:2,onleav:8,maxaccept:10,fpcalc:9,fmmm:[],model:[5,15,10],rhomax:10,refdict:15,convient:9,comment:8,lastiparmfil:6,execut:[9,10],addhelp:8,when:[0,2,3,6,8,9,12,13,15],"0xbdfd9f0":[],bitmap:9,invalid:[2,15,8],gangl:9,tobi:[1,9],goniomet:[9,13],miscellan:8,except:[1,2,9,15,8],littl:[9,14],instrument:[2,3,13,8,12,6],exercis:9,oriq:10,angarrai:15,role:13,"0xca96570":[],var_2:[],var_1:[],real:9,psi:[10,9,7],sortm20:14,around:[0,10],read:[4,2,11,6,8,9,13,15],temperatur:[13,10],grid:[10,8],mol:13,"0x1e504b0":[],onselectvers:8,oldnam:3,"0xb931cb0":[],mod:[],saniti:8,getedfdata:8,inten:7,sfloat:[11,8],integ:[2,11,7,8,9,12],server:9,either:[10,2,5,6,7,8,9,13],"0x28047f0":[],spacegroup:9,getabsorbderv:15,displacei:13,onfilesav:6,"0x209e9f0":9,parentfram:8,"0xca955f0":[],sec2hm:9,anomal:9,"0xca95330":[],groupedparm:[],newplot:3,readexpphas:8,invpolfc:9,fitstrsta:0,imageonli:8,test_gsasiispc:1,tls2uij:10,confirm:8,"0x7bff170":[],oldxi:13,definit:[13,5,2,15,8],lastdatafil:6,"0x202a270":[],getfftabl:9,"0xc60a730":[],cylindr:[9,15],refer:[4,2,6,15,8],compris:5,power:7,each:[10,2,5,6,7,8,9,12,13,15],idup:9,"0xca8dab0":[],debug:1,datanam:2,fulli:7,"0x5e96cf0":[],"throw":[1,9,15],"0x17d1a930":[],"0xb96c7b0":[],central:15,fcalc:[],degre:[0,5,9,10,13],neighbor:15,atomptr:13,mean:[7,8],backup:15,"0x17e36430":[],"0x5e96cb0":[],routin:[1,2,3,4,5,6,10,8,9,12,11,13,15],"0x2804930":[],effici:5,"_init_import":6,getcwsigderiv:10,"0x17d4a9b0":[],"0x21e7db0":[],updateinstrumentgrid:12,"0x17d18170":[],getformfactorcoeff:9,your:[],onimagesum:6,spglist:[],updatepeakgrid:12,log:[9,3,10],opengl:[4,9,3],getversionnumb:9,madden:1,overwrit:8,start:[1,3,6,10,8,9],interfac:9,submiss:2,getblvalu:9,getoprptrnam:9,"0x7a3fe70":[],"0x27282b0":[],"0xc92abf0":[],tupl:[5,9,10,15,8],bundl:4,"0x2728070":[],amongst:10,diffus:13,svngetrev:9,srm660a:9,"0x1e74970":[],gl_blend:9,notat:8,getshcoeff:10,"0xca96170":[],atmdata:9,"default":[2,3,6,10,8,9,12,13,15],fixedlist:[5,15],"0xc6346b0":[],psing:10,ipvt:10,imagecompress:0,expect:[1,6,3,8],a2valu:14,maxev:10,creat:[1,2,3,4,5,6,10,8,9,12,13],updateconstraint:12,uij:[9,15],cellblock:9,"0xca954b0":[],decreas:[9,13],adsc:8,file:[1,2,4,11,6,8,9,13,15],"0x17d187b0":[],proport:3,extensionvalid:8,fill:[9,15],denot:10,incorrectli:8,createtextur:9,loadtre:8,yob:13,event:[2,3,6,8],field:[9,8],valid:[2,8],lorchweight:7,projfileopen:8,getksl:9,sum_:[],edgemin:0,editcifpanel:2,getgesumdata:8,kingslei:0,sequenc:[10,8],symbol:[9,13],getvers:8,"0x1e740b0":[],prodqq:10,peak:[7,6,10,8,12,14,13],xpix:0,reduc:[1,13,5,4],max:8,getatominfo:9,exportphasepdb:2,g2export_shelx:[4,2],descript:[9,10,13],"0x17d4a2f0":[],exportphasecif:2,mass:13,"0xb931d30":[],potenti:[6,10,8],exportmapascii:2,"0xc60a6b0":[],swapmonoa:14,u6touij:9,"0xca8da70":[],all:[0,1,2,3,5,6,10,8,9,12,11,13,15],dist:0,onkei:3,"0x61447b0":[],forbidden:9,readpdbphas:8,rowlabel:8,"0xca8aab0":[],gmat2ab:9,getdsp:0,reson:9,follow:[13,8],acosd:[],children:13,alp:7,refinepeak:14,immm:[],"0xc60a8b0":[],ifnon:12,setcent:9,distsum:0,program:[1,2,14,6],loadhistogramid:13,"0x17e347f0":[],"0x20d5170":[],pointinpolygon:0,trim:8,liter:[],"0x5f7b730":[],setforeground:9,far:9,invcel:9,seapar:[],exportimagepng:2,updatemask:12,callscrolledmultieditor:8,veri:[10,8],map2dict:5,orthonorm:5,ishistograminanyphas:12,exitmain:6,"0xca964b0":[],list:[0,4,2,5,6,7,8,9,10,12,13,15],signific:10,laue:[9,13],adjust:10,scanccd:[1,4],cosin:8,pohkl:13,small:8,"0xc6397b0":[],anal:0,smith:0,gsasiisolv:[],dimens:[15,10],add3d:3,crystallographi:1,scrolledpanel:2,modal:8,zero:[11,15,10,8,9,5,14,13],pressur:13,design:15,pass:[2,3,8],"0xca961b0":[],getgamfw:7,lammax:[13,10],plottrimag:3,what:[2,3,6,8],diam:7,dict1:8,sub:13,"0x5b453f0":[],section:9,rval:13,"0x9fabd30":[],brief:10,getcsuinel:9,delet:[4,6,3,12,9],version:[1,9,13,8],q2av:10,"0xca8acb0":[],menubar:6,method:[10,8],retdistangl:15,"0x1d7a1f0":[],enumselector:8,full:[2,10,15],christian:9,variat:14,blocknam:2,u2uij:9,symmetr:10,getrigidbodi:15,gethistogramphasedata:15,modifi:[9,15],valu:[10,1,2,5,6,7,8,9,12,11,13,14,15],selectedatom:13,onpatterntreeitemactiv:6,search:[0,9,10,13],fillmainmenu:6,onnotebookkei:3,fpath:9,prior:8,autoran:10,within:[9,13],pick:[2,3,12],action:[6,12],getrestchir:10,magnitud:10,diamet:[13,7],via:[1,9,8],exporttyp:2,"0x1960a1b0":[],primit:8,onfileexit:6,gettextur:9,inappropri:8,g2plotogl:3,xtaldict:8,g2oprlist:9,"0xca8bcf0":[],elementgui:[],select:[4,2,10,6,7,8,9,12,11,13,15],transferfromwindow:8,distinct:9,regist:[1,8],two:[2,5,6,10,8,9,11,13,15],a51:9,taken:8,mustraincoeff:9,toggl:8,more:[2,5,6,10,8,12,13],flat:[10,7],desir:10,line:[1,2,3,9,8],probabilist:10,flag:[13,2,10,9],stick:[13,2,3,9],"0x203b6b0":[],particular:[6,13],known:6,cach:9,sgpolar:9,none:[0,1,2,3,5,6,7,8,9,10,12,13,15],dep:0,der:13,outlin:13,ifq:10,mt2text:9,remain:15,adjhklmax:10,scherrer:13,"0x17cc09f0":[],gettofbetaderiv:10,exportphasetext:2,def:[],deg:[10,7],prompt:[12,8],okbutton:2,scan:[1,9,8,4],"0x1d7abf0":[],gethistogramnam:[6,15],share:5,accept:[9,10,8],"0x1d7ad30":[],"0x235d2b0":[],onleave1:[],"0x1e5cef0":[],setversionnumb:9,refinepeaksz:14,"0xca956b0":[],hapvari:15,newlin:8,divid:5,rather:[1,3,8,5],anoth:[11,5,12,8],camerapo:13,getmass:10,spreadsheet:[4,2],divis:8,makeidealr:0,reject:0,acta:9,csv:2,simpl:[4,2,3,11,8,9],getmar345data:8,resourc:1,referenc:14,algebra:[5,8],myhelp:8,ellipses:7,variant:13,capitalizt:9,reflect:[4,2,3,11,6,8,9,12,13,15],plane:7,cromer:9,"0x17d1a070":[],numb:2,setrigidbodymodel:15,loadparmdict:8,varianc:10,associ:[6,3,12,13,8],ysum:0,hfx:15,"short":[11,9,13],ani:[5,6,10,8,9,13,15],"0xc4ca8b0":[],caus:[5,9,10,15,8],"0x18a61a30":[],spheric:[13,9,15],txyz:10,hklf_readerclass:11,eventkei:3,"0x1e0b970":[],plotexposedimag:3,fft:7,held:5,thermal:[13,3],through:8,same:[1,2,5,6,10,8,9,12,13],"0xca96370":[],paramet:[0,1,2,3,4,5,6,7,8,9,10,12,13,15],softlink:1,latt:9,style:8,glide:[],onhelp:3,combobox:8,getpatterntreeitemid:8,ycalc:13,diffractomet:13,might:8,alter:10,"0x5e96db0":[],muiso:9,good:[13,10],"return":[10,1,2,5,6,7,8,9,13,15],uij2ueqv:9,rhombohedr:[9,13],exportselect:8,rwp:13,framework:13,gsasiipwdgui:[4,6,12],filedialog:8,onimageread:6,"0xca6e5f0":[],"0xc63d730":[],document:[4,13,8],"0x27b6670":[],"0xca6e7f0":[],showvalid:8,getxyzdist:10,ifd:8,getffc5:9,radian:10,ifb:9,importpowderreaderlist:6,found:[4,2,6,10,9,13,15],unicod:8,truncat:8,"0x1d7a570":[],harm:5,weight:[13,10,8],realli:9,ball:[13,3],lab6:9,rigidbodydict:15,energi:[9,10],beyond:10,todo:13,orient:[13,9,3,15],onaddphas:6,robert:[],invq:10,abl:[6,9],loop_:2,print:[2,5,15,10,8,9],iparm:7,"0xca6e830":[],evaluateexpress:8,"0x1d7a430":[],typehint:8,"0x5e96ef0":[],calc_rdsq:9,"0xca8db30":[],polyhedra:3,differ:[2,10,13,8],antialias:9,mmm:[9,13],quick:[2,8],setupexport:[],base:[9,12,8],ask:[6,8],closefil:8,applyrbmodelderv:15,cov_x:10,launch:1,omit:13,callaft:2,perhap:3,assign:[5,15,13,8],magformfactor:9,itemtext:8,"0x17d4a0f0":[],"0x5e96e30":[],upper:[10,8],default_dialog_styl:8,exchang:[],ncell:9,misc:[4,8],number:[7,5,6,10,8,9,13,15],extern:[4,2,5],done:[5,9,8],least:[1,7,15,10,9,13],checkellips:0,blank:[11,13,8],exp_readerclass:11,getallphasedata:15,miss:5,matric:[5,10],betwe:[],"0xca554f0":[],guess:[6,10],pm3m:[],g2export_pdb:[4,2],script:[1,4],criticalellips:9,interact:[12,8],lxsect:9,construct:10,pwdrdata:6,gpx:[13,11,6,15],getphasenam:15,scheme:9,store:[2,5,13,8,9,12],option:[1,2,3,5,6,10,8,9],relationship:[5,15,13],parm:[6,10,8],crystallograph:[9,10],"0x5feff30":[],selector:8,hapdict:15,part:[4,9,8,5],pname:15,"0x17d4a130":[],onrenamedata:6,normq:10,importphas:[11,6,8],std:10,brugger:9,kind:[3,8],datdata:15,tof:[6,3],remov:[0,5,15,14,10],shcoeff:10,"0x61448f0":[],horizont:8,tunit:10,"0x1e74170":[],dopeakfit:7,str:[2,3,5,6,7,8,9,13,15],foreground:9,onpatterntreeselchang:[6,12],"0x27280b0":[],comput:[1,4,5,15,10,8,9,13],"0xca6e730":[],gsasiigrid:[4,6,12,15,8],"0x2804830":[],indexpeak:14,histnam:8,packag:[4,3],gramschmidtortho:5,complet:[5,2,9],fast_sa:10,"0x195f1670":[],properli:8,bht:6,powderfxyesav:8,lib:13,self:[0,1,2,3,4,6,8,9],getnewcellparm:[15,13],also:[2,3,5,6,10,8,9,13,15],without:[9,8],build:[5,9],jacobian:[5,15,10],maintain:12,updatepdfgrid:12,parms2:10,exportbaseclass:[2,8],distribut:[4,9,3],updatepwhkplot:8,exportdatacif:2,grassman:10,previou:[12,9,10],reach:10,mixtur:9,font_siz:9,amat:[9,10],plai:13,updatestressstrain:12,ccd:[1,4],maco:1,alpha:[9,13,8],seqdata:3,"0x20d50f0":[],charg:[2,13],g23:9,"0xca8bb70":[],readerobject:6,clear:[5,2,3,6],seqrefin:15,dictat:8,"0xca6e670":[],momtyp:7,clean:9,azimuth:[0,13,3,7],pars:11,initexport:[2,8],seqresult:15,"0x234a670":[],sgerror:9,humid:13,"0x17d180f0":[],multiintegerdialog:12,downdat:8,"0x17d4a1b0":[],azmuth:9,cifphaseread:11,"0x234a7b0":[],distanc:[2,7,13,10,8,15],"0x1f570f0":[],g2export_exampl:[4,2],"0x18a610b0":[],swapcolumn:[],onfileopen:6,find:[1,9,10,5],npsind:7,test4:9,penalti:[1,10],access:[1,9,3,8],copyright:15,pmmm:[],pycifrw:[11,2,8],solut:10,g2sfact:[4,11],templat:2,factor:[3,11,6,7,8,9,13,15],"0x17d18030":[],getrestpolefig:10,"0x1f3df30":[],unus:6,"0x195f17b0":[],disagltor:15,make2thetaazimuthmap:0,hid:13,getselect:8,"0x5d22b70":[],monoclin:[9,13],initvar:5,centcheck:9,hklfdata:6,getkcl:9,"0x5d22d70":[],oneonli:12,coord:9,"0x17d16fb0":[],statist:8,a2invcel:9,"0x61449b0":[],iflmn:9,arr:[],set:[1,2,5,6,10,8,9,12,11,13],"0xc6346f0":[],tree:[1,3,4,6,8,12,13],pid:[13,10],testvalid:8,see:[1,2,5,15,10,8,9,13],sec:9,arg:[13,10,8],uiso:13,close:[6,8],sel:[],contour:3,icalc:13,baldwin:1,someth:[0,9],onimportsfact:6,"0xca956f0":[],"0x5b452b0":[],smallest:10,asciivalid:8,gener:[1,3,5,15,10,9,12,13],getrigidbodymodel:15,altern:[13,8],"0x1e15530":[],rd_list:6,showhydrogen:13,"0x20d5970":[],rbtype:[3,10],matplotlib:[4,3],"31m":[9,13],eponym:8,extractfilefromzip:8,both:[5,9,8],last:[1,6,10,8,9,13,15],delimit:9,confirmread:8,arraylist:5,nonstandard_sglist:[],"0x1e74070":[],gethistogramdata:15,"0x202a4b0":[],sginv:[9,13],pdf:[2,3,6,7,8,12],"0x5f7b7f0":[],whole:9,pdb:[11,4,2,8],"0x1e50370":[],load:[13,2,9,15,8],getcsxinel:9,symopdialog:8,simpli:5,point:[13,9,10,15],schedul:10,"0x17d181b0":[],"0x1e155f0":[],blockselector:8,residu:10,header:[2,8],getimgdata:8,param:7,suppli:[1,6,8,5],svnupdatedir:9,along:[15,13],elemposit:9,exportpowderrefltext:2,contraint:5,cellabsorpt:9,updatephasedata:12,devic:9,empti:[5,6,9,8],m_n:[],waasmaier:9,"0x195f1630":[],seqsig:3,"0x28049f0":[],"0xca8dc30":[],flight:13,imag:[0,4,2,3,6,8,9,12],"0x6144870":[],"0x279ecb0":[],coordin:[4,2,3,11,15,10,8,9,13],gam:[9,7,13],"0x5b454f0":[],"0xca8cc30":[],dolayout:2,convers:9,exportsimplecif:[],gethklmax:9,a_1:[],"0xc6396b0":[],"while":[5,2,8],abov:[5,8],error:[5,6,10,8,9,15],"0xca8baf0":[],gettth:0,plotsngl:3,getpowderiparm:6,loop:[2,10,15],g2pwd_gpx:[4,11],fillatomlookup:10,centr:8,von:1,echelon:[],itself:[11,10],uiso2uij:9,g2multichoicedialog:8,"0x1e748b0":[],previousinvalid:8,plotintegr:3,irrelev:9,minim:[6,10],shorten:8,eleterm:9,shorter:8,applyxyzshift:[15,13],hester:[11,8],editciftempl:2,"0x6c91df0":[],singlefloatdialog:8,neutron:[9,13],"0x28048b0":[],setvaryflag:5,optim:[10,9,7],restraint:[4,15,12,13],histlist:13,"0x1e74230":[],covari:[4,15,10,13,8],user:[6,9,8],"0xc60a870":[],viewparmdialog:6,chang:[2,11,13,10,8,9,5],getusedhistogramsandphasesfromtre:[6,13],lower:[10,8],hexagon:[9,13],equival:[13,5,9,10,15],"12346e7":10,entri:[2,5,15,10,8,9,12,13],restraintdict:15,pickl:[2,8],"0x209eaf0":9,"0x2734c70":[],textctrl:[2,8],gettextel:9,explan:13,a_5:[],a_4:[],a_3:[],a_2:[],"0xca553b0":[],a_0:[],getfilelist:6,"0x2804870":[],gsasiiconstrgui:[4,12],shape:7,covmatrix:[5,13,10,8],uij2betaij:9,instbank:6,initcontrol:8,"0xca55570":[],getintensitycorr:15,"0xca55370":[],tell:8,subsequ:8,slave:5,approxim:[9,10],float32:[],ellipsesizederv:7,contentsvalid:8,ight:[],obsolet:2,format:[2,11,6,10,8,9,13],"0x2728130":[],getatomcoordsbyid:10,sgtext:9,ellist:[9,7],getimagedata:8,macromolecular:[4,2,8],bit:14,getabsorb:15,onhelpbyid:8,sizer:8,randomq:10,docutil:[],whitespac:8,zclip:13,collect:13,"boolean":9,valenc:9,strsta:0,encount:10,constr1:5,constr2:5,some:[0,5,15,10,8,9,12],back:9,"0x234a8b0":[],wxpython:[4,8],sampl:[0,7,6,10,9,12,13],multipleselect:8,computedepesd:5,macopenfil:6,pyopengl:4,gltext:[4,9],scale:[0,10,5,6,7,9,13],t_n:[],"0x202a1f0":[],calcpdf:7,though:10,per:13,larg:[15,8],"0x6c91c70":[],necessari:9,plotimag:3,gsasiiphsgui:[4,12],prob:9,run:[1,6,8,13,5],perpendicular:13,samang:9,step:[13,7],output:[2,5,15,10,8,9],invarraylist:5,getpowderpeak:8,"0xca8ab70":[],constraint:[4,5,6,8,12,13,15],imagefil:8,materi:9,lieberman:9,"0x5ea98f0":[],"0xb931e70":[],"0x20d50b0":[],"_d_1":2,"0x17cc0970":[],updatenotebook:8,"2g_":[],gamma:[9,13,8],reduct:1,cutoff:[9,10],"_d_3":2,rho:10,"0x5d501b0":[],getdetectorxi:0,getffvalu:9,"0xca552f0":[],keystrok:[3,8],textureindex:9,setnewphas:8,groupconstraint:5,badvalu:7,npcosd:7,span:[],getdmax:14,apprevi:8,fast:[10,8],custom:8,"0xca8cbb0":[],perp:0,includ:[1,2,4,13,10,8,9,14],printdistangl:15,"0x17d493b0":[],"0x5d50170":[],"0x1e15630":[],iflist:9,pwr:14,transfertowindow:8,"0xca8cb30":[],"0xc92aa30":[],sthl2:7,translat:[9,10],atom:[4,2,15,10,8,9,13],newatomdict:[15,13,8],info:[13,9,3,15,8],dfdvdict:15,cia:13,cif:[11,4,2,13,8],consist:[13,5,9,15,8],caller:12,"0x17d1ac30":[],disaglctl:15,getatomitemsbyid:10,"0xca8bc70":[],indexpeaklistsav:8,similar:8,"0x20d51b0":[],"0xca955b0":[],retriev:[2,10,9],g2export_imag:[4,2],projfilesav:8,"0xca95370":[],doesn:9,exportphasecartxyz:2,"0x1e504f0":[],exportpowdertext:2,jmin:10,g2phase:[11,4,8],showcontrol:15,polygon:3,updateparamet:8,titl:[13,2,12,6,8],sequenti:[5,6,8],"0x9fabc70":[],"0x180522b0":[],nam:5,bmat:10,addmpl:3,angstrom:13,getdens:10,gettexture_s:9,"0x2734cb0":[],asymmetr:13,nice:9,checkinput:8,draw:[4,9,10,13,8],"0x17d494b0":[],elementt:[4,9],g2frame:[2,3,12,8],"0x27b66b0":[],f000x:13,gsasiitoolbar:3,readcif:8,eval:10,plotcanva:3,f000n:13,svn:9,algorithm:[9,10],getellips:0,textel:9,orbit:9,spcgroup:[13,9,15,8],fixeddict:5,"0x17e34830":[],dict2map:5,ypix:0,"0x1e5cf30":[],scroll:[2,8],x_new:10,code:[0,2,14,9,8],edf:8,edg:9,queri:10,broaden:[13,3],fprime:9,"0x21e7df0":[],"0x5d500f0":[],ellips:[0,3],pfx:[15,7],"0x17d4a2b0":[],"0x17d18230":[],showmod:8,elsewher:5,onimportgener:6,loadcifd:2,"0xc6056f0":[],"0x1d7aab0":[],opposit:9,powderfil:8,"0x1e73fb0":[],g2plotmpl:3,"0xc92abb0":[],cif_pd:2,"0x209e970":9,wave:[0,15,14,7,8],calczdiscosb:0,volum:[9,8],showabc:13,tri:6,cctbx:9,button:[2,6,8],shtxcal:15,"0xc92aaf0":[],"try":[10,8],"0x5d22cf0":[],"3x3":[9,13],getusedhistogramsandphas:15,errstr:9,"0x9fabc30":[],phasedata:15,pleas:[9,8],exportphasecsv:2,getfprim:15,"0xca954f0":[],memorydc:9,focu:[3,8],"0x5d22bb0":[],somedai:2,g2dict:2,"0x17d187f0":[],acid:9,carlo:13,click:12,append:8,compat:[11,6,8],index:[4,15,10,8,12,14,13],fitstrain:0,"0xc639770":[],onstartmask:3,cell:[4,15,10,8,9,12,14,13],experiment:10,onpagechang:3,gsasiistruct:6,journal:1,feval:10,sgdata_t:[],a2gmat:9,"0x202a230":[],sint:[11,8],"0x1e740f0":[],bodi:[15,3,12,13],let:10,hkl:[4,9,14,10,11],sind:8,sine:8,sinc:8,gsasiiio:[11,4,2,6,8],refldata:10,"0x17e346f0":[],onimportpowd:6,getpatterntreedatanam:8,larger:13,reus:2,ifcoup:9,addogl:3,sangl:9,getvcov:10,typic:8,phasenam:[15,3,12,8],maker:0,defaultnam:2,pxy:0,calibr:[4,9,3],"0x61447f0":[],appli:[1,5,15,10,8,9,13],app:[1,6,8],offset:[9,15],scalex:0,submodul:[4,15,12],api:4,dict2deriv:5,sgn:10,pxc:13,numer:[1,2,10],scalei:0,hess:[15,10],formulaev:8,"0x17d1a1f0":[],from:[0,1,2,3,4,5,6,10,8,9,12,11,13,14,15],zip:8,minval:8,shcoef:9,chi:[0,9,13],g2pwd_xye:[4,11],doubl:[],gsasiipwd:7,isotrop:[9,13],mydir:13,next:2,fitcircl:0,few:[],"0x17d18130":[],fep:10,save:[1,2,5,6,10,8,9,13],phasedict:13,wxwidget:9,gettofgamma:10,sort:[9,10],cif_templ:2,"0xbdfdb70":[],"0x234a7f0":[],getcellesd:15,fulldescr:13,gsasiidata:[4,9],trail:[10,8],iabsnt:9,calc_rdsq2:9,"0xca964f0":[],"0x195f15f0":[],augment:10,"0x7b26ef0":[],extradoc:7,"0xca962f0":[],thin:8,assum:[1,6,3,9],meet:10,scatter:[4,9,7,13,8],control:[0,2,6,7,8,12,13,14,15],enthought:4,"0x279ec70":[],printrestraint:15,"0xc92ab70":[],process:[5,9,12,8],tax:3,taz:3,slit:13,chisq:13,htype:15,tab:[3,12,8],tam:0,xmin:10,multiplechoicesdialog:8,tan:[10,8],updateindexpeaksgrid:12,tai:3,revstr:9,notblank:8,surfac:[0,9,10],fm3m:[],dpdpola:7,"0x203b670":[],six:[15,8],occur:2,brian:[],sig:[11,15,7,13,8],getbackupnam:15,getpreforiderv:15,backcolor:13,sij:7,"0x20d5130":[],sin:[9,7,8],express:[5,8],frac:[],"0x209e9b0":9,overridden:8,singular:[5,10],gsasiimath:[4,10],prelbl:8,g2plot3d:3,notebook:[1,3,12,8],inst:7,ranfunc:14,getdescr:13,fitr:0,genhbravai:9,getindependentvar:5,"0x17d18fb0":[],"0x17e34870":[],"0x9fabcf0":[],getpowderprofil:15,correspond:[1,5,15,7,8,9],element:[4,13,7,8,9,12],lam2:13,allop:9,lam1:13,"0x279ea70":[],allow:[2,5,6,7,8,9],"0x1e15770":[],asc:9,xyzequiv:9,"0x1d7a1b0":[],newcelldict:[13,8],"0x1f57130":[],hx2rh:9,itemloc:10,"0x17e364b0":[],move:[9,12,8],gettofsigderiv:10,"0x5e96d70":[],comma:2,"0xca8bcb0":[],"0x17cc0ab0":[],fwhm:13,formatconstraint:[],outer:[15,10,13],"0xca8aaf0":[],chosen:[3,8],"0x17d1a0b0":[],getdependentvar:5,uijtou6:9,friedel:9,penaltyfxn:15,texture_s:9,"0x5d50130":[],scextinct:15,greater:[9,10],onseqrefin:6,overal:[13,8],rowechelon:[],norm_gen:7,dat:[1,9],"0xc634770":[],covvari:13,shtxcalderv:15,mustrainnam:9,bar:[1,2],diagon:[9,13],distangl:[],nfb:9,nfa:9,"0x17e34770":[],"0x7b26fb0":[],halfcel:14,paramprefix:5,setdefaultsampl:12,"0x9f9ccf0":[],cagliotti:13,mode:[2,9,15,8],independentvar:5,lorentzian:13,getdistsig:10,"0x17cc0af0":[],multipleblockselector:8,product:10,pixlimit:9,sortarrai:10,setbackgroundparm:7,"0x1e5ceb0":[],"0x202a2f0":[],our:9,onpwdrsum:6,gsnotebook:8,getmagformfaccoeff:9,"3mr":[9,13],special:[2,13],out:[11,5,2,15,8],variabl:[4,2,5,15,10,8,13],p4mmm:9,matrix:[0,15,10,8,9,13],importsfactreaderlist:6,origatom:15,waal:13,stub:9,polfcal:9,mustrain:[9,3],rel:[1,10,5],lattic:[9,13],dblk:2,ref:[15,7,13],ran2axi:14,insid:9,atomuij2tl:10,font:9,dictionari:[10,2,5,6,7,8,9,12,13,15],usual:[0,2,10,15,8],releas:9,singlestringdialog:8,dmax:14,valesd:10,byteord:8,sgsy:[9,13],"0x5b45370":[],could:[6,9],put:[9,15,8],snt:13,keep:8,length:[9,10,13,8],"0xc4ca7f0":[],drawxtl:2,"0x279ebf0":[],geometri:7,retain:8,choicelist:8,usebestvisu:6,pwdr:[15,12,13,8],"0x20d51f0":[],softwar:[9,8],"0x1e0b930":[],edgefind:0,"0xc629730":[],merg:[1,9],hex:9,cmmm:[],constrdict:5,list1:8,scene:9,q2mat:10,date:[11,9],"0xca96330":[],imagelocalmax:0,owner:9,onreadpowderpeak:6,unknown:9,licens:9,"0x5b45570":[],messag:[2,6,15,9],attach:8,"0xb931c70":[],appl:[7,8],arrayin:5,disagldata:15,hkld:9,"final":[5,10],inner:[13,9,10,15],storeequival:5,shell:8,"0x2734bf0":[],vcov:10,"0xc4ca870":[],cyc:10,thresh:7,shelx:2,rst:[],copybutton:8,ierr:9,uniquecombin:9,stringopsprod:9,"0xca6e7b0":[],plotnotebook:1,structur:[1,2,3,4,11,6,10,8,13,15],charact:[9,13,8],"0x17d49370":[],sens:2,bind:[9,13,8],ranid:13,bet:7,exp:[11,4,10,8],concatin:15,clip:13,marfram:8,gsasiiobj:[4,13],getpawleyconstr:15,ballscal:13,have:[1,9,8,13,5],tabl:[4,5,6,10,8,9,12,11],need:[0,4,2,3,6,7,8,9,12,13,14,15],getpowderprofilederv:15,hessian:[15,10,13],getfcjvoigt:7,"0x5bda570":9,min:[10,8],gsasii:[1,4,6,7,8,9,12,15],"0x5d22cb0":[],mix:5,discret:10,which:[10,2,3,5,6,7,8,9,12,11,13,15],onmakepdf:6,detector:[1,3,7,8],singl:[4,2,3,5,6,8,11,13,15],textur:[13,9,15],unless:[2,13,8],"0xca8db70":[],maxcyc:10,vdwradii:13,eltabl:9,"0x18a61130":[],pyc:13,pyd:9,why:6,g2pwd_fxye:[4,11],imagecalibr:[0,4,9],placement:13,url:8,retval:10,request:[2,3,8],indx:[14,10],"0x5bda5b0":9,face:9,powderdict:8,determin:[2,3,11,15,8,9,5,13],printal:5,constrain:5,rotdmat:9,datafram:8,gsasiielem:[4,9],text_el:9,"0x1e74030":[],text:[9,4,2,6,8],filetyp:6,"0x2376530":[],loadid:13,"0x1d7a870":[],"0x17e347b0":[],"0xca8cab0":[],"0xca554b0":[],varnam:13,redirect:6,locat:[1,4,13,10,8,9],rbdata:[3,10],"0x2821430":[],setdatamenubar:8,should:[1,2,5,6,10,8,9,11,13,15],dict2valu:[15,7],"0x5e96eb0":[],fillarrai:[],gsasiistrmath:[4,15,13],anneal:[13,10],local:[1,2,9],hope:[9,8],fithklz:14,usefit:10,count:[9,15],sgop:[9,13],xsum:0,pull:[11,13],convert:[11,5,9,10,8],"0xb931df0":[],showbann:15,hklf2_readerclass:11,askfil:8,"0x279eb30":[],beam:[0,13],indparmlist:5,"0x18a610f0":[],increas:[9,10,13,8],"0x209eb70":9,fox:2,enabl:[2,8],possibl:[2,11,13,10,8,9,5],"0x195f1830":[],offsetlist:9,previparm:6,gram:5,contain:[2,3,5,6,7,8,9,11,13,15],constdict:15,shl:7,dpi:[1,3],view:[6,13],constlist:15,penaltyderiv:15,gethstrainshift:15,importmenuid:6,frame:[2,3,12,6,8],accord:[13,2,9],exportsingletext:2,"0xc605730":[],powder:[1,2,3,4,11,6,7,8,9,12,13],dopawlei:13,dlg:[10,15,14,7,8],correctli:[7,8],record:[4,13],sgdata:[7,13,10,8,9,15],pattern:[4,13,3,12,8],picklecifdict:2,written:[2,9,15,8],setpeakparm:10,theta:[0,9,3,7,13],speed:9,getwav:10,pawleylookup:15,xrang:10,kei:[2,7,5,15,10,8,9,13],updatereflectiongrid:12,zstep:13,entir:[2,15,8],onimportphas:6,"0x1e741b0":[],"2pi":10,kev:9,deletedata:6,"0xca8bb30":[],depthfog:13,addit:[5,2,9,8],goal:10,canopi:4,fitdetector:0,equal:5,len:[],etc:[0,1,2,3,10,15,7,8,9],instanc:3,equat:[5,13],viewdir:13,onfileclos:6,rama:3,"0x27280f0":[],getrestraint:15,n_ob:[],"0x17d4a1f0":[],"0x17d1aab0":[],svnupdateprocess:9,indici:8,fillgmat:9,getfcjvoigt3:7,"0x5ea9930":[],"__future__":8,respect:[11,15,10,8],clearsigint:6,showstringvalid:8,torsion:[3,10],quit:6,imageintegr:0,cent:9,childrenless:8,compon:8,treat:[11,6,8],"0x17d18070":[],mult2:[5,13],mult1:[5,13],immedi:10,"0xca953b0":[],"0x195f17f0":[],presenc:8,kirfel:9,crsang:9,"0x234a6b0":[],opnum:9,togeth:6,sigdict:[5,15,8],"0x18a611b0":[],"0x1e747f0":[],present:[1,2,5,6,8,9],input:[1,5,6,10,8,12,15],multi:11,"0x5d22d30":[],"0x18a618b0":[],gethklpeak:7,onpatterntreekeydown:6,getdepsvoigt:7,pixel:9,defin:[0,2,5,6,10,8,9,12,11,13,15],sgtextlist:9,"0xca8dbb0":[],observ:[1,13],"0x6c91bf0":[],validatedtxtctrl:[2,8],calc_v:9,mz2:5,almost:8,"0x6c91d30":[],"0x5ff4370":[],site:[9,13,8],archiv:8,refl:15,revis:[9,8],"0xca8caf0":[],"0x18a61170":[],ramachandrandist:9,urlorfil:8,gsasiimain:6,getdatsig:10,histonam:12,cross:9,sqrt:[10,7,8],python:[1,2,4,13,8,9],pickid:8,largest:[9,10],cif2dict:2,"0x1f3df70":[],phi:[0,10,9,7,13],orbnam:9,"0x20d5930":[],context:9,cubic:[9,13],absorb:7,effect:5,ion:9,plottors:3,nob:[13,10],atommass:13,"0xca8ac30":[],suchomel:1,iob:13,expand:[13,6,9,8],uncertainti:[5,15,10,13,8],absorbderv:7,center:[13,9,15],"0x234a730":[],colour:9,well:[5,6,9,8],cifdefhelp:2,likewis:5,exampl:[4,2,10,9,8],command:8,"0x5f7b7b0":[],sglaue:[9,10,15],setphasedata:15,"0x5feffb0":[],hessrefin:15,latest:9,test1:[9,8],test0:9,mfb:9,test2:[9,8],test5:9,rotorthoa:14,test7:9,less:[9,10,8],test9:9,calcramaenergi:10,glut:9,nval:9,obtain:[4,6,10,9,8],readpowderiparm:6,a2cel:9,getconstraint:15,resize_bord:8,g2export_cif:[4,2],"0xca8bbf0":[],adv:0,web:8,varynam:10,adp:13,cellvari:15,drawback:9,updaterbuij:10,add:[9,2,3,6,8],getfwhm:7,"0x28049b0":[],onhelpabout:8,densiti:[2,10],lookup:[2,9],"0x1960a230":[],"0x1e15570":[],match:[1,6,10,13,8],"0x5ff43b0":[],samsym:[9,10],onpatterntreeitemexpand:6,exportmapccp4:2,press:[2,3,8],updatemcsaxyz:10,height:[10,13,7],makequat:10,python2:13,loss:8,sizev:8,updatecontrol:8,like:[6,10,9],lost:8,trigon:[9,13],bravai:[9,14],xydata:7,edit:[13,2,6,8],"0xca8bab0":[],"0x61448b0":[],gsasiiimggui:[4,12],lose:9,"0x17d181f0":[],resiz:6,sizeh:13,uijequiv:9,displacex:13,drop:6,"0x195f1730":[],polar:[9,7,13],"0x6c91cb0":[],settext:9,postion:13,"0xca952b0":[],"export":[4,2,8],updateddata:12,proper:9,gsasiistrmain:[1,15,4],librari:[4,9,13],polariz:13,"0x209ea70":9,sampleparm:3,"0x195f1770":[],full_output:10,lead:8,powderdata:8,instfil:6,jephcoat:[13,7],getpeakprofil:7,estim:10,overlai:9,fixval:9,newfil:2,g2plotnotebook:3,cifentrywidget:2,snc:13,fouriermap:10,"0x1e50530":[],imaginari:9,"0x17cc09b0":[],els:[9,15],zsum:0,cryst:[9,7],"0xc63d6b0":[],"0xc60a830":[],parentid:8,dct:[2,8],lorenzian:13,genhlau:9,setusedhistogramsandphas:15,about:[0,2,10,9,8],column:[9,8],freedom:5,http:[4,5],odf:9,"0x209eab0":9,learn_rat:10,you:[9,10],fals:[10,2,3,5,6,7,8,9,12,13,15],atomnum:13,cif_cor:2,disabl:[2,8],rotaterbxyz:10,own:13,calcfij:0,"0x17d1a230":[],"0xca965f0":[],getasfmean:7,automat:[6,8],dataset:[11,6],nkeep:5,"0x1e156f0":[],"0x180522f0":[],waterfal:3,onpatterntreeitemdelet:6,leverag:13,getdetxyfromthazm:0,van:13,val:[13,8],getnxupqsym:9,m3m:[9,13],texturedata:15,"0x17cc0b70":[],gsas_readerclass:11,"3m1":[9,13],trigger:2,"0xca55330":[],"0x17cc0b30":[],"var":[5,13],newimag:3,"0x28048f0":[],"function":[4,2,3,10,15,7,8,9,12,13],getdistderv:10,"0x2728170":[],subdirectori:9,unexpect:5,eac:8,processconstraint:15,"0x27281f0":[],continu:[10,8],scatfac:9,bltabl:9,highest:[9,13],loc:8,leastsq:[15,7,8],"0x5b455b0":[],made:[2,15],bondlist:13,whether:10,flip:[2,13],"0x1eb4ab0":[],directori:[13,1,2,9,8],below:[13,9,10,15,8],limit:[2,7,6,10,8,12,13],otherwis:[13,2,9,8],problem:[5,10,8],"0x6144830":[],whichsvn:9,instead:[9,8],reciproc:[13,9,15],evalu:[10,8],"int":[0,2,10,6,7,8,9,12,13,15],calccontrol:15,dure:9,filenam:[2,6,8],pix:0,nfc:9,implement:[2,11,13,10,8,5],"0x27b66f0":[],ceo2:9,ind:10,"0xca6e770":[],fjac:10,probabl:[9,13,8],getatomxyz:10,"0x234a870":[],sglatt:[9,13],collabel:8,detail:[5,9,13,11],calcincid:7,importpowderdata:[11,6,8],readmarccdfram:[4,8],other:[2,5,6,10,8,9,12,13],bool:[2,6,10,8,9,13,15],futur:[6,7,8],varieti:[11,8],most:[2,13],xye_readerclass:11,hacker:9,repeat:[9,8],my1:5,refldict:10,cauchi:[13,10],ndarrai:10,getresttors:10,sytsym:9,quaternion:[13,10],patch:9,"0x5ea98b0":[],inhalesdelpi:9,"0x203b5f0":[],scrolledmultieditor:8,collist:[],scientif:8,"0x235d270":[],overallparm:8,importbaseclass:8,"0xb931e30":[],myhtmlpanel:8,esd:[5,10,8],onchar:8,rbid:15},objtypes:{"0":"py:module","1":"py:attribute","2":"py:function","3":"py:method","4":"py:class","5":"py:data"},titles:["<em>GSASIIimage: Image calc module</em>","<em>GSAS-II Scripts</em>","<em>GSAS-II Export Modules</em>","<em>GSASIIplot: plotting routines</em>","GSAS-II Developer’s Documentation","<em>GSASIImapvars: Parameter constraints</em>","<em>GSAS-II Main Module</em>","<em>GSASII powder calculation module</em>","<em>GSAS-II GUI Routines</em>","<em>GSAS-II Utility Modules</em>","<em>GSASIImath: computation module</em>","<em>GSAS-II Import Modules</em>","<em>GSAS-II GUI Submodules</em>","<em>GSASIIobj: Data objects</em>","<em>GSASIIindex: Cell Indexing Module</em>","<em>GSAS-II Structure Submodules</em>"],objnames:{"0":["py","module","Python module"],"1":["py","attribute","Python attribute"],"2":["py","function","Python function"],"3":["py","method","Python method"],"4":["py","class","Python class"],"5":["py","data","Python data"]},filenames:["GSASIIimage","GSASIIscripts","exports","GSASIIplot","index","GSASIImapvars","GSASII","GSASIIpwd","GSASIIGUIr","GSASIIutil","GSASIImath","imports","GSASIIGUI","GSASIIobj","GSASIIindex","GSASIIstruc"]}) -
trunk/sphinxdocs/find_undoc.py
r1112 r1123 22 22 23 23 # loop over python files referenced in subversion 24 proc = sp.Popen(["svn","list",os.path.join(loc,'..')],stdout=sp.PIPE) 24 proc = sp.Popen(["svn","list", 25 os.path.join(loc,'..'), 26 os.path.join(loc,'..','exports'), 27 os.path.join(loc,'..','imports'), 28 ],stdout=sp.PIPE) 25 29 undoc = [] 26 30 for fil in proc.stdout.readlines(): -
trunk/sphinxdocs/source/conf.py
r957 r1123 17 17 # documentation root, use os.path.abspath to make it absolute, like shown here. 18 18 #sys.path.insert(0, os.path.abspath('.')) 19 printos.path.abspath(os.path.join('..', '..'))19 os.path.abspath(os.path.join('..', '..')) 20 20 sys.path.insert(0, os.path.abspath(os.path.join('..', '..'))) 21 sys.path.insert(1, os.path.abspath(os.path.join('..', '..','exports'))) 22 sys.path.insert(1, os.path.abspath(os.path.join('..', '..','imports'))) 21 23 22 24 # -- General configuration ----------------------------------------------------- -
trunk/sphinxdocs/source/index.rst
r1112 r1123 20 20 GSASIIpwd.rst 21 21 GSASIIscripts.rst 22 exports.rst 23 imports.rst 22 24 23 25 *Required packages*
Note: See TracChangeset
for help on using the changeset viewer.