Changeset 946


Ignore:
Timestamp:
Jun 11, 2013 10:08:43 AM (10 years ago)
Author:
toby
Message:

update self-docs, start work on constraints object

Location:
trunk
Files:
1 added
14 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIphsGUI.py

    r942 r946  
    1414Module to create the GUI for display of phase information
    1515in the data display window when a phase is selected.
    16 (pages displayed in response to some phase tabs are done in other modules,
    17 such as GSASIIddata.)
    18 
    19 Phase information is stored in the GSAS-II data tree as children of the
    20 Phases item in a dict with keys:
    21 
    22 .. tabularcolumns:: |l|l|p{4in}|
    23 
    24 ==========  ===============  ====================================================
    25   key         sub-key        explaination
    26 ==========  ===============  ====================================================
    27 General         \            Overall information for the phase (dict)
    28   \         AtomPtrs         ? (list)
    29   \         F000X            x-ray F(000) intensity (float)
    30   \         F000N            neutron F(000) intensity (float)
    31   \         Mydir            directory of current .gpx file (str)
    32   \         MCSA controls    ?
    33   \         Cell             List with 7 items: cell refinement flag (bool)
    34                              a, b, c, (Angstrom, float)
    35                              alpha, beta & gamma (degrees, float)
    36   \         Type             for now 'nuclear' (str)
    37   \         Map              dict of map parameters
    38   \         SH Texture       dict of spherical harmonic preferred orientation
    39                              parameters
    40   \         Isotope          dict of isotopes for each atom type
    41   \         Isotopes         dict of scattering lengths for each isotope
    42                              combination for each element in phase 
    43   \         Name             phase name (str)
    44   \         SGData           Space group details,
    45                              as defined in :mod:`GSASIIspc`
    46   \         Pawley neg wt    Restraint value for negative Pawley intensities
    47                              (float)
    48   \         Flip             Charge flip controls dict?
    49   \         Data plot type   ?
    50   \         Mass             Mass of unit cell contents in g/mm**3
    51   \         POhkl            March-Dollase preferred orientation direction
    52   \         Z                ?
    53   \         vdWRadii         ?
    54   \         Color            Colors for atoms (list of (r,b,g) triplets)
    55   \         AtomTypes        List of atom types
    56   \         AtomMass         List of masses for atoms
    57   \         doPawley         Flag for Pawley intensity extraction (bool)
    58   \         NoAtoms          Number of atoms per unit cell of each type (dict)
    59   \         Pawley dmin      maximum Q (as d-space) to use for Pawley
    60                              extraction (float)
    61   \         BondRadii        Radius for each atom used to compute
    62                              interatomic distances (list of floats)
    63   \         AngleRadii       Radius for each atom used to compute
    64                              interatomic angles (list of floats)
    65 ranId           \            unique random number Id for phase (int)
    66 pId             \            ? (int)
    67 Atoms           \            Atoms in phase as a list of lists. The outer list
    68                              is for each atom, the inner list contains 18
    69                              items:
    70                              0) atom label, 1) the atom type,
    71                              2) the refinement flags, 3-6) x, y, z, frac
    72                              7) site symmetry, 8) site multiplicity,
    73                              9) 'I' or 'A' for iso/anisotropic,
    74                              10) Uiso, 10-16) Uij, 16) unique Id #.
    75                              (list of lists)
    76 Drawing         \            Display parameters (dict)
    77 \           ballScale        Size of spheres in ball-and-stick display (float)
    78 \           bondList         dict with bonds
    79 \           contourLevel     ? (float)
    80 \           showABC          Flag to show view point triplet (bool). True=show.
    81 \           viewDir          cartesian viewing direction (np.array with three
    82                              elements)
    83 \           Zclip            clipping distance in A (float)
    84 \           backColor        background for plot as and R,G,B triplet
    85                              (default = [0, 0, 0], black).
    86                              (list with three atoms)
    87 \           selectedAtoms    List of selected atoms (list of int values)
    88 \           showRigidBodies  Flag to highlight rigid body placement
    89 \           sizeH            Size ratio for H atoms (float)
    90 \           bondRadius       Size of binds in A (float)
    91 \           atomPtrs         ? (list)
    92 \           viewPoint        list of lists. First item in list is [x,y,z]
    93                              in fractional coordinates for the center of
    94                              the plot. Second item ?.
    95 \           showHydrogen     Flag to control plotting of H atoms.
    96 \           unitCellBox      Flag to control display of the unit cell.
    97 \           ellipseProb      Probability limit for display of thermal
    98                              ellipsoids in % (float).
    99 \           vdwScale         Multiplier of van der Waals radius for
    100                              display of vdW spheres.
    101 \           Atoms            A list of lists with an entry for each atom
    102                              that is plotted.
    103 \           Zstep            Step to de/increase Z-clip (float)
    104 \           Quaternion       Viewing quaternion (4 element np.array)
    105 \           radiusFactor     Distance ratio for searching for bonds. ? Bonds
    106                              are located that are within r(Ra+Rb) and (Ra+Rb)/r
    107                              where Ra and Rb are the atomic radii.
    108 \           oldxy            ? (list with two floats)
    109 \           cameraPos        Viewing position in A for plot (float)
    110 \           depthFog         ? (bool)
    111 RBModels        \            Rigid body assignments (note Rigid body definitions
    112                              are stored in their own main top-level tree entry.)
    113 Pawley ref      \            Pawley reflections
    114 Histograms      \            A dict of dicts. The key for the outer dict is
    115                              the histograms tied to this phase. The inner
    116                              dict contains the combined phase/histogram
    117                              parameters for items such as scale factors,
    118                              size and strain parameters. (dict)
    119 MCSA            \            Monte-Carlo simulated annealing parameters
    120 ==========  ===============  ====================================================
     16Phase information is stored in one or more
     17:ref:`Phase Tree Item <Phase_table>` objects.
     18Note that there are functions
     19that respond to some tabs in the phase GUI in other modules
     20(such as GSASIIddata).
     21
    12122'''
    12223import wx
  • trunk/GSASIIspc.py

    r941 r946  
    44-------------------------------
    55
    6 Space group interpretation routines.
    7 
    8 Space groups are interpreted and the information is placed in a SGdata object,
    9 which is a dict with these keys:
    10 
    11 .. tabularcolumns:: |l|p{4.5in}|
    12 
    13 ==========  ====================================================
    14   key         explaination
    15 ==========  ====================================================
    16 SpGrp       space group symbol (str)
    17 Laue        one of the following 14 Laue classes:
    18             -1, 2/m, mmm, 4/m, 4/mmm, 3R,
    19             3mR, 3, 3m1, 31m, 6/m, 6/mmm, m3, m3m (str)
    20 SGInv       True if centrosymmetric, False if not (bool)
    21 SGLatt      Lattice centering type. Will be one of
    22             P, A, B, C, I, F, R (str)
    23 SGUniq      unique axis if monoclinic. Will be
    24             a, b, or c for monoclinic space groups.
    25             Will be blank for non-monoclinic. (str)
    26 SGCen       Symmetry cell centering vectors. A (n,3) np.array
    27             of centers. Will always have at least one row:
    28             ``np.array([[0, 0, 0]])``
    29 SGOps       symmetry operations as a list in form
    30             [[M1,T1],[M2,T2,...] where Mn is a 3x3 np.array
    31             and T is a length 3 np.array.
    32             Atom coordinates are transformed where the
    33             Asymmetric unit coordinates [X=(x,y,z)] are
    34             transformed using ``M*X+T ==> X'``
    35 SGSys       symmetry unit cell: type one of
    36             'triclinic', 'monoclinic', 'orthorhombic',
    37             'tetragonal', 'rhombohedral', 'trigonal',
    38             'hexagonal', 'cubic' (str)
    39 SGPolax     Axes for space group polarity. Will be one of
    40             '', 'x', 'y', 'x y', 'z', 'x z', 'y z',
    41             'xyz'. In the case where axes are arbitrary
    42             '111' is used (P 1, and ?).
    43 ==========  ====================================================
    44 
     6Space group interpretation routines. Note that space group information is
     7stored in a :ref:`Space Group (SGData)<SGData_table>` object.
    458
    469"""
     
    7033    :returns: (SGError,SGData)
    7134       * SGError = 0 for no errors; >0 for errors (see SGErrors below for details)
    72        * SGData - dictionary with entries:
     35       * SGData - is a dict (see :ref:`Space Group object<SGData_table>`) with entries:
    7336       
    74              * 'SpGrp': space group symbol slightly cleaned up
     37             * 'SpGrp': space group symbol, slightly cleaned up
    7538             * 'Laue':  one of '-1', '2/m', 'mmm', '4/m', '4/mmm', '3R',
    7639               '3mR', '3', '3m1', '31m', '6/m', '6/mmm', 'm3', 'm3m'
  • trunk/GSASIIstrIO.py

    r942 r946  
    142142   
    143143def GetRestraints(GPXfile):
    144     '''Read the restraints from the GPX file
     144    '''Read the restraints from the GPX file.
     145    Throws an exception if not found in the .GPX file
    145146    '''
    146147    fl = open(GPXfile,'rb')
  • trunk/GSASIIstrMain.py

    r939 r946  
    9393    except:
    9494        print ' *** ERROR - your constraints are internally inconsistent ***'
    95         errmsg, warnmsg = G2stIO.CheckConstraints(varylist,constrDict,fixedList)
     95        errmsg, warnmsg = G2stIO.CheckConstraints(varyList,constrDict,fixedList)
    9696        print 'Errors',errmsg
    9797        if warnmsg: print 'Warnings',warnmsg
  • trunk/exports/G2cif.py

    r941 r946  
    394394        # the export process starts here
    395395        self.loadTree()
     396        # ====== move this later ==================================================
     397        #for key in self.OverallParms['Covariance']:
     398        #    print key
     399        #    print type(self.OverallParms['Covariance'][key])
     400        sigDict = dict(zip(
     401            self.OverallParms['Covariance']['varyList'],
     402            self.OverallParms['Covariance']['sig'])
     403                       )
     404        # get restraint info
     405        #restraintDict = self.OverallParms.get('Restraints',{})
     406        for i in  self.OverallParms['Constraints']:
     407            print i
     408            for j in self.OverallParms['Constraints'][i]:
     409                print j
     410        return
     411        parmDict = {}
     412        #G2mv.InitVars()
     413        # do constraint processing
     414        #try:
     415        #    groups,parmlist = G2mv.GroupConstraints(constrDict)
     416        #    G2mv.GenerateConstraints(groups,parmlist,varyList,constrDict,fixedList)
     417        #except:
     418        #    import GSASIIstrIO as G2stIO
     419        #    print ' *** ERROR - your constraints are internally inconsistent ***'
     420        #    errmsg, warnmsg = G2stIO.CheckConstraints(varyList,constrDict,fixedList)
     421        #    print 'Errors',errmsg
     422        #    if warnmsg: print 'Warnings',warnmsg
     423        #    raise Exception(' *** CIF creation aborted ***')
     424       
     425        # add the uncertainties into the esd dictionary (sigDict)
     426        #sigDict.update(G2mv.ComputeDepESD(
     427        #    self.OverallParms['Covariance']['covMatrix'],
     428        #    self.OverallParms['Covariance']['varyList'],
     429        #    parmDict))
     430
     431        return
     432
    396433        self.CIFdate = dt.datetime.strftime(dt.datetime.now(),"%Y-%m-%dT%H:%M")
    397434        # count phases, powder and single crystal histograms
  • trunk/sphinxdocs/build/html/GSASIIGUI.html

    r941 r946  
    6161<p>Module to create the GUI for display of phase information
    6262in the data display window when a phase is selected.
    63 (pages displayed in response to some phase tabs are done in other modules,
    64 such as GSASIIddata.)</p>
    65 <p>Phase information is stored in the GSAS-II data tree as children of the
    66 Phases item in a dict with keys:</p>
    67 <table border="1" class="docutils">
    68 <colgroup>
    69 <col width="13%" />
    70 <col width="19%" />
    71 <col width="68%" />
    72 </colgroup>
    73 <thead valign="bottom">
    74 <tr class="row-odd"><th class="head">key</th>
    75 <th class="head">sub-key</th>
    76 <th class="head">explaination</th>
    77 </tr>
    78 </thead>
    79 <tbody valign="top">
    80 <tr class="row-even"><td>General</td>
    81 <td></td>
    82 <td>Overall information for the phase (dict)</td>
    83 </tr>
    84 <tr class="row-odd"><td></td>
    85 <td>AtomPtrs</td>
    86 <td>? (list)</td>
    87 </tr>
    88 <tr class="row-even"><td></td>
    89 <td>F000X</td>
    90 <td>x-ray F(000) intensity (float)</td>
    91 </tr>
    92 <tr class="row-odd"><td></td>
    93 <td>F000N</td>
    94 <td>neutron F(000) intensity (float)</td>
    95 </tr>
    96 <tr class="row-even"><td></td>
    97 <td>Mydir</td>
    98 <td>directory of current .gpx file (str)</td>
    99 </tr>
    100 <tr class="row-odd"><td></td>
    101 <td>MCSA controls</td>
    102 <td>?</td>
    103 </tr>
    104 <tr class="row-even"><td></td>
    105 <td>Cell</td>
    106 <td>List with 7 items: cell refinement flag (bool)
    107 a, b, c, (Angstrom, float)
    108 alpha, beta &amp; gamma (degrees, float)</td>
    109 </tr>
    110 <tr class="row-odd"><td></td>
    111 <td>Type</td>
    112 <td>for now &#8216;nuclear&#8217; (str)</td>
    113 </tr>
    114 <tr class="row-even"><td></td>
    115 <td>Map</td>
    116 <td>dict of map parameters</td>
    117 </tr>
    118 <tr class="row-odd"><td></td>
    119 <td>SH Texture</td>
    120 <td>dict of spherical harmonic preferred orientation
    121 parameters</td>
    122 </tr>
    123 <tr class="row-even"><td></td>
    124 <td>Isotope</td>
    125 <td>dict of isotopes for each atom type</td>
    126 </tr>
    127 <tr class="row-odd"><td></td>
    128 <td>Isotopes</td>
    129 <td>dict of scattering lengths for each isotope
    130 combination for each element in phase</td>
    131 </tr>
    132 <tr class="row-even"><td></td>
    133 <td>Name</td>
    134 <td>phase name (str)</td>
    135 </tr>
    136 <tr class="row-odd"><td></td>
    137 <td>SGData</td>
    138 <td>Space group details,
    139 as defined in <a class="reference internal" href="GSASIIutil.html#module-GSASIIspc" title="GSASIIspc"><tt class="xref py py-mod docutils literal"><span class="pre">GSASIIspc</span></tt></a></td>
    140 </tr>
    141 <tr class="row-even"><td></td>
    142 <td>Pawley neg wt</td>
    143 <td>Restraint value for negative Pawley intensities
    144 (float)</td>
    145 </tr>
    146 <tr class="row-odd"><td></td>
    147 <td>Flip</td>
    148 <td>Charge flip controls dict?</td>
    149 </tr>
    150 <tr class="row-even"><td></td>
    151 <td>Data plot type</td>
    152 <td>?</td>
    153 </tr>
    154 <tr class="row-odd"><td></td>
    155 <td>Mass</td>
    156 <td>Mass of unit cell contents in g/mm**3</td>
    157 </tr>
    158 <tr class="row-even"><td></td>
    159 <td>POhkl</td>
    160 <td>March-Dollase preferred orientation direction</td>
    161 </tr>
    162 <tr class="row-odd"><td></td>
    163 <td>Z</td>
    164 <td>?</td>
    165 </tr>
    166 <tr class="row-even"><td></td>
    167 <td>vdWRadii</td>
    168 <td>?</td>
    169 </tr>
    170 <tr class="row-odd"><td></td>
    171 <td>Color</td>
    172 <td>Colors for atoms (list of (r,b,g) triplets)</td>
    173 </tr>
    174 <tr class="row-even"><td></td>
    175 <td>AtomTypes</td>
    176 <td>List of atom types</td>
    177 </tr>
    178 <tr class="row-odd"><td></td>
    179 <td>AtomMass</td>
    180 <td>List of masses for atoms</td>
    181 </tr>
    182 <tr class="row-even"><td></td>
    183 <td>doPawley</td>
    184 <td>Flag for Pawley intensity extraction (bool)</td>
    185 </tr>
    186 <tr class="row-odd"><td></td>
    187 <td>NoAtoms</td>
    188 <td>Number of atoms per unit cell of each type (dict)</td>
    189 </tr>
    190 <tr class="row-even"><td></td>
    191 <td>Pawley dmin</td>
    192 <td>maximum Q (as d-space) to use for Pawley
    193 extraction (float)</td>
    194 </tr>
    195 <tr class="row-odd"><td></td>
    196 <td>BondRadii</td>
    197 <td>Radius for each atom used to compute
    198 interatomic distances (list of floats)</td>
    199 </tr>
    200 <tr class="row-even"><td></td>
    201 <td>AngleRadii</td>
    202 <td>Radius for each atom used to compute
    203 interatomic angles (list of floats)</td>
    204 </tr>
    205 <tr class="row-odd"><td>ranId</td>
    206 <td></td>
    207 <td>unique random number Id for phase (int)</td>
    208 </tr>
    209 <tr class="row-even"><td>pId</td>
    210 <td></td>
    211 <td>? (int)</td>
    212 </tr>
    213 <tr class="row-odd"><td>Atoms</td>
    214 <td></td>
    215 <td>Atoms in phase as a list of lists. The outer list
    216 is for each atom, the inner list contains 18
    217 items:
    218 0) atom label, 1) the atom type,
    219 2) the refinement flags, 3-6) x, y, z, frac
    220 7) site symmetry, 8) site multiplicity,
    221 9) &#8216;I&#8217; or &#8216;A&#8217; for iso/anisotropic,
    222 10) Uiso, 10-16) Uij, 16) unique Id #.
    223 (list of lists)</td>
    224 </tr>
    225 <tr class="row-even"><td>Drawing</td>
    226 <td></td>
    227 <td>Display parameters (dict)</td>
    228 </tr>
    229 <tr class="row-odd"><td></td>
    230 <td>ballScale</td>
    231 <td>Size of spheres in ball-and-stick display (float)</td>
    232 </tr>
    233 <tr class="row-even"><td></td>
    234 <td>bondList</td>
    235 <td>dict with bonds</td>
    236 </tr>
    237 <tr class="row-odd"><td></td>
    238 <td>contourLevel</td>
    239 <td>? (float)</td>
    240 </tr>
    241 <tr class="row-even"><td></td>
    242 <td>showABC</td>
    243 <td>Flag to show view point triplet (bool). True=show.</td>
    244 </tr>
    245 <tr class="row-odd"><td></td>
    246 <td>viewDir</td>
    247 <td>cartesian viewing direction (np.array with three
    248 elements)</td>
    249 </tr>
    250 <tr class="row-even"><td></td>
    251 <td>Zclip</td>
    252 <td>clipping distance in A (float)</td>
    253 </tr>
    254 <tr class="row-odd"><td></td>
    255 <td>backColor</td>
    256 <td>background for plot as and R,G,B triplet
    257 (default = [0, 0, 0], black).
    258 (list with three atoms)</td>
    259 </tr>
    260 <tr class="row-even"><td></td>
    261 <td>selectedAtoms</td>
    262 <td>List of selected atoms (list of int values)</td>
    263 </tr>
    264 <tr class="row-odd"><td></td>
    265 <td>showRigidBodies</td>
    266 <td>Flag to highlight rigid body placement</td>
    267 </tr>
    268 <tr class="row-even"><td></td>
    269 <td>sizeH</td>
    270 <td>Size ratio for H atoms (float)</td>
    271 </tr>
    272 <tr class="row-odd"><td></td>
    273 <td>bondRadius</td>
    274 <td>Size of binds in A (float)</td>
    275 </tr>
    276 <tr class="row-even"><td></td>
    277 <td>atomPtrs</td>
    278 <td>? (list)</td>
    279 </tr>
    280 <tr class="row-odd"><td></td>
    281 <td>viewPoint</td>
    282 <td>list of lists. First item in list is [x,y,z]
    283 in fractional coordinates for the center of
    284 the plot. Second item ?.</td>
    285 </tr>
    286 <tr class="row-even"><td></td>
    287 <td>showHydrogen</td>
    288 <td>Flag to control plotting of H atoms.</td>
    289 </tr>
    290 <tr class="row-odd"><td></td>
    291 <td>unitCellBox</td>
    292 <td>Flag to control display of the unit cell.</td>
    293 </tr>
    294 <tr class="row-even"><td></td>
    295 <td>ellipseProb</td>
    296 <td>Probability limit for display of thermal
    297 ellipsoids in % (float).</td>
    298 </tr>
    299 <tr class="row-odd"><td></td>
    300 <td>vdwScale</td>
    301 <td>Multiplier of van der Waals radius for
    302 display of vdW spheres.</td>
    303 </tr>
    304 <tr class="row-even"><td></td>
    305 <td>Atoms</td>
    306 <td>A list of lists with an entry for each atom
    307 that is plotted.</td>
    308 </tr>
    309 <tr class="row-odd"><td></td>
    310 <td>Zstep</td>
    311 <td>Step to de/increase Z-clip (float)</td>
    312 </tr>
    313 <tr class="row-even"><td></td>
    314 <td>Quaternion</td>
    315 <td>Viewing quaternion (4 element np.array)</td>
    316 </tr>
    317 <tr class="row-odd"><td></td>
    318 <td>radiusFactor</td>
    319 <td>Distance ratio for searching for bonds. ? Bonds
    320 are located that are within r(Ra+Rb) and (Ra+Rb)/r
    321 where Ra and Rb are the atomic radii.</td>
    322 </tr>
    323 <tr class="row-even"><td></td>
    324 <td>oldxy</td>
    325 <td>? (list with two floats)</td>
    326 </tr>
    327 <tr class="row-odd"><td></td>
    328 <td>cameraPos</td>
    329 <td>Viewing position in A for plot (float)</td>
    330 </tr>
    331 <tr class="row-even"><td></td>
    332 <td>depthFog</td>
    333 <td>? (bool)</td>
    334 </tr>
    335 <tr class="row-odd"><td>RBModels</td>
    336 <td></td>
    337 <td>Rigid body assignments (note Rigid body definitions
    338 are stored in their own main top-level tree entry.)</td>
    339 </tr>
    340 <tr class="row-even"><td>Pawley ref</td>
    341 <td></td>
    342 <td>Pawley reflections</td>
    343 </tr>
    344 <tr class="row-odd"><td>Histograms</td>
    345 <td></td>
    346 <td>A dict of dicts. The key for the outer dict is
    347 the histograms tied to this phase. The inner
    348 dict contains the combined phase/histogram
    349 parameters for items such as scale factors,
    350 size and strain parameters. (dict)</td>
    351 </tr>
    352 <tr class="row-even"><td>MCSA</td>
    353 <td></td>
    354 <td>Monte-Carlo simulated annealing parameters</td>
    355 </tr>
    356 </tbody>
    357 </table>
     63Phase information is stored in one or more
     64<a class="reference internal" href="GSASIIobj.html#phase-table"><em>Phase Tree Item</em></a> objects.
     65Note that there are functions
     66that respond to some tabs in the phase GUI in other modules
     67(such as GSASIIddata).</p>
    35868<dl class="function">
    35969<dt id="GSASIIphsGUI.UpdatePhaseData">
  • trunk/sphinxdocs/build/html/GSASIIstruc.html

    r939 r946  
    316316
    317317<dl class="function">
    318 <dt id="GSASIIstrMath.getBLvalues">
    319 <tt class="descclassname">GSASIIstrMath.</tt><tt class="descname">getBLvalues</tt><big>(</big><em>BLtables</em><big>)</big><a class="reference internal" href="_modules/GSASIIstrMath.html#getBLvalues"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIstrMath.getBLvalues" title="Permalink to this definition">¶</a></dt>
    320 <dd><p>Needs a doc string</p>
    321 </dd></dl>
    322 
    323 <dl class="function">
    324 <dt id="GSASIIstrMath.getFFvalues">
    325 <tt class="descclassname">GSASIIstrMath.</tt><tt class="descname">getFFvalues</tt><big>(</big><em>FFtables</em>, <em>SQ</em><big>)</big><a class="reference internal" href="_modules/GSASIIstrMath.html#getFFvalues"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIstrMath.getFFvalues" title="Permalink to this definition">¶</a></dt>
    326 <dd><p>Needs a doc string</p>
    327 </dd></dl>
    328 
    329 <dl class="function">
    330318<dt id="GSASIIstrMath.getPowderProfile">
    331319<tt class="descclassname">GSASIIstrMath.</tt><tt class="descname">getPowderProfile</tt><big>(</big><em>parmDict</em>, <em>x</em>, <em>varylist</em>, <em>Histogram</em>, <em>Phases</em>, <em>calcControls</em>, <em>pawleyLookup</em><big>)</big><a class="reference internal" href="_modules/GSASIIstrMath.html#getPowderProfile"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIstrMath.getPowderProfile" title="Permalink to this definition">¶</a></dt>
     
    404392
    405393<dl class="function">
    406 <dt id="GSASIIstrIO.GetBLtable">
    407 <tt class="descclassname">GSASIIstrIO.</tt><tt class="descname">GetBLtable</tt><big>(</big><em>General</em><big>)</big><a class="reference internal" href="_modules/GSASIIstrIO.html#GetBLtable"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIstrIO.GetBLtable" title="Permalink to this definition">¶</a></dt>
    408 <dd><p>returns a dictionary of neutron scattering length data for atom types &amp; isotopes found in General</p>
    409 <table class="docutils field-list" frame="void" rules="none">
    410 <col class="field-name" />
    411 <col class="field-body" />
    412 <tbody valign="top">
    413 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>General</strong> (<em>dict</em>) &#8211; dictionary of phase info.; includes AtomTypes &amp; Isotopes</td>
    414 </tr>
    415 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">BLtable, dictionary of scattering length data; key is atom type</td>
    416 </tr>
    417 </tbody>
    418 </table>
    419 </dd></dl>
    420 
    421 <dl class="function">
    422394<dt id="GSASIIstrIO.GetConstraints">
    423395<tt class="descclassname">GSASIIstrIO.</tt><tt class="descname">GetConstraints</tt><big>(</big><em>GPXfile</em><big>)</big><a class="reference internal" href="_modules/GSASIIstrIO.html#GetConstraints"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIstrIO.GetConstraints" title="Permalink to this definition">¶</a></dt>
     
    442414
    443415<dl class="function">
    444 <dt id="GSASIIstrIO.GetFFtable">
    445 <tt class="descclassname">GSASIIstrIO.</tt><tt class="descname">GetFFtable</tt><big>(</big><em>General</em><big>)</big><a class="reference internal" href="_modules/GSASIIstrIO.html#GetFFtable"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIstrIO.GetFFtable" title="Permalink to this definition">¶</a></dt>
    446 <dd><p>returns a dictionary of form factor data for atom types found in General</p>
    447 <table class="docutils field-list" frame="void" rules="none">
    448 <col class="field-name" />
    449 <col class="field-body" />
    450 <tbody valign="top">
    451 <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>General</strong> (<em>dict</em>) &#8211; dictionary of phase info.; includes AtomTypes</td>
    452 </tr>
    453 <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">FFtable, dictionary of form factor data; key is atom type</td>
    454 </tr>
    455 </tbody>
    456 </table>
    457 </dd></dl>
    458 
    459 <dl class="function">
    460416<dt id="GSASIIstrIO.GetFprime">
    461417<tt class="descclassname">GSASIIstrIO.</tt><tt class="descname">GetFprime</tt><big>(</big><em>controlDict</em>, <em>Histograms</em><big>)</big><a class="reference internal" href="_modules/GSASIIstrIO.html#GetFprime"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIstrIO.GetFprime" title="Permalink to this definition">¶</a></dt>
     
    548504<dt id="GSASIIstrIO.GetRestraints">
    549505<tt class="descclassname">GSASIIstrIO.</tt><tt class="descname">GetRestraints</tt><big>(</big><em>GPXfile</em><big>)</big><a class="reference internal" href="_modules/GSASIIstrIO.html#GetRestraints"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIstrIO.GetRestraints" title="Permalink to this definition">¶</a></dt>
    550 <dd><p>Read the restraints from the GPX file</p>
     506<dd><p>Read the restraints from the GPX file.
     507Throws an exception if not found in the .GPX file</p>
    551508</dd></dl>
    552509
  • trunk/sphinxdocs/build/html/GSASIIutil.html

    r941 r946  
    2828    <link rel="top" title="GSAS-II 0.2.0 documentation" href="index.html" />
    2929    <link rel="next" title="GSAS-II GUI Routines" href="GSASIIGUIr.html" />
    30     <link rel="prev" title="GSAS-II Main Module" href="GSASII.html" />
     30    <link rel="prev" title="GSASIIobj: Data objects" href="GSASIIobj.html" />
    3131  </head>
    3232  <body>
     
    4444             accesskey="N">next</a> |</li>
    4545        <li class="right" >
    46           <a href="GSASII.html" title="GSAS-II Main Module"
     46          <a href="GSASIIobj.html" title="GSASIIobj: Data objects"
    4747             accesskey="P">previous</a> |</li>
    4848        <li><a href="index.html">GSAS-II 0.2.0 documentation</a> &raquo;</li>
     
    274274
    275275<dl class="function">
     276<dt id="GSASIIElem.GetBLtable">
     277<tt class="descclassname">GSASIIElem.</tt><tt class="descname">GetBLtable</tt><big>(</big><em>General</em><big>)</big><a class="headerlink" href="#GSASIIElem.GetBLtable" title="Permalink to this definition">¶</a></dt>
     278<dd><p>returns a dictionary of neutron scattering length data for atom types &amp; isotopes found in General</p>
     279<table class="docutils field-list" frame="void" rules="none">
     280<col class="field-name" />
     281<col class="field-body" />
     282<tbody valign="top">
     283<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>General</strong> (<em>dict</em>) &#8211; dictionary of phase info.; includes AtomTypes &amp; Isotopes</td>
     284</tr>
     285<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">BLtable, dictionary of scattering length data; key is atom type</td>
     286</tr>
     287</tbody>
     288</table>
     289</dd></dl>
     290
     291<dl class="function">
    276292<dt id="GSASIIElem.GetFFC5">
    277293<tt class="descclassname">GSASIIElem.</tt><tt class="descname">GetFFC5</tt><big>(</big><em>ElSym</em><big>)</big><a class="reference internal" href="_modules/GSASIIElem.html#GetFFC5"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#GSASIIElem.GetFFC5" title="Permalink to this definition">¶</a></dt>
     
    284300</tr>
    285301<tr class="field-even field"><th class="field-name">Return El:</th><td class="field-body">dictionary with 5 term form factor &amp; compton coefficients</td>
     302</tr>
     303</tbody>
     304</table>
     305</dd></dl>
     306
     307<dl class="function">
     308<dt id="GSASIIElem.GetFFtable">
     309<tt class="descclassname">GSASIIElem.</tt><tt class="descname">GetFFtable</tt><big>(</big><em>atomTypes</em><big>)</big><a class="headerlink" href="#GSASIIElem.GetFFtable" title="Permalink to this definition">¶</a></dt>
     310<dd><p>returns a dictionary of form factor data for atom types found in atomTypes</p>
     311<table class="docutils field-list" frame="void" rules="none">
     312<col class="field-name" />
     313<col class="field-body" />
     314<tbody valign="top">
     315<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>atomTypes</strong> (<em>list</em>) &#8211; list of atom types</td>
     316</tr>
     317<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">FFtable, dictionary of form factor data; key is atom type</td>
    286318</tr>
    287319</tbody>
     
    388420</tbody>
    389421</table>
     422</dd></dl>
     423
     424<dl class="function">
     425<dt id="GSASIIElem.getBLvalues">
     426<tt class="descclassname">GSASIIElem.</tt><tt class="descname">getBLvalues</tt><big>(</big><em>BLtables</em><big>)</big><a class="headerlink" href="#GSASIIElem.getBLvalues" title="Permalink to this definition">¶</a></dt>
     427<dd><p>Needs a doc string</p>
     428</dd></dl>
     429
     430<dl class="function">
     431<dt id="GSASIIElem.getFFvalues">
     432<tt class="descclassname">GSASIIElem.</tt><tt class="descname">getFFvalues</tt><big>(</big><em>FFtables</em>, <em>SQ</em><big>)</big><a class="headerlink" href="#GSASIIElem.getFFvalues" title="Permalink to this definition">¶</a></dt>
     433<dd><p>Needs a doc string</p>
    390434</dd></dl>
    391435
     
    9991043<dl class="data">
    10001044<dt id="GSASIIlattice.selftestlist">
    1001 <tt class="descclassname">GSASIIlattice.</tt><tt class="descname">selftestlist</tt><em class="property"> = [&lt;function test0 at 0xc92aa30&gt;, &lt;function test1 at 0xc92aa70&gt;, &lt;function test2 at 0xc92aab0&gt;, &lt;function test3 at 0xc92aaf0&gt;, &lt;function test4 at 0xc92ab30&gt;, &lt;function test5 at 0xc92ab70&gt;, &lt;function test6 at 0xc92abb0&gt;, &lt;function test7 at 0xc92abf0&gt;, &lt;function test8 at 0xc92ac30&gt;, &lt;function test9 at 0xc92ac70&gt;]</em><a class="headerlink" href="#GSASIIlattice.selftestlist" title="Permalink to this definition">¶</a></dt>
     1045<tt class="descclassname">GSASIIlattice.</tt><tt class="descname">selftestlist</tt><em class="property"> = [&lt;function test0 at 0x17d4a070&gt;, &lt;function test1 at 0x17d4a0b0&gt;, &lt;function test2 at 0x17d4a0f0&gt;, &lt;function test3 at 0x17d4a130&gt;, &lt;function test4 at 0x17d4a170&gt;, &lt;function test5 at 0x17d4a1b0&gt;, &lt;function test6 at 0x17d4a1f0&gt;, &lt;function test7 at 0x17d4a230&gt;, &lt;function test8 at 0x17d4a270&gt;, &lt;function test9 at 0x17d4a2b0&gt;]</em><a class="headerlink" href="#GSASIIlattice.selftestlist" title="Permalink to this definition">¶</a></dt>
    10021046<dd><p>Defines a list of self-tests</p>
    10031047</dd></dl>
     
    10911135<span class="target" id="module-GSASIIspc"></span><div class="section" id="gsasiispc-space-group-module">
    10921136<h2><em>GSASIIspc: Space group module</em><a class="headerlink" href="#gsasiispc-space-group-module" title="Permalink to this headline">¶</a></h2>
    1093 <p>Space group interpretation routines.</p>
    1094 <p>Space groups are interpreted and the information is placed in a SGdata object,
    1095 which is a dict with these keys:</p>
    1096 <table border="1" class="docutils">
    1097 <colgroup>
    1098 <col width="16%" />
    1099 <col width="84%" />
    1100 </colgroup>
    1101 <thead valign="bottom">
    1102 <tr class="row-odd"><th class="head">key</th>
    1103 <th class="head">explaination</th>
    1104 </tr>
    1105 </thead>
    1106 <tbody valign="top">
    1107 <tr class="row-even"><td>SpGrp</td>
    1108 <td>space group symbol (str)</td>
    1109 </tr>
    1110 <tr class="row-odd"><td>Laue</td>
    1111 <td>one of the following 14 Laue classes:
    1112 -1, 2/m, mmm, 4/m, 4/mmm, 3R,
    1113 3mR, 3, 3m1, 31m, 6/m, 6/mmm, m3, m3m (str)</td>
    1114 </tr>
    1115 <tr class="row-even"><td>SGInv</td>
    1116 <td>True if centrosymmetric, False if not (bool)</td>
    1117 </tr>
    1118 <tr class="row-odd"><td>SGLatt</td>
    1119 <td>Lattice centering type. Will be one of
    1120 P, A, B, C, I, F, R (str)</td>
    1121 </tr>
    1122 <tr class="row-even"><td>SGUniq</td>
    1123 <td>unique axis if monoclinic. Will be
    1124 a, b, or c for monoclinic space groups.
    1125 Will be blank for non-monoclinic. (str)</td>
    1126 </tr>
    1127 <tr class="row-odd"><td>SGCen</td>
    1128 <td>Symmetry cell centering vectors. A (n,3) np.array
    1129 of centers. Will always have at least one row:
    1130 <tt class="docutils literal"><span class="pre">np.array([[0,</span> <span class="pre">0,</span> <span class="pre">0]])</span></tt></td>
    1131 </tr>
    1132 <tr class="row-even"><td>SGOps</td>
    1133 <td>symmetry operations as a list in form
    1134 [[M1,T1],[M2,T2,...] where Mn is a 3x3 np.array
    1135 and T is a length 3 np.array.
    1136 Atom coordinates are transformed where the
    1137 Asymmetric unit coordinates [X=(x,y,z)] are
    1138 transformed using <tt class="docutils literal"><span class="pre">M*X+T</span> <span class="pre">==&gt;</span> <span class="pre">X'</span></tt></td>
    1139 </tr>
    1140 <tr class="row-odd"><td>SGSys</td>
    1141 <td>symmetry unit cell: type one of
    1142 &#8216;triclinic&#8217;, &#8216;monoclinic&#8217;, &#8216;orthorhombic&#8217;,
    1143 &#8216;tetragonal&#8217;, &#8216;rhombohedral&#8217;, &#8216;trigonal&#8217;,
    1144 &#8216;hexagonal&#8217;, &#8216;cubic&#8217; (str)</td>
    1145 </tr>
    1146 <tr class="row-even"><td>SGPolax</td>
    1147 <td>Axes for space group polarity. Will be one of
    1148 &#8216;&#8217;, &#8216;x&#8217;, &#8216;y&#8217;, &#8216;x y&#8217;, &#8216;z&#8217;, &#8216;x z&#8217;, &#8216;y z&#8217;,
    1149 &#8216;xyz&#8217;. In the case where axes are arbitrary
    1150 &#8216;111&#8217; is used (P 1, and ?).</td>
    1151 </tr>
    1152 </tbody>
    1153 </table>
     1137<p>Space group interpretation routines. Note that space group information is
     1138stored in a <a class="reference internal" href="GSASIIobj.html#sgdata-table"><em>Space Group (SGData)</em></a> object.</p>
    11541139<dl class="function">
    11551140<dt id="GSASIIspc.ApplyStringOps">
     
    14001385<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">(SGError,SGData)
    14011386* SGError = 0 for no errors; &gt;0 for errors (see SGErrors below for details)
    1402 * SGData - dictionary with entries:<blockquote>
     1387* SGData - is a dict (see <a class="reference internal" href="GSASIIobj.html#sgdata-table"><em>Space Group object</em></a>) with entries:<blockquote>
    14031388<div><ul class="simple">
    1404 <li>&#8216;SpGrp&#8217;: space group symbol slightly cleaned up</li>
     1389<li>&#8216;SpGrp&#8217;: space group symbol, slightly cleaned up</li>
    14051390<li>&#8216;Laue&#8217;:  one of &#8216;-1&#8217;, &#8216;2/m&#8217;, &#8216;mmm&#8217;, &#8216;4/m&#8217;, &#8216;4/mmm&#8217;, &#8216;3R&#8217;,
    14061391&#8216;3mR&#8217;, &#8216;3&#8217;, &#8216;3m1&#8217;, &#8216;31m&#8217;, &#8216;6/m&#8217;, &#8216;6/mmm&#8217;, &#8216;m3&#8217;, &#8216;m3m&#8217;</li>
     
    14721457<dl class="data">
    14731458<dt id="GSASIIspc.selftestlist">
    1474 <tt class="descclassname">GSASIIspc.</tt><tt class="descname">selftestlist</tt><em class="property"> = [&lt;function test0 at 0xbdfd7b0&gt;, &lt;function test1 at 0xbdfd930&gt;, &lt;function test2 at 0xbdfd9f0&gt;, &lt;function test3 at 0xbdfdb70&gt;]</em><a class="headerlink" href="#GSASIIspc.selftestlist" title="Permalink to this definition">¶</a></dt>
     1459<tt class="descclassname">GSASIIspc.</tt><tt class="descname">selftestlist</tt><em class="property"> = [&lt;function test0 at 0x17d4a2f0&gt;, &lt;function test1 at 0x17d4a730&gt;, &lt;function test2 at 0x17d4a870&gt;, &lt;function test3 at 0x17d4a9b0&gt;]</em><a class="headerlink" href="#GSASIIspc.selftestlist" title="Permalink to this definition">¶</a></dt>
    14751460<dd><p>Defines a list of self-tests</p>
    14761461</dd></dl>
     
    15461531
    15471532  <h4>Previous topic</h4>
    1548   <p class="topless"><a href="GSASII.html"
    1549                         title="previous chapter"><em>GSAS-II Main Module</em></a></p>
     1533  <p class="topless"><a href="GSASIIobj.html"
     1534                        title="previous chapter"><em>GSASIIobj: Data objects</em></a></p>
    15501535  <h4>Next topic</h4>
    15511536  <p class="topless"><a href="GSASIIGUIr.html"
     
    15861571             >next</a> |</li>
    15871572        <li class="right" >
    1588           <a href="GSASII.html" title="GSAS-II Main Module"
     1573          <a href="GSASIIobj.html" title="GSASIIobj: Data objects"
    15891574             >previous</a> |</li>
    15901575        <li><a href="index.html">GSAS-II 0.2.0 documentation</a> &raquo;</li>
  • trunk/sphinxdocs/build/html/_modules/index.html

    r939 r946  
    4848           
    4949  <h1>All modules for which code is available</h1>
    50 <ul><li><a href="GSASII.html">GSASII</a></li>
     50<ul><li><a href="G2obj.html">G2obj</a></li>
     51<li><a href="GSASII.html">GSASII</a></li>
    5152<li><a href="GSASIIElem.html">GSASIIElem</a></li>
    5253<li><a href="GSASIIElemGUI.html">GSASIIElemGUI</a></li>
     
    6162<li><a href="GSASIImapvars.html">GSASIImapvars</a></li>
    6263<li><a href="GSASIImath.html">GSASIImath</a></li>
     64<li><a href="GSASIIobj.html">GSASIIobj</a></li>
    6365<li><a href="GSASIIpath.html">GSASIIpath</a></li>
    6466<li><a href="GSASIIphsGUI.html">GSASIIphsGUI</a></li>
  • trunk/sphinxdocs/build/html/genindex.html

    r941 r946  
    242242  </dt>
    243243
    244   </dl></td>
    245   <td style="width: 33%" valign="top"><dl>
    246244     
    247245  <dt><a href="GSASIIstruc.html#GSASIIstrIO.cellFill">cellFill() (in module GSASIIstrIO)</a>
     
    252250  </dt>
    253251
     252  </dl></td>
     253  <td style="width: 33%" valign="top"><dl>
    254254     
    255255  <dt><a href="GSASIIutil.html#GSASIIlattice.CentCheck">CentCheck() (in module GSASIIlattice)</a>
     
    307307
    308308     
     309  <dt><a href="GSASIIobj.html#index-1">Constraint definition object description</a>
     310  </dt>
     311
     312     
     313  <dt><a href="GSASIIobj.html#index-0">Constraints object description</a>
     314  </dt>
     315
     316     
    309317  <dt><a href="GSASIIGUIr.html#GSASIIIO.ImportBaseclass.ContentsValidator">ContentsValidator() (GSASIIIO.ImportBaseclass method)</a>
    310318  </dt>
     
    316324     
    317325  <dt><a href="GSASIIutil.html#GSASIIlattice.CosSinAngle">CosSinAngle() (in module GSASIIlattice)</a>
     326  </dt>
     327
     328     
     329  <dt><a href="GSASIIobj.html#index-2">Covariance description</a>
    318330  </dt>
    319331
     
    333345  <td style="width: 33%" valign="top"><dl>
    334346     
     347  <dt>
     348    Data object descriptions
     349  </dt>
     350
     351      <dd><dl>
     352       
     353  <dt><a href="GSASIIobj.html#index-1">Constraint Definition</a>
     354  </dt>
     355
     356       
     357  <dt><a href="GSASIIobj.html#index-0">Constraints</a>
     358  </dt>
     359
     360       
     361  <dt><a href="GSASIIobj.html#index-2">Covariance</a>
     362  </dt>
     363
     364       
     365  <dt><a href="GSASIIobj.html#index-3">Phase</a>
     366  </dt>
     367
     368       
     369  <dt><a href="GSASIIobj.html#index-4">SGData</a>
     370  </dt>
     371
     372      </dl></dd>
     373     
    335374  <dt><a href="GSASIIGUIr.html#GSASIIgrid.DataFrame">DataFrame (class in GSASIIgrid)</a>
    336375  </dt>
     
    356395  </dt>
    357396
     397  </dl></td>
     398  <td style="width: 33%" valign="top"><dl>
    358399     
    359400  <dt><a href="GSASIIpwd.html#GSASIIpwd.Dict2Values">Dict2Values() (in module GSASIIpwd)</a>
     
    366407
    367408      </dl></dd>
    368   </dl></td>
    369   <td style="width: 33%" valign="top"><dl>
    370409     
    371410  <dt><a href="GSASIIGUIr.html#GSASIIgrid.DisAglDialog">DisAglDialog (class in GSASIIgrid)</a>
     
    550589  </dt>
    551590
     591     
     592  <dt><a href="GSASIIobj.html#GSASIIobj.VarName.fullDescr">fullDescr() (GSASIIobj.VarName method)</a>
     593  </dt>
     594
    552595  </dl></td>
    553596</tr></table>
     
    641684
    642685     
    643   <dt><a href="GSASIIstruc.html#GSASIIstrIO.GetBLtable">GetBLtable() (in module GSASIIstrIO)</a>
    644   </dt>
    645 
    646      
    647   <dt><a href="GSASIIstruc.html#GSASIIstrMath.getBLvalues">getBLvalues() (in module GSASIIstrMath)</a>
     686  <dt><a href="GSASIIutil.html#GSASIIElem.GetBLtable">GetBLtable() (in module GSASIIElem)</a>
     687  </dt>
     688
     689     
     690  <dt><a href="GSASIIutil.html#GSASIIElem.getBLvalues">getBLvalues() (in module GSASIIElem)</a>
    648691  </dt>
    649692
     
    681724
    682725     
     726  <dt><a href="GSASIIobj.html#GSASIIobj.VarName.getDescr">getDescr() (GSASIIobj.VarName method)</a>
     727  </dt>
     728
     729     
    683730  <dt><a href="GSASIIimage.html#GSASIIimage.GetDetectorXY">GetDetectorXY() (in module GSASIIimage)</a>
    684731  </dt>
     
    729776
    730777     
    731   <dt><a href="GSASIIstruc.html#GSASIIstrIO.GetFFtable">GetFFtable() (in module GSASIIstrIO)</a>
    732   </dt>
    733 
    734      
    735   <dt><a href="GSASIIstruc.html#GSASIIstrMath.getFFvalues">getFFvalues() (in module GSASIIstrMath)</a>
     778  <dt><a href="GSASIIutil.html#GSASIIElem.GetFFtable">GetFFtable() (in module GSASIIElem)</a>
     779  </dt>
     780
     781     
     782  <dt><a href="GSASIIutil.html#GSASIIElem.getFFvalues">getFFvalues() (in module GSASIIElem)</a>
    736783  </dt>
    737784
     
    11111158
    11121159     
     1160  <dt><a href="GSASIIobj.html#module-GSASIIobj">GSASIIobj (module)</a>
     1161  </dt>
     1162
     1163     
    11131164  <dt><a href="GSASIIutil.html#module-GSASIIpath">GSASIIpath (module)</a>
    11141165  </dt>
     
    12851336
    12861337     
     1338  <dt><a href="GSASIIobj.html#GSASIIobj.LoadHistogramIDs">LoadHistogramIDs() (in module GSASIIobj)</a>
     1339  </dt>
     1340
     1341  </dl></td>
     1342  <td style="width: 33%" valign="top"><dl>
     1343     
    12871344  <dt><a href="GSASIIGUIr.html#GSASIIIO.ExportBaseclass.loadTree">loadTree() (GSASIIIO.ExportBaseclass method)</a>
    12881345  </dt>
    12891346
    1290   </dl></td>
    1291   <td style="width: 33%" valign="top"><dl>
    12921347     
    12931348  <dt><a href="GSASIIpwd.html#GSASIIpwd.LorchWeight">LorchWeight() (in module GSASIIpwd)</a>
     
    14071462  <td style="width: 33%" valign="top"><dl>
    14081463     
     1464  <dt><a href="GSASIIobj.html#GSASIIobj.VarName.name">name() (GSASIIobj.VarName method)</a>
     1465  </dt>
     1466
     1467     
    14091468  <dt><a href="GSASIIpwd.html#GSASIIpwd.norm_gen">norm_gen (class in GSASIIpwd)</a>
    14101469  </dt>
     
    16211680
    16221681     
     1682  <dt><a href="GSASIIobj.html#index-3">Phase object description</a>
     1683  </dt>
     1684
     1685     
    16231686  <dt><a href="GSASIIGUIr.html#GSASIIIO.ImportPhase.PhaseSelector">PhaseSelector() (GSASIIIO.ImportPhase method)</a>
    16241687  </dt>
     
    19512014
    19522015     
     2016  <dt><a href="GSASIIobj.html#index-4">SGData description</a>
     2017  </dt>
     2018
     2019     
    19532020  <dt><a href="GSASIIutil.html#GSASIIspc.SGErrors">SGErrors() (in module GSASIIspc)</a>
    19542021  </dt>
     
    19762043
    19772044      </dl></dd>
     2045  </dl></td>
     2046  <td style="width: 33%" valign="top"><dl>
    19782047     
    19792048  <dt><a href="GSASIIsolve.html#GSASIIsolve.ShowControls">ShowControls() (in module GSASIIsolve)</a>
     
    19862055
    19872056      </dl></dd>
    1988   </dl></td>
    1989   <td style="width: 33%" valign="top"><dl>
    19902057     
    19912058  <dt><a href="GSASIIGUIr.html#GSASIIgrid.ShowHelp">ShowHelp() (in module GSASIIgrid)</a>
     
    23402407  </dt>
    23412408
    2342   </dl></td>
    2343   <td style="width: 33%" valign="top"><dl>
    23442409     
    23452410  <dt><a href="GSASIIpwd.html#GSASIIpwd.Values2Dict">Values2Dict() (in module GSASIIpwd)</a>
     
    23522417
    23532418      </dl></dd>
     2419  </dl></td>
     2420  <td style="width: 33%" valign="top"><dl>
     2421     
     2422  <dt><a href="GSASIIobj.html#GSASIIobj.VarName">VarName (class in GSASIIobj)</a>
     2423  </dt>
     2424
    23542425     
    23552426  <dt><a href="GSASIImapvars.html#GSASIImapvars.VarRemapShow">VarRemapShow() (in module GSASIImapvars)</a>
  • trunk/sphinxdocs/build/html/index.html

    r939 r946  
    5656<ul>
    5757<li class="toctree-l1"><a class="reference internal" href="GSASII.html"><em>GSAS-II Main Module</em></a></li>
     58<li class="toctree-l1"><a class="reference internal" href="GSASIIobj.html"><em>GSASIIobj: Data objects</em></a><ul>
     59<li class="toctree-l2"><a class="reference internal" href="GSASIIobj.html#constraints-tree-item">Constraints Tree Item</a></li>
     60<li class="toctree-l2"><a class="reference internal" href="GSASIIobj.html#covariance-tree-item">Covariance Tree Item</a></li>
     61<li class="toctree-l2"><a class="reference internal" href="GSASIIobj.html#phase-tree-item">Phase Tree Item</a></li>
     62<li class="toctree-l2"><a class="reference internal" href="GSASIIobj.html#space-group-objects">Space Group Objects</a></li>
     63</ul>
     64</li>
    5865<li class="toctree-l1"><a class="reference internal" href="GSASIIutil.html"><em>GSAS-II Utility Modules</em></a><ul>
    5966<li class="toctree-l2"><a class="reference internal" href="GSASIIutil.html#gsasiidata-data-for-computations"><em>GSASIIdata: Data for computations</em></a></li>
  • trunk/sphinxdocs/build/html/py-modindex.html

    r939 r946  
    155155       <td>
    156156       <a href="GSASIImath.html#module-GSASIImath"><tt class="xref">GSASIImath</tt></a></td><td>
     157       <em></em></td></tr>
     158     <tr>
     159       <td></td>
     160       <td>
     161       <a href="GSASIIobj.html#module-GSASIIobj"><tt class="xref">GSASIIobj</tt></a></td><td>
    157162       <em></em></td></tr>
    158163     <tr>
  • trunk/sphinxdocs/build/html/searchindex.js

    r941 r946  
    1 Search.setIndex({objects:{"":{GSASIIgrid:[8,0,1,""],GSASIImapvars:[4,0,1,""],GSASIIpy3:[8,0,1,""],GSASIIstrMath:[12,0,1,""],GSASIIindex:[11,0,1,""],GSASIIstrIO:[12,0,1,""],ReadMarCCDFrame:[8,0,1,""],GSASIIphsGUI:[10,0,1,""],GSASIIrestrGUI:[10,0,1,""],GSASII:[5,0,1,""],GSASIIpath:[9,0,1,""],GSASIIpwd:[3,0,1,""],GSASIIElemGUI:[10,0,1,""],GSASIIimage:[0,0,1,""],GSASIIpwdGUI:[10,0,1,""],GSASIIplot:[2,0,1,""],GSASIImath:[6,0,1,""],GSASIIsolve:[7,0,1,""],GSASIIddataGUI:[10,0,1,""],GSASIIdata:[9,0,1,""],GSASIIimgGUI:[10,0,1,""],FormFactors:[9,0,1,""],GSASIIElem:[9,0,1,""],GSASIIIO:[8,0,1,""],ImageCalibrants:[9,0,1,""],ElementTable:[9,0,1,""],unit_tests:[9,0,1,""],GSASIIconstrGUI:[10,0,1,""],GSASIIlattice:[9,0,1,""],GSASIIstrMain:[12,0,1,""],GSASIIspc:[9,0,1,""]},GSASIIimgGUI:{UpdateImageControls:[10,1,1,""],UpdateMasks:[10,1,1,""],UpdateStressStrain:[10,1,1,""]},GSASIIgrid:{SingleStringDialog:[8,3,1,""],AddHelp:[8,3,1,""],UpdatePWHKPlot:[8,1,1,""],MyHelp:[8,3,1,""],MyHtmlPanel:[8,3,1,""],GetPatternTreeItemId:[8,1,1,""],GridFractionEditor:[8,3,1,""],GetPatternTreeDataNames:[8,1,1,""],ItemSelector:[8,1,1,""],HorizontalLine:[8,1,1,""],UpdateSeqResults:[8,1,1,""],GSNoteBook:[8,3,1,""],GSGrid:[8,3,1,""],UpdateNotebook:[8,1,1,""],UpdateHKLControls:[8,1,1,""],MovePatternTreeToGrid:[8,1,1,""],ShowHelp:[8,1,1,""],ScrolledMultiEditor:[8,3,1,""],PickTwoDialog:[8,3,1,""],DisAglDialog:[8,3,1,""],DataFrame:[8,3,1,""],CallScrolledMultiEditor:[8,1,1,""],G2HtmlWindow:[8,3,1,""],SingleFloatDialog:[8,3,1,""],ValidatedTxtCtrl:[8,3,1,""],SymOpDialog:[8,3,1,""],SetDataMenuBar:[8,1,1,""],NumberValidator:[8,3,1,""],UpdateControls:[8,1,1,""],Table:[8,3,1,""]},GSASIImapvars:{ComputeDepESD:[4,1,1,""],GenerateConstraints:[4,1,1,""],GetIndependentVars:[4,1,1,""],GroupConstraints:[4,1,1,""],CheckConstraints:[4,1,1,""],GetDependentVars:[4,1,1,""],Dict2Map:[4,1,1,""],GramSchmidtOrtho:[4,1,1,""],Dict2Deriv:[4,1,1,""],VarRemapShow:[4,1,1,""],InitVars:[4,1,1,""],StoreEquivalence:[4,1,1,""],PrintIndependentVars:[4,1,1,""],Map2Dict:[4,1,1,""]},"GSASIIIO.ImportBaseclass":{ContentsValidator:[8,2,1,""],MultipleBlockSelector:[8,2,1,""],BlockSelector:[8,2,1,""],MultipleChoicesDialog:[8,2,1,""],ExtensionValidator:[8,2,1,""]},"GSASIIplot.G2PlotNoteBook":{Rename:[2,2,1,""],add3D:[2,2,1,""],OnPageChanged:[2,2,1,""],clear:[2,2,1,""],addOgl:[2,2,1,""],addMpl:[2,2,1,""],Delete:[2,2,1,""]},"GSASII.GSASII":{OnImportPhase:[5,2,1,""],CopyDialog:[5,3,1,""],OnPatternTreeItemDelete:[5,2,1,""],OnImportPowder:[5,2,1,""],OnSize:[5,2,1,""],SumDialog:[5,3,1,""],OnPatternTreeItemCollapsed:[5,2,1,""],OnRefine:[5,2,1,""],OnFileClose:[5,2,1,""],CheckNotebook:[5,2,1,""],OnFileExit:[5,2,1,""],GetPhaseData:[5,2,1,""],OnImageRead:[5,2,1,""],OnPatternTreeItemExpanded:[5,2,1,""],ErrorDialog:[5,2,1,""],OnPwdrSum:[5,2,1,""],ViewParmDialog:[5,3,1,""],OnReadPowderPeaks:[5,2,1,""],GetPWDRdatafromTree:[5,2,1,""],OnImageSum:[5,2,1,""],FillMainMenu:[5,2,1,""],GetUsedHistogramsAndPhasesfromTree:[5,2,1,""],OnSeqRefine:[5,2,1,""],OnPatternTreeKeyDown:[5,2,1,""],OnMakePDFs:[5,2,1,""],OnImportSfact:[5,2,1,""],OnViewLSParms:[5,2,1,""],OnFileSaveas:[5,2,1,""],OnFileSave:[5,2,1,""],ReadPowderIparm:[5,2,1,""],OnRenameData:[5,2,1,""],GetPowderIparm:[5,2,1,""],OnFileOpen:[5,2,1,""],GetHKLFdatafromTree:[5,2,1,""],ExitMain:[5,2,1,""],GetFileList:[5,2,1,""],OnAddPhase:[5,2,1,""],ReadPowderInstprm:[5,2,1,""],OnImportGeneric:[5,2,1,""],ConstraintDialog:[5,3,1,""],OnDataDelete:[5,2,1,""],OnPatternTreeItemActivated:[5,2,1,""],OnDeletePhase:[5,2,1,""],OnPatternTreeSelChanged:[5,2,1,""]},GSASIIstrMath:{errRefine:[12,1,1,""],Values2Dict:[12,1,1,""],SHPOcalDerv:[12,1,1,""],GetIntensityCorr:[12,1,1,""],GetHStrainShift:[12,1,1,""],GetReflPos:[12,1,1,""],dervRefine:[12,1,1,""],getPowderProfile:[12,1,1,""],GetHStrainShiftDerv:[12,1,1,""],StructureFactor:[12,1,1,""],GetAbsorbDerv:[12,1,1,""],penaltyDeriv:[12,1,1,""],StructureFactorDerv:[12,1,1,""],SCExtinction:[12,1,1,""],SHTXcal:[12,1,1,""],Dict2Values:[12,1,1,""],ApplyRBModels:[12,1,1,""],GetReflPosDerv:[12,1,1,""],ApplyXYZshifts:[12,1,1,""],GetFobsSq:[12,1,1,""],GetPrefOri:[12,1,1,""],HessRefine:[12,1,1,""],getFFvalues:[12,1,1,""],GetSampleSigGam:[12,1,1,""],getBLvalues:[12,1,1,""],penaltyFxn:[12,1,1,""],SHTXcalDerv:[12,1,1,""],GetNewCellParms:[12,1,1,""],GetSampleSigGamDerv:[12,1,1,""],GetAbsorb:[12,1,1,""],ApplyRBModelDervs:[12,1,1,""],GetPrefOriDerv:[12,1,1,""],GetAtomFXU:[12,1,1,""],getPowderProfileDerv:[12,1,1,""],SHPOcal:[12,1,1,""],GetIntensityDerv:[12,1,1,""]},GSASIIindex:{monoCellReduce:[11,1,1,""],halfCell:[11,1,1,""],getDmax:[11,1,1,""],getDmin:[11,1,1,""],IndexPeaks:[11,1,1,""],FitHKL:[11,1,1,""],Values2A:[11,1,1,""],calc_M20:[11,1,1,""],sortM20:[11,1,1,""],FitHKLZ:[11,1,1,""],ranaxis:[11,1,1,""],DoIndexPeaks:[11,1,1,""],rotOrthoA:[11,1,1,""],scaleAbyV:[11,1,1,""],A2values:[11,1,1,""],rancell:[11,1,1,""],oddPeak:[11,1,1,""],refinePeaksZ:[11,1,1,""],findBestCell:[11,1,1,""],ran2axis:[11,1,1,""],ranAbyR:[11,1,1,""],swapMonoA:[11,1,1,""],ranAbyV:[11,1,1,""],refinePeaks:[11,1,1,""],TestData:[11,1,1,""]},GSASIIstrIO:{getCellEsd:[12,1,1,""],GetRigidBodyModels:[12,1,1,""],GetHistograms:[12,1,1,""],GetHistogramData:[12,1,1,""],GetRigidBodies:[12,1,1,""],SetPhaseData:[12,1,1,""],GetAllPhaseData:[12,1,1,""],GetHistogramPhaseData:[12,1,1,""],cellVary:[12,1,1,""],GetConstraints:[12,1,1,""],CheckConstraints:[12,1,1,""],GetUsedHistogramsAndPhases:[12,1,1,""],GetPawleyConstr:[12,1,1,""],GetPhaseData:[12,1,1,""],SetRigidBodyModels:[12,1,1,""],ShowControls:[12,1,1,""],GetFFtable:[12,1,1,""],ShowBanner:[12,1,1,""],GetFprime:[12,1,1,""],SetSeqResult:[12,1,1,""],ProcessConstraints:[12,1,1,""],GetPhaseNames:[12,1,1,""],GetBLtable:[12,1,1,""],GetControls:[12,1,1,""],GetRestraints:[12,1,1,""],GPXBackup:[12,1,1,""],PrintRestraints:[12,1,1,""],getBackupName:[12,1,1,""],SetUsedHistogramsAndPhases:[12,1,1,""],SetHistogramData:[12,1,1,""],GetHistogramNames:[12,1,1,""],cellFill:[12,1,1,""],SetHistogramPhaseData:[12,1,1,""]},ReadMarCCDFrame:{marFrame:[8,3,1,""]},GSASIIphsGUI:{UpdatePhaseData:[10,1,1,""]},GSASIIrestrGUI:{UpdateRestraints:[10,1,1,""]},GSASII:{GSASIImain:[5,3,1,""],GSASII:[5,3,1,""],main:[5,1,1,""]},GSASIIpath:{svnFindLocalChanges:[9,1,1,""],GetVersionNumber:[9,1,1,""],SetVersionNumber:[9,1,1,""],svnGetRev:[9,1,1,""],svnUpdateDir:[9,1,1,""],whichsvn:[9,1,1,""]},GSASIIpwd:{getFCJVoigt3:[3,1,1,""],norm_gen:[3,3,1,""],getdFCJVoigt3:[3,1,1,""],factorize:[3,1,1,""],getBackground:[3,1,1,""],getPeakProfile:[3,1,1,""],calcIncident:[3,1,1,""],DoPeakFit:[3,1,1,""],Dict2Values:[3,1,1,""],getEpsVoigt:[3,1,1,""],getFCJVoigt:[3,1,1,""],GetNumDensity:[3,1,1,""],ellipseSizeDerv:[3,1,1,""],AbsorbDerv:[3,1,1,""],CalcPDF:[3,1,1,""],Absorb:[3,1,1,""],GetAsfMean:[3,1,1,""],getdEpsVoigt:[3,1,1,""],Values2Dict:[3,1,1,""],fcjde_gen:[3,3,1,""],getHKLpeak:[3,1,1,""],LorchWeight:[3,1,1,""],Transmission:[3,1,1,""],getWidthsCW:[3,1,1,""],getPeakProfileDerv:[3,1,1,""],makeFFTsizeList:[3,1,1,""],cauchy_gen:[3,3,1,""],Polarization:[3,1,1,""],Oblique:[3,1,1,""],ellipseSize:[3,1,1,""],getFWHM:[3,1,1,""],getBackgroundDerv:[3,1,1,""],SetBackgroundParms:[3,1,1,""],Ruland:[3,1,1,""],TestData:[3,1,1,""],getWidthsTOF:[3,1,1,""]},"GSASIIgrid.NumberValidator":{TransferToWindow:[8,2,1,""],Clone:[8,2,1,""],TestValid:[8,2,1,""],CheckInput:[8,2,1,""],ShowValidity:[8,2,1,""],TransferFromWindow:[8,2,1,""],OnChar:[8,2,1,""]},"GSASIIgrid.MyHelp":{OnHelpById:[8,2,1,""],OnHelpAbout:[8,2,1,""],OnCheckUpdates:[8,2,1,""]},"GSASIIgrid.DataFrame":{PostfillDataMenu:[8,2,1,""],Bind:[8,2,1,""],PrefillDataMenu:[8,2,1,""]},GSASIIElemGUI:{PickElement:[10,3,1,""],DeleteElement:[10,3,1,""]},"GSASIIElemGUI.PickElement":{ElButton:[10,2,1,""]},GSASIIimage:{pointInPolygon:[0,1,1,""],FitCircle:[0,1,1,""],makeRing:[0,1,1,""],GetEllipse:[0,1,1,""],ImageCalibrate:[0,1,1,""],makeIdealRing:[0,1,1,""],EdgeFinder:[0,1,1,""],ImageIntegrate:[0,1,1,""],GetDsp:[0,1,1,""],Fill2ThetaAzimuthMap:[0,1,1,""],GetAzm:[0,1,1,""],calcFij:[0,1,1,""],FitDetector:[0,1,1,""],makeMat:[0,1,1,""],calcZdisCosB:[0,1,1,""],ImageRecalibrate:[0,1,1,""],ImageCompress:[0,1,1,""],FitEllipse:[0,1,1,""],GetTthAzm:[0,1,1,""],calcDist:[0,1,1,""],Make2ThetaAzimuthMap:[0,1,1,""],GetTthAzmDsp:[0,1,1,""],GetDetectorXY:[0,1,1,""],FitRing:[0,1,1,""],checkEllipse:[0,1,1,""],GetDetXYfromThAzm:[0,1,1,""],FitStrain:[0,1,1,""],ImageLocalMax:[0,1,1,""],peneCorr:[0,1,1,""],FitStrSta:[0,1,1,""],GetTth:[0,1,1,""]},"GSASIIgrid.ScrolledMultiEditor":{ControlOKButton:[8,2,1,""]},GSASIIpwdGUI:{UpdatePeakGrid:[10,1,1,""],UpdateLimitsGrid:[10,1,1,""],UpdatePDFGrid:[10,1,1,""],UpdateBackground:[10,1,1,""],UpdateReflectionGrid:[10,1,1,""],SetDefaultSample:[10,1,1,""],UpdateUnitCellsGrid:[10,1,1,""],UpdateInstrumentGrid:[10,1,1,""],UpdateIndexPeaksGrid:[10,1,1,""],UpdateSampleGrid:[10,1,1,""],IsHistogramInAnyPhase:[10,1,1,""]},GSASIIplot:{PlotDeltSig:[2,1,1,""],PlotRama:[2,1,1,""],PlotPatterns:[2,1,1,""],PlotPeakWidths:[2,1,1,""],PlotExposedImage:[2,1,1,""],G2PlotNoteBook:[2,3,1,""],PlotTorsion:[2,1,1,""],PlotTexture:[2,1,1,""],G2PlotMpl:[2,3,1,""],PlotSeq:[2,1,1,""],PlotStructure:[2,1,1,""],PlotCovariance:[2,1,1,""],PlotSizeStrainPO:[2,1,1,""],G2PlotOgl:[2,3,1,""],PlotISFG:[2,1,1,""],PlotRigidBody:[2,1,1,""],PlotPowderLines:[2,1,1,""],PlotXY:[2,1,1,""],GSASIItoolbar:[2,3,1,""],PlotTRImage:[2,1,1,""],PlotIntegration:[2,1,1,""],G2Plot3D:[2,3,1,""],PlotImage:[2,1,1,""],PlotSngl:[2,1,1,""]},"GSASIIIO.ImportStructFactor":{UpdateControls:[8,2,1,""]},GSASIImath:{anneal:[6,1,1,""]},"GSASIIIO.ImportPowderData":{powderdata:[8,5,1,""]},"GSASIIgrid.ValidatedTxtCtrl":{ShowStringValidity:[8,2,1,""],EvaluateExpression:[8,2,1,""]},GSASIIsolve:{ShowBanner:[7,1,1,""],main:[7,1,1,""],Solve:[7,1,1,""],ShowControls:[7,1,1,""]},GSASIIddataGUI:{UpdateDData:[10,1,1,""]},GSASIIspc:{test1:[9,1,1,""],test0:[9,1,1,""],test3:[9,1,1,""],test2:[9,1,1,""],SytSym:[9,1,1,""],StandardizeSpcName:[9,1,1,""],GetCSuinel:[9,1,1,""],SGErrors:[9,1,1,""],GetKNsym:[9,1,1,""],HStrainNames:[9,1,1,""],SpcGroup:[9,1,1,""],GetNXUPQsym:[9,1,1,""],MustrainNames:[9,1,1,""],selftestlist:[9,4,1,""],GetOprPtrName:[9,1,1,""],GenHKLf:[9,1,1,""],Muiso2Shkl:[9,1,1,""],ElemPosition:[9,1,1,""],SpaceGroup:[9,1,1,""],StringOpsProd:[9,1,1,""],Latt2text:[9,1,1,""],GenAtom:[9,1,1,""],SGpolar:[9,1,1,""],GetCSxinel:[9,1,1,""],ApplyStringOps:[9,1,1,""],SGPrint:[9,1,1,""],Opposite:[9,1,1,""],MT2text:[9,1,1,""],MoveToUnitCell:[9,1,1,""],MustrainCoeff:[9,1,1,""]},"GSASIIplot.GSASIItoolbar":{OnHelp:[2,2,1,""],OnKey:[2,2,1,""]},"GSASII.GSASIImain":{OnInit:[5,2,1,""]},"GSASIIElemGUI.DeleteElement":{ElButton:[10,2,1,""]},"GSASIIIO.ExportBaseclass":{loadTree:[8,2,1,""],dumpTree:[8,2,1,""]},GSASIIElem:{FixValence:[9,1,1,""],GetXsectionCoeff:[9,1,1,""],GetMagFormFacCoeff:[9,1,1,""],GetFormFactorCoeff:[9,1,1,""],CheckElement:[9,1,1,""],GetFFC5:[9,1,1,""],ScatFac:[9,1,1,""],FPcalc:[9,1,1,""],GetAtomInfo:[9,1,1,""],ComptonFac:[9,1,1,""]},GSASIIIO:{GetEdfData:[8,1,1,""],ImportStructFactor:[8,3,1,""],GetGEsumData:[8,1,1,""],GetTifData:[8,1,1,""],ImportPowderData:[8,3,1,""],ReadPDBPhase:[8,1,1,""],PDFSave:[8,1,1,""],GetG2Image:[8,1,1,""],powderFxyeSave:[8,1,1,""],ExtractFileFromZip:[8,1,1,""],CheckImageFile:[8,1,1,""],GetImgData:[8,1,1,""],MultipleChoicesDialog:[8,3,1,""],FileDlgFixExt:[8,1,1,""],SaveIntegration:[8,1,1,""],sint:[8,1,1,""],SetNewPhase:[8,1,1,""],IndexPeakListSave:[8,1,1,""],PutG2Image:[8,1,1,""],ProjFileOpen:[8,1,1,""],GetImageData:[8,1,1,""],ProjFileSave:[8,1,1,""],GetPowderPeaks:[8,1,1,""],ExportBaseclass:[8,3,1,""],GetMAR345Data:[8,1,1,""],ReadEXPPhase:[8,1,1,""],ImportBaseclass:[8,3,1,""],ImportPhase:[8,3,1,""],sfloat:[8,1,1,""],PeakListSave:[8,1,1,""],powderXyeSave:[8,1,1,""]},"GSASIIgrid.SingleStringDialog":{GetValue:[8,2,1,""],Show:[8,2,1,""]},unit_tests:{test_GSASIIlattice:[9,1,1,""],test_GSASIIspc:[9,1,1,""]},GSASIIconstrGUI:{MultiIntegerDialog:[10,3,1,""],UpdateConstraints:[10,1,1,""],UpdateRigidBodies:[10,1,1,""]},"GSASIIgrid.AddHelp":{OnHelpById:[8,2,1,""]},GSASIIlattice:{cell2Gmat:[9,1,1,""],Hx2Rh:[9,1,1,""],test3:[9,1,1,""],test2:[9,1,1,""],A2Gmat:[9,1,1,""],test4:[9,1,1,""],test7:[9,1,1,""],test6:[9,1,1,""],getHKLmax:[9,1,1,""],test8:[9,1,1,""],permutations:[9,1,1,""],CellBlock:[9,1,1,""],Rh2Hx:[9,1,1,""],Flnh:[9,1,1,""],fillgmat:[9,1,1,""],invpolfcal:[9,1,1,""],GetBraviasNum:[9,1,1,""],calc_rDsq2:[9,1,1,""],test5:[9,1,1,""],rotdMat4:[9,1,1,""],SwapIndx:[9,1,1,""],GenSHCoeff:[9,1,1,""],CentCheck:[9,1,1,""],Gmat2AB:[9,1,1,""],CellAbsorption:[9,1,1,""],UijtoU6:[9,1,1,""],selftestlist:[9,4,1,""],test9:[9,1,1,""],invcell2Gmat:[9,1,1,""],polfcal:[9,1,1,""],calc_V:[9,1,1,""],textureIndex:[9,1,1,""],GetKsl:[9,1,1,""],calc_rVsq:[9,1,1,""],sec2HMS:[9,1,1,""],GenHLaue:[9,1,1,""],CosSinAngle:[9,1,1,""],rotdMat:[9,1,1,""],SamAng:[9,1,1,""],cell2A:[9,1,1,""],criticalEllipse:[9,1,1,""],MaxIndex:[9,1,1,""],Gmat2cell:[9,1,1,""],combinations:[9,1,1,""],uniqueCombinations:[9,1,1,""],CrsAng:[9,1,1,""],Glnh:[9,1,1,""],cell2AB:[9,1,1,""],selections:[9,1,1,""],GetKcl:[9,1,1,""],calc_rDsq:[9,1,1,""],sortHKLd:[9,1,1,""],calc_rV:[9,1,1,""],calc_rDsqZ:[9,1,1,""],OdfChk:[9,1,1,""],A2cell:[9,1,1,""],GetKclKsl:[9,1,1,""],test1:[9,1,1,""],GenHBravais:[9,1,1,""],Gmat2A:[9,1,1,""],A2invcell:[9,1,1,""],U6toUij:[9,1,1,""],Uij2betaij:[9,1,1,""]},"GSASIIIO.ImportPhase":{PhaseSelector:[8,2,1,""]},GSASIIstrMain:{SeqRefine:[12,1,1,""],DistAngle:[12,1,1,""],DisAglTor:[12,1,1,""],Refine:[12,1,1,""],BestPlane:[12,1,1,""],main:[12,1,1,""]},GSASIIpy3:{FormatValue:[8,1,1,""],FormulaEval:[8,1,1,""]}},terms:{getnumdens:3,structurefactorderv:12,orthogon:9,yellow:8,four:[6,8],elemlst:8,fcjde_gen:3,helplbl:8,aui:8,ranabyv:11,deviat:6,noatom:10,"0xbdfd930":9,under:[9,12],mustrain:[9,2],showhelp:8,calcdist:0,everi:[4,5,6,9,8],readpdbphas:8,uij2u:9,radiusfactor:10,affect:4,relval:[],dependentparmlist:4,unitcellbox:10,atomdata:9,gethistogram:12,correct:[5,3,9,12,8],vector:[4,9],ran2axi:11,fill2thetaazimuthmap:0,getrestplan:[],calc_m20:11,"0xc92ac30":9,importstructfactor:[5,8],direct:10,getdfcjvoigt3:3,second:[4,5,10,9],"4x4":9,even:9,neg:[10,8],checknotebook:5,"new":[4,5,6,8,9,12],databank:5,"49012e":[],widget:[10,8],"0x17d492f0":[],here:[9,8],met:[],path:[5,9],interpret:[9,12],interatom:10,precis:8,ranabyr:11,covdata:12,linearli:4,putg2imag:8,total:9,unit:[1,9,8,10,4],ftol:[],plot:[1,2,10],describ:[4,9],dmdv:4,seqnam:2,flnh:9,fillatomlookup:[],positiveonli:8,call:[6,4,5,3,8,9,10,12],calc:[0,1,3,8],type:[1,2,12,8,9,10],until:[],cellfil:12,swap:[],updatehklcontrol:8,inst2:3,inflect:9,relat:[4,9,12],notic:[12,7],warn:12,"0xc92aab0":9,must:[4,8],"2phi":3,cell2ab:9,setup:[12,3],work:[9,8],obliqu:3,avdeg2q:[],overrid:8,sorthkld:9,"0x17cc0a70":[],digit:8,indic:[4,9,6,8],edgefind:0,getphasedata:[5,12],odfchk:9,cylind:3,ilim:0,gsasiiimag:[0,1],how:[9,6],histophas:12,collaps:5,lam:9,u22:9,after:[4,12,2,3,8],substanc:9,befor:[4,12,3,6,8],sedg:9,rulcoff:3,oninit:5,cellvari:12,attempt:[5,8],constraintdialog:5,gsasiielemgui:[1,10],jlim:0,enter:8,lambda:[9,3],g13:9,g12:9,g11:9,oatom:[],origin:4,over:[6,8],mx2:4,becaus:[9,8],addit:[4,8],mx1:4,veri:8,incid:0,varremapshow:4,vari:[4,6],sgtbx:9,img:8,fix:[4,3,8],orthonorm:4,rigidbodi:12,ifdup:9,gsasiiddata:10,getbackgroundderv:3,gridfractioneditor:8,calc_rvsq:9,oncheckupd:8,them:[4,9,12,8],plotrama:2,thei:[4,9,8],coehlo:11,readpowderinstprm:5,"break":8,printrho:[],setvalu:8,bank:5,choic:[10,8],getvalu:8,neutron:[12,10],atptr:12,svnfindlocalchang:9,g2htmlwindow:8,complet:[4,9],"0x17d49430":[],side:9,mean:[3,8],wxapp:5,updateseqresult:8,laboratori:9,extract:[9,10,8],unbound:8,newli:4,rh2hx:9,dsp:0,content:[5,10,9,12,8],reader:[5,8],comptonfac:9,ntz:[],oxyz:[],free:9,standard:[1,9,8],helptyp:8,longnam:3,fcalcpres:8,angl:[0,2,3,8,9,10],"0xc92ab30":9,iso:10,getknsym:9,shkl:9,rang:6,independ:4,unlik:4,alreadi:8,"0x2376470":[],thick:3,agre:5,sgcen:9,cartesian:[9,10],tor:[],top:[10,8],master:4,dwell:6,zipfil:8,a31:9,q2avdeg:[],makemat:0,phipsi:2,getfobssq:12,test_gsasiilattic:9,keyword:8,provid:[4,3,8],getrestangl:[],hname:12,atomtyp:[12,10],project:[5,8],matter:[9,8],plotcovari:2,rotdmat4:9,jmol:9,plotstructur:2,maxdigit:8,quench:6,deleteel:10,rai:[0,10,9,3],fithkl:11,raw:5,seed:6,seen:[9,2],seem:8,getazm:0,pickl:8,applyrbmodel:12,latter:4,elsym:9,hklfname:5,parmlist:4,scaleabyv:11,object:[5,10,9,8],boltzmann:6,rbmodel:[12,10],letter:9,phase:[1,2,5,8,10,12],typ:8,im3m:[],usecancel:8,known:5,imagerecalibr:0,gettthazmdsp:0,simplif:4,doc:[0,2,12,3,7,8,9,10,11],doe:[0,5,8],sitesym:9,gmat2cel:9,section:9,came:8,fhkl:[],abl:5,random:[10,6],radiu:[0,10,3],radii:[0,10],getbltabl:12,pkg:8,generateconstraint:4,involv:4,gettorsionsig:[],ellipsoid:[9,2,10],contourlevel:10,menu:[5,8],explain:[9,10],gsasiimapvar:[1,4],version:9,sethistogramphasedata:12,balyuzi:9,maetric:9,testdata:[11,3],plate:[3,8],shkei:[],wide:8,bondradiu:10,stop:6,errrefin:12,ierr:9,bondradii:10,symmetr:[],dgmda:9,makefftsizelist:3,"0x17d49330":[],clean:9,respond:[2,10],headinglist:8,plotpeakwidth:2,datatyp:[5,3,8],num:3,dervrefin:12,result:[9,6,12,8],respons:[5,10],fail:9,fosq:8,best:[9,8],movetounitcel:9,dependentlist:4,tensor:[9,12],mur:3,wikipedia:4,atlookup:12,figur:2,finger:3,parmdict:[0,4,5,3,12],triplet:10,omg:0,gpxfile:[12,7],gsasiirestrgui:[1,10],newnam:2,updateimagecontrol:10,extens:[5,8],ranid:10,toler:[9,6],cox:3,compton:[9,3],against:9,refltyp:[],omitmap:[],chargeflip:[],browser:8,setseqresult:12,schmidt:4,base_schedul:6,"2nd":9,permut:9,xtol:3,swapindx:9,gethistogramphasedata:12,itemselector:8,duplic:[9,8],gethklfdatafromtre:5,clip:10,getdmin:11,numpi:[1,9,3,6,8],three:[10,4,6,8],been:[4,9,6,8],much:8,basic:[1,8],futur:[5,3,8],filedlgfixext:8,ani:[4,5,9,12,8],cauchy_gen:3,hklfdata:5,pdfsave:8,findoffset:[],ident:[9,8],diffract:[1,5,10,9,8],tand:8,cell2a:9,calcul:[1,5,3,9],getpwdrdatafromtre:5,glnh:9,elbutton:10,oldpag:10,"0xc92aa70":9,kwarg:[2,8],setmolc:[],sever:4,getpowderprofilederv:12,incorrectli:8,perform:[5,6,9,7,8],make:[0,5,8,9,10,12],complex:4,descend:9,mcsa:10,european:8,numbervalid:8,refin:[4,5,8,10,11,12],movepatterntreetogrid:[10,8],topa:8,redefin:4,wtype:5,min:8,contact:9,thi:[0,1,2,4,5,8,9,10,11],eleterm:9,onpatterntreeitemcollaps:5,xdata:3,stringent:6,identifi:8,just:9,getreflposderv:12,doindexpeak:11,equivalanc:4,getreflpo:12,sgsymbol:9,yet:11,previous:4,mix:4,getwidthstof:3,fortran:9,els:[9,12],expon:8,take:[4,9,12,8],applic:5,cossinangl:9,preserv:8,onmakepdf:5,ifrevers:9,id_ok:8,background:[10,3,8],authorship:[12,7],getsyxyz:[],searchmap:[],g33:9,vdw:10,specif:[5,9,8],arbitrari:9,oddpeak:11,oxid:9,right:3,old:[5,9],deal:9,intern:4,maxit:6,getintensityderv:12,transmiss:3,plotdeltsig:2,thu:[4,8],uniq:9,normal:[2,6],subclass:5,getbackground:3,gettifdata:8,condit:6,formfactor:[1,9],plu:1,contraint:4,binden:9,baktyp:3,av2q:[],hst:4,post:8,fvec:[],filepoint:8,obj:5,atomtls2uij:[],latt2text:9,slightli:9,simul:[10,6],produc:8,postfilldatamenu:8,t_new:6,regist:[9,8],xyz:[9,12],"float":[0,6,4,3,8,9,10],bound:[5,6],xye:8,accordingli:8,wai:[9,8],support:8,gettthazm:0,transform:9,why:5,avail:[2,6],getatomfxu:12,editor:8,fraction:[9,10,8],analysi:2,head:[9,8],form:[4,9,12],offer:8,forc:8,obcoeff:3,plottextur:2,formatnam:8,"true":[2,5,8,9,10,12],rbobj:[],absent:9,azm:[0,3],coeff:[9,2,3],pawleyvari:12,maximum:[10,3,9,6,8],tell:8,crystal:[5,2,9,12],gettorsionderiv:[],prodqvq:[],later:[4,8],dumptre:8,hstrainnam:9,diagnost:2,triclin:9,updateunitcellsgrid:10,face:9,check:[4,9,8],computedepesd:4,nx1:4,fixedvarlist:4,when:[0,2,5,8,9,10],refactor:[0,11],tetragon:9,test:[1,9,2,6,8],tif:8,intend:8,intens:[9,2,10,8],probabilist:6,omega:[0,9],brentano:3,longer:6,anywher:[],postlbl:8,pseudo:8,genshcoeff:9,ignor:[4,9,8],datafram:8,time:[9,6],nxn:[],powderxyesav:8,rancel:11,spgrp:9,skip:5,global:[1,4],pval:12,invcell2gmat:9,unit_test:[1,9],unconstrain:4,forceunit:8,row:[4,9],hold:8,depend:[4,9,3,8],zone:2,plotxi:2,decim:8,readabl:6,calc_rdsqz:9,zref:11,okcontrol:8,plotrigidbodi:2,"0x21e7e30":[],getangsig:[],shpocal:12,sourc:[0,2,4,5,3,7,8,9,10,11,12],string:[0,2,4,5,3,7,8,9,10,11,12],dictat:8,planedata:12,getramaderiv:[],fitellips:0,cool:6,level:10,gui:[1,9,11,10,8],iter:6,magnet:9,item:[4,5,8,9,10,12],varylist:[0,4,12,3,8],gmat2a:9,prevent:[4,8],cosd:8,slower:8,sign:[9,8],cost:6,phfx:12,g22:9,appear:[4,5,8],selftestlist:9,uniform:6,current:[5,10,9,12,8],axial:9,u33:9,copydialog:5,deriv:[4,9,3,6,12],printindependentvar:4,test2:[9,8],genatom:9,coeffici:[9,3],satisfi:4,plotsizestrainpo:2,box:8,dreel:[],shift:[12,8],bot:9,saveintegr:8,bob:0,findatomindexbyid:[],onviewlsparm:5,commonli:9,nmax:3,repositori:[9,8],extra:[6,8],dtype:[],modul:[0,1,2,3,4,5,6,8,9,10,11],prefer:[9,2,10,12],parma:[],nfev:[],"1st":[4,9],instal:[1,9],getimagedata:8,atinfo:2,gpxbackup:12,give:[9,6],subvers:9,applystringop:9,black:10,marccd:8,rigid:[12,2,10],parm2:4,parm1:4,plotisfg:2,prepar:9,importphasereaderlist:5,uniqu:[9,10],values2dict:[12,3],can:[2,3,4,5,6,8,9],tabul:9,purpos:2,zeroref:11,problemat:4,pawlei:10,nearest:9,sgequiv_2002_orthorhomb:[],"0xbdfd7b0":9,critic:9,tabl:[1,4,5,8,9,10],phaseselector:8,structurefactor:12,changetyp:9,xsum:0,orthorhomb:9,alwai:[9,8],numitem:[],multipl:[5,2,10,9],viewpoint:10,tilt:3,write:8,map:10,remap:4,mar:[1,8],"0x17d492b0":[],sgprint:9,max:8,clone:8,mac:[5,8],readerlist:5,mag:[],mai:[5,9,8],data:[0,1,2,5,3,8,9,10,12],hklf:[12,10,8],harmon:[9,10,12],stress:10,practic:6,ny1:4,inform:[4,5,6,7,8,9,10,12],"switch":8,cannot:4,combin:[9,10],gamma:[9,10],callabl:6,onrefin:5,"0xc92ac70":9,timemap:5,ranaxi:11,previparm:5,getpeakprofilederv:3,still:5,equiv:12,divis:8,group:[1,4,12,8,9,10],plotpattern:2,platform:8,window:[5,2,10,8],ntri:11,x_old:6,getrestrama:[],main:[1,5,7,8,10,12],getcontrol:12,non:[4,9],within:[9,10],calctorsionenergi:[],confirmoverwrit:8,initi:[4,6,8],nation:[],showrigidbodi:10,now:[4,9,10],term:[4,9,2,3],name:[2,4,5,3,8,9,10,12],hessianlsq:[],revers:[],separ:[5,8],muiso2shkl:9,ddata:10,updat:[1,6,12,3,8,9,4],compil:9,citat:[12,7],checkimagefil:8,replac:[],checkconstraint:[4,12],continu:[6,8],tth:[0,9,3],happen:8,genhkl:9,shown:10,absorpt:[9,3],getatomsbyid:[],space:[1,12,6,8,9,10],profil:8,bragg:3,updatesamplegrid:10,updaterbxyz:[],formula:8,gethstrainshiftderv:12,formatvalu:8,gram:4,onsiz:5,cart:[],onfilesavea:5,fxye:8,theori:5,constr:4,org:4,orb:9,motion:2,turn:[10,8],place:[5,9,8],getrestderiv:[],u23:9,"0x17cc0a30":[],imposs:9,first:[4,5,10,9,8],oper:[9,8],peaklistsav:8,onc:4,arrai:[4,5,3,8,9,10,12],generaldata:2,bestplan:12,symmetri:[9,10,12,8],ring:[0,2],open:[5,3,8],predefin:8,size:[2,6,3,8,9,10],given:[5,9],ellipsesizederv:3,convent:9,gsasiipath:[1,9],checkel:9,necessarili:9,getbraviasnum:9,conveni:[],angleradii:10,updaterestraint:10,copi:[5,8],vdwscale:10,specifi:[4,5,9,8],peaksequiv:[],than:[4,9,6,8],xsectip:9,unpolar:3,"0x17d49470":[],redefinit:4,param2:4,param1:4,were:[5,9,8],posit:[10,9,11,3],"0x17d49270":[],seri:[9,10,8],pre:[],sai:9,reflist:12,argument:8,maxindex:9,gsasiipy3:[1,8],gsasiiindex:[1,11],ramanam:2,squar:[4,9,3,6],picktwodialog:8,fftabl:12,note:[1,5,8,10,4],textcontrol:[],constrant:4,phaserest:12,noth:[9,8],incoher:9,begin:8,sure:[5,8],pfile:[4,12],multipli:[4,9,10],calc_rv:9,beta:[9,10],pair:[9,8],fcj:3,renam:[5,2],hmax:[],updatebackground:10,infodict:[],order:[9,8],pattern:[1,2,10,8],derivdict:4,axi:[0,9,3,8],slope:6,show:[4,5,2,10,8],strictextens:8,atom:[9,10,12,8],sguniq:9,corner:9,unfinish:[],odfln:9,rotat:[0,9],onli:[4,5,6,8,9,10,12],ratio:10,dictlst:8,activ:5,written:12,mfb:9,dict:[2,4,5,3,8,9,10,12],errordialog:5,analyt:9,overwritten:12,onseqrefin:5,fitpgm:3,variou:[3,8],get:[9,12,8],ellipseprob:10,tailor:5,requir:[1,6,8],prime:3,standardizespcnam:9,getxsectioncoeff:9,disagldialog:8,pawleyref:12,through:8,anisotrop:10,where:[0,4,5,3,8,9,10,12],summari:4,wiki:4,getrestdist:[],caller:10,centrosymmetr:9,findbestcel:11,morehelpitem:8,prefilldatamenu:8,getkclksl:9,gsasiiddatagui:[1,10],ondatadelet:5,ibrav:11,label:[5,10,8],between:[4,5,9],"import":[5,8],"0x17cc0930":[],gsasiiplot:[1,2],parent:[5,2,10,8],gsasiielem:[1,9],style:8,cycl:[],getanglesig:[],dmin:[10,9,11,3],indexpeaklistsav:8,gsasiistrio:[1,12],come:6,onecycl:3,fit:[0,8],"0x23764b0":[],region:8,mont:10,inconsist:4,mani:8,updaterigidbodi:10,extensionlist:8,atomlookup:[],getsamplesiggamderv:12,color:[9,10,8],filldiagon:[],period:[1,9,10,8],pole:2,pola:3,cancel:8,extinct:12,amino:9,better:6,coupl:9,gsgrid:8,controlokbutton:8,invers:[4,9,2],mark:8,reldict:[],u11:9,u13:9,u12:9,valueerror:9,curvatur:[],irrevel:9,gsasiispc:[1,9,10,8],quick:8,those:4,"case":[4,9,10,8],getprefori:12,npix:8,ondeletephas:5,cast:8,exist:[4,5,12,8],anytim:8,metric:[9,12],"100th":9,strain:10,scipi:[1,6],makeback:12,ascii:4,peaksuniqu:[],develop:[1,9],loadtre:8,same:[4,5,6,8,9,10],scrolledwindow:10,html:8,shpocalderv:12,getrestpolefigderv:[],eventu:9,rigidbodydict:12,sethistogramdata:12,"0x17d493f0":[],someon:2,extern:[1,4],getsamplesiggam:12,defn:[],isotop:[12,10],appropri:[5,8],onleav:8,maxaccept:6,fpcalc:9,fmmm:[],model:[4,12],rhomax:[],getrestraint:12,lastiparmfil:5,execut:[],addhelp:8,tip:10,"0xbdfd9f0":9,gangl:9,tobi:9,goniomet:9,miscellan:8,except:9,littl:11,instrument:[5,2,10],"0x21e7d70":[],exercis:9,real:9,psi:[9,3],sortm20:11,around:0,read:[1,5,9,12,8],temperatur:6,grid:8,oldnam:2,saniti:8,getedfdata:8,inten:3,sfloat:8,integ:[10,3,8],server:9,either:[4,5,3,9,8],spacegroup:9,nice:9,onfilesav:5,parentfram:8,sec2hm:9,anomal:9,"0x17d494b0":[],newplot:2,showvalid:8,invpolfc:9,fitstrsta:0,imageonli:8,values2a:11,tls2uij:[],confirm:8,oldxi:10,definit:[4,12,10,8],lastdatafil:5,getfftabl:12,cylindr:[9,12],refer:[5,8],compris:4,power:3,each:[6,4,5,3,8,9,10,12],idup:9,gsasiimain:5,cauchi:6,fulli:3,"throw":9,degre:[0,4,9,10],atomptr:10,bond:10,backup:12,routin:[1,2,4,5,6,7,8,9,10,12],effici:4,"_init_import":5,norm_gen:3,"0x21e7db0":[],updateinstrumentgrid:10,getformfactorcoeff:9,onimagesum:5,spglist:[],updatepeakgrid:10,log:[9,2,6],opengl:[9,2],getversionnumb:9,overwrit:8,start:[5,2,9,8],interfac:9,getblvalu:12,getoprptrnam:9,"0xc92abf0":9,tupl:[4,9,6,8],amongst:6,pohkl:10,notat:8,getshcoeff:[],atmdata:9,"default":[2,5,8,9,10,12],fixedlist:4,getellips:0,ipvt:[],imagecompress:0,a2valu:11,maxev:6,creat:[4,5,2,10,8],updateconstraint:10,uij:[9,10,12],cellblock:9,adsc:8,file:[1,5,8,9,10,12],proport:2,extensionvalid:8,fill:9,denot:6,calcramaenergi:[],event:[5,2,8],field:[9,8],valid:8,lorchweight:3,projfileopen:8,getksl:9,edgemin:0,getgesumdata:8,kingslei:0,sequenc:8,symbol:9,prodqq:[],peak:[10,5,11,3,8],xpix:0,reduc:4,getatominfo:9,directori:[9,10,8],descript:[9,6],mass:10,potenti:[5,8],swapmonoa:11,u6touij:9,validatedtxtctrl:8,all:[0,2,4,5,6,8,9,10,12],dist:0,onkei:2,forbidden:9,dollas:10,rowlabel:8,gmat2ab:9,getdsp:0,reson:9,follow:[9,8],acosd:[],children:[10,8],alp:3,refinepeak:11,immm:[],atommass:10,ifnon:10,distsum:0,program:[1,5,11],present:[4,5,9,8],pointinpolygon:0,monocellreduc:11,far:9,invcel:9,util:[1,9],sumdialog:5,updatemask:10,callscrolledmultieditor:8,curve_fit:[],map2dict:4,strang:8,ishistograminanyphas:10,exitmain:5,list:[0,1,4,5,3,8,9,10,12],laue:9,adjust:6,cosin:8,anal:0,gsasiisolv:[1,7],dimens:6,zero:[4,9,11,8],design:[],pass:8,lammax:[],plottrimag:2,what:[5,8],diam:3,dict1:8,sub:10,sum:[5,3,8],getg2imag:8,brief:6,getcsuinel:9,delet:[1,5,2,10],"0x17cc0af0":[],q2av:[],usebestvisu:5,menubar:5,method:8,full:12,pyopengl:1,variat:11,u2uij:9,getrigidbodi:12,mulp:9,modifi:12,valu:[6,4,5,3,8,9,10,11,12],selectedatom:10,onpatterntreeitemactiv:5,search:[0,10,9,6],fillmainmenu:5,fpath:9,prior:8,pick:10,action:10,getrestchir:[],diamet:3,via:[9,8],primit:8,onfileexit:5,filenam:[5,8],inappropri:8,g2plotogl:2,elementgui:[],select:[1,5,3,8,9,10,12],distinct:9,containt:4,two:[4,5,10,9,8],a51:9,taken:8,mustraincoeff:9,minor:0,more:[4,5,6,8],flat:3,desir:[],line:[2,8],textcrtl:8,flag:[10,9,6],stick:[2,10],particular:5,penecorr:0,sgpolar:9,none:[0,2,3,4,5,6,8,9,10,12],dep:0,der:10,sgpolax:9,mt2text:9,archiv:8,"0x17cc09f0":[],deg:3,prompt:[10,8],scan:[9,8],gethistogramnam:[5,12],share:4,accept:[9,6],sphere:10,minimum:[3,9,6,8],onleave1:[],setversionnumb:9,refinepeaksz:11,goal:6,divid:4,rather:4,anoth:[4,10],camerapo:10,getmass:[],pwdrname:5,makeidealr:0,reject:0,acta:9,simpl:2,getmar345data:8,referenc:11,algebra:[4,8],myhelp:8,capitalizt:9,reflect:[5,2,10,9,8],plane:3,cromer:9,setrigidbodymodel:12,associ:[5,10,8],ysum:0,hfx:12,"short":9,caus:[4,8],spheric:[9,10,12],txyz:[],help:8,plotexposedimag:2,fft:3,held:4,thermal:[2,10],ncmax:11,paramet:[0,1,2,3,4,5,6,8,9,10,12],latt:9,mcsasearch:[],glide:[],getpatterntreeitemid:8,might:8,alter:6,muiso:9,good:6,"return":[6,4,5,3,8,9,12],rhombohedr:9,gsasiipwdgui:[1,5,10],filedialog:8,onimageread:5,document:[1,8],ifq:[],readexpphas:8,getxyzdist:[],ifd:8,getffc5:9,radian:[],ifb:9,importpowderreaderlist:5,found:[1,5,6,9,12],unicod:8,truncat:8,harm:4,weight:8,orbnam:9,expect:[5,8],http:4,energi:9,beyond:[],orient:[9,2,10,12],onaddphas:5,robert:[],invq:[],print:[4,9,12,7,8],iparm:3,evaluateexpress:8,add3d:2,typehint:8,calc_rdsq:9,polyhedra:2,differ:[6,8],mmm:9,calc_rdsq2:9,base:[10,8],ask:[5,8],applyrbmodelderv:12,cov_x:[],flip:10,assign:[4,10,8],magformfactor:9,itemtext:8,upper:[6,8],exchang:[],ncell:9,misc:[1,8],number:[6,4,5,3,8,9,10],controldict:12,done:[4,9,10,8],construct:[],checkellips:0,blank:[9,8],getallphasedata:12,miss:4,betwe:9,guess:[5,6],pm3m:[],script:9,criticalellips:9,interact:[10,8],lxsect:9,least:[3,9,6],pwdrdata:5,gpx:[5,10,12],getphasenam:12,scheme:9,store:[4,10,8],option:[4,5,2,6,8],relationship:4,parm:5,crystallograph:9,selector:8,part:[4,9,8],pname:12,onrenamedata:5,normq:[],importphas:[5,8],std:6,kind:[2,8],datdata:12,tof:[5,2],remov:[0,4,11],shcoeff:[],horizont:8,tunit:[],dopeakfit:3,str:[4,5,3,8,9,10,12],comput:[1,4,12,6,7,8,9,10],gsasiigrid:[1,5,10,8],histnam:8,packag:[1,2],gramschmidtortho:4,fast_sa:6,bht:5,powderfxyesav:8,equival:[4,9],self:[0,1,2,5,8,9],getnewcellparm:12,also:[2,4,5,6,8,9,12],without:[9,8],build:[4,9],jacobian:[],updatepdfgrid:10,parms2:[],compat:[5,8],distribut:2,updatepwhkplot:8,grassman:[],previou:[10,9,6],reach:6,samang:9,amat:[],updatestressstrain:10,setphasedata:12,alpha:[9,10],seqdata:2,charg:10,g23:9,readerobject:5,clear:[4,5,2],seqrefin:12,hessrefin:12,exp:[6,8],azimuth:[0,2,3],seqresult:12,sgerror:9,test0:9,eltabl:9,azmuth:9,distanc:[10,3,8],swapcolumn:[],onfileopen:5,find:[4,9],npsind:3,rotorthoa:11,cell:[1,12,8,9,10,11],onimportpowd:5,pmmm:[],less:[9,6,8],solut:[],factor:[2,5,3,8,9,10,12],getrestpolefig:[],unus:5,express:[4,8],disagltor:12,make2thetaazimuthmap:0,monoclin:9,initvar:4,centcheck:9,getkcl:9,oneonli:10,coord:9,a2invcel:9,iflmn:9,arr:[],set:[4,5,10,9,8],tree:[5,2,10,8],testvalid:8,see:[4,9,8],sec:9,arg:[6,8],uiso:10,close:[5,8],sel:[],contour:2,elemposit:9,printal:4,someth:[0,9],onimportsfact:5,smallest:6,gener:[2,4,12,6,9,10],getrigidbodymodel:12,altern:8,rd_list:5,showhydrogen:10,matplotlib:[1,2],"31m":9,fillgmat:9,extractfilefromzip:8,both:[4,8],last:[5,6,9,12],delimit:9,confirmread:8,arraylist:4,nonstandard_sglist:[],gethistogramdata:12,sginv:9,pdf:[10,5,2,3,8],pdb:8,load:[12,8],getcsxinel:9,symopdialog:8,simpli:4,point:[10,9,6],schedul:6,blockselector:8,residu:[],header:8,getimgdata:8,param:3,suppli:[4,5,8],svnupdatedir:9,along:12,unsuccess:[],cellabsorpt:9,updatephasedata:10,empti:[4,5,9,8],waasmaier:9,seqsig:2,imag:[0,1,2,5,8,9,10],coordin:[9,2,10,12,8],gam:[9,3],func:6,look:5,gethklmax:9,"while":[4,8],powderfil:8,abov:[4,8],error:[4,5,6,8,9,12],gettth:0,getpowderiparm:5,loop:6,vol:3,von:[],echelon:[],itself:6,uiso2uij:9,limit:[10,5,3,8],previousinvalid:8,plotintegr:2,irrelev:9,minim:[5,6],argonn:[],applyxyzshift:12,treeitemid:10,singlefloatdialog:8,elementt:[1,9],conflict:4,setvaryflag:4,optim:[3,6],restraint:[1,12,10],covari:[12,8],user:[5,9,8],viewparmdialog:5,typic:8,getusedhistogramsandphasesfromtre:5,lower:[6,8],phasenam:[12,2,10],"0x23764f0":[],entri:[4,9,10,8],restraintdict:12,gsa:[1,4,5,8,9,10,12],textctrl:8,propos:6,getfilelist:5,ruland:3,gsasiiconstrgui:[1,10],shape:3,covmatrix:[4,8],uij2betaij:9,instbank:5,getintensitycorr:12,input:[4,5,6,8,9,10,12],"0x17cc0b70":[],app:[5,8],float32:[],bin:9,contentsvalid:8,march:10,format:[5,9,8],getatomcoordsbyid:[],sgtext:9,ellist:[9,3],bit:11,getabsorb:12,onhelpbyid:8,lost:8,should:[4,5,9,8],zclip:10,valenc:9,strsta:0,encount:6,constr1:4,constr2:4,some:[0,4,6,10,8],back:9,wxpython:1,sampl:[0,6,5,3,9,10],multipleselect:8,ijk:9,cell2gmat:9,scale:[0,6,4,5,3,9,10],calcpdf:3,though:6,per:10,larg:8,plotimag:2,prob:9,run:[4,9,8],"2th":3,step:[10,3],output:[4,9,6,12,8],from:[0,2,4,5,6,8,9,10,11,12],getpowderpeak:8,constraint:[1,5,10,12,4],sizeh:10,lieberman:9,page:[2,10,8],modal:8,"0x17cc0970":[],updatenotebook:8,block:[9,8],hkld:9,"__future__":8,rho:[],getdetectorxi:0,getffvalu:12,keystrok:8,textureindex:9,setnewphas:8,groupconstraint:4,badvalu:3,npcosd:3,getdmax:11,apprevi:8,fast:[6,8],perp:0,includ:[9,11,12,8],"0x17d493b0":[],properli:8,pwr:11,transfertowindow:8,"0xc92aa30":9,sthl2:3,translat:9,delta:0,newatomdict:[12,8],info:[9,2,12,8],dfdvdict:12,idlist:[],consist:[4,8],pgbar:[],disaglctl:12,getatomitemsbyid:[],highlight:[10,8],constant:[4,9,6],projfilesav:8,doesn:9,horizontallin:8,jmin:6,g2phase:8,showcontrol:[12,7],gsasiistrmain:[1,12],titl:[5,10,8],sequenti:[4,5,8],invalid:8,nam:4,bmat:[],addmpl:2,angstrom:10,test_gsasiispc:9,asymmetr:9,getabsorbderv:12,draw:[9,10,8],groupedparm:8,gsasiiphsgui:[1,10],g2frame:[2,10,8],f000x:10,gsasiitoolbar:2,plotcanva:2,f000n:10,svn:9,algorithm:[9,6],psing:[],orbit:9,spcgroup:[9,12,8],iabsnt:9,powderdata:8,dict2map:4,ypix:0,scroll:8,x_new:6,code:[0,9,11,8],edf:8,edg:9,queri:6,broaden:2,"0x21e7df0":[],ellips:[0,2],multiintegerdialog:10,focu:8,qvq:[],showmod:8,elsewher:4,onimportgener:5,esd:[4,8],opposit:9,aris:8,g2plotmpl:2,"0xc92abb0":9,wave:[0,12,11,3],calczdiscosb:0,volum:9,showabc:10,tri:5,cctbx:9,button:[5,8],shtxcal:12,"0xc92aaf0":9,"try":6,"3x3":9,getusedhistogramsandphas:12,errstr:9,phasedata:12,pleas:8,getfprim:12,maintain:10,onpatterntreeselchang:[5,10],acid:9,carlo:10,click:10,append:8,exportbaseclass:8,index:[1,11,10,8],fitstrain:0,access:[2,8],experiment:6,onpagechang:2,gsasiistruct:5,feval:6,a2gmat:9,sint:8,len:[],bodi:[12,2,10],let:6,hkl:[9,11],sind:8,sine:8,sinc:8,gsasiiio:[1,5,8],refldata:[],convert:[4,9,8],copyright:[12,7],getpatterntreedatanam:8,ifcoup:9,sangl:9,getvcov:[],chang:[4,9,6,8],hexagon:9,maker:0,pxy:0,calibr:[1,9,2],appli:[4,12,8],approxim:9,scalex:0,submodul:[1,12,10],"boolean":9,dict2deriv:4,sgn:6,scalei:0,formulaev:8,invarraylist:4,zip:8,shcoef:9,chi:[0,9],doubl:[],gsasiipwd:3,isotrop:9,mydir:10,equivalenc:4,fitcircl:0,few:[],fep:6,save:[4,5,8],genhlau:9,sort:[9,8],"0xbdfdb70":9,getcellesd:12,gsasiidata:[1,9],trail:[],fixeddict:4,pfx:[12,3],retriev:9,extradoc:3,thin:8,scatter:[10,1,9,3,12],control:[0,5,3,7,8,10,11,12],printrestraint:12,"0xc92ab70":9,process:[4,10,8],tax:2,taz:2,htype:12,tab:[2,10],multiplechoicesdialog:8,xmin:6,tam:0,tan:[6,8],updateindexpeaksgrid:10,tai:2,revstr:9,notblank:8,surfac:0,fm3m:[],dpdpola:3,"0x17cc0ab0":[],brian:[],sig:[3,8],getbackupnam:12,getpreforiderv:12,backcolor:10,sij:3,sin:[9,3,8],likewis:4,frac:10,overridden:8,singular:4,gsasiimath:[1,6],prelbl:8,g2plot3d:2,depthfog:10,notebook:[10,8],inst:3,ranfunc:11,fitr:0,getindependentvar:4,bind:[9,10,8],getpowderprofil:12,correspond:[4,12,3],element:[10,1,9,3,8],allow:[4,5,3,9,8],asc:9,xyzequiv:9,newcelldict:8,hx2rh:9,move:[9,10,8],gethstrainshift:12,formatconstraint:[],outer:[10,6],treat:8,chosen:[2,8],getdependentvar:4,uijtou6:9,friedel:9,penaltyfxn:12,scextinct:12,greater:9,handl:[10,8],overal:[10,8],rowechelon:[],dat:9,shtxcalderv:12,mustrainnam:9,byteord:8,nkeep:4,distangl:12,nfb:9,nfa:9,edit:[5,8],halfcel:11,paramprefix:4,setdefaultsampl:10,jephcoat:3,mode:8,independentvar:4,getdistsig:[],multipleblockselector:8,product:[],sortarrai:[],setbackgroundparm:3,onpwdrsum:5,gsnotebook:8,getmagformfaccoeff:9,out:[4,8],variabl:[1,12,8,6,4],matrix:[0,9,12,8],onpatterntreeitemdelet:5,waal:10,stub:9,polfcal:9,suitabl:[0,9],rel:[4,6],lattic:9,ref:[10,12,3],matric:4,insid:9,atomuij2tl:[],dictionari:[4,5,3,8,9,10,12],latest:9,releas:9,singlestringdialog:8,dmax:11,valesd:[],val:8,could:5,put:[9,12,8],keep:8,length:[9,10,12,8],outsid:9,geometri:3,retain:8,choicelist:8,softwar:[9,8],itemloc:[],cmmm:[],constrdict:4,list1:8,q2mat:[],date:8,imagelocalmax:0,onreadpowderpeak:5,unknown:9,system:[9,8],messag:[5,9,12],arrayin:4,disagldata:12,subdirectori:9,man:10,"final":[4,6],storeequival:4,shell:8,cyc:[],thresh:3,rst:[],uniquecombin:9,stringopsprod:9,structur:[1,2,5,7,8,12],charact:[9,8],"0x17d49370":[],gsasiilattic:[1,9],bet:3,plotpowderlin:2,marfram:8,getpawleyconstr:12,ballscal:10,have:[4,9,8],dpsda:9,need:[0,2,5,3,7,8,9,10,11,12],mjk:4,hessian:[],getfcjvoigt:3,updatelimitsgrid:10,gsasii:[1,5,3,8,9,10,12],lener:9,discret:6,which:[1,2,3,5,6,8,9,10,4],longformatnam:8,detector:[2,3,8],singl:[4,5,2,12,8],textur:[12,10],unless:8,maxcyc:[],vdwradii:10,pyd:9,"class":[2,6,5,3,8,9,10],imagecalibr:[0,1,9],placement:10,retval:6,request:[2,8],indx:11,tornam:2,determin:[4,9,8],constrain:4,rotdmat:9,nmin:3,svngetrev:9,text:[5,9,8],filetyp:5,"0x2376530":[],bring:[10,8],redirect:5,locat:[10,1,9,6,8],rbdata:2,setdatamenubar:8,dispers:9,dict2valu:[12,3],fillarrai:[],gsasiistrmath:[1,12],anneal:[10,6],local:9,hope:8,fithklz:11,usefit:[],sgop:9,pwdr:[12,10,8],showbann:[12,7],pickel:10,beam:0,indparmlist:4,increas:[10,6,8],enabl:8,possibl:[4,9,8],stuff:6,integr:[0,2,8],contain:[2,4,5,3,8,9,10],shl:3,dpi:2,view:[5,10],constlist:12,penaltyderiv:12,gethklpeak:3,importmenuid:5,frame:[5,10,8],accord:9,"3mr":9,dialog:[5,8],powder:[1,2,5,3,8,9,10],dopawlei:10,dlg:[12,11,3,8],correctli:[3,8],sgdata:[10,9,3,12,8],nuclear:10,state:[9,6],setpeakparm:[],theta:[0,9,2,3],getwav:[],pawleylookup:12,xrang:6,kei:[4,12,3,8,9,10],updatereflectiongrid:10,zstep:10,entir:[12,8],onimportphas:5,"2pi":[],kev:9,deletedata:5,rbtype:2,getdens:[],fitdetector:0,equal:4,genhklf:9,etc:[0,9,2,3],instanc:2,equat:4,viewdir:10,onfileclos:5,rama:2,comment:8,indici:8,solv:[1,7],reciproc:[9,12],math:[1,9,12],respect:8,clearsigint:5,showstringvalid:8,torsion:2,quit:5,imageintegr:0,cent:9,childrenless:8,compon:8,fprime:9,calccontrol:12,mult2:4,mult1:4,immedi:6,kirfel:9,crsang:9,togeth:5,sigdict:[4,12],getepsvoigt:3,onpatterntreekeydown:5,getdepsvoigt:3,defin:[0,4,5,6,8,9,10],mz2:4,almost:8,site:[9,10],adjhklmax:[],refl:12,revis:9,ramachandrandist:9,getdatsig:[],histonam:10,cross:9,sqrt:[3,6,8],python:[1,9,8],pickid:8,largest:[9,6],phi:[0,9,3],ball:[2,10],slave:4,cubic:9,absorb:3,effect:4,ion:9,nob:[],transferfromwindow:8,expand:[5,8],uncertainti:4,absorbderv:3,center:[9,10],well:[4,5,9,8],exampl:8,command:8,sglaue:[9,12],position:9,momtyp:3,usual:[0,6],test1:[9,8],mfa:9,test3:9,mfc:9,test5:9,test4:9,test7:9,test6:9,test9:9,test8:9,nval:9,obtain:[5,6,9,8],readpowderiparm:5,a2cel:9,getconstraint:12,hess:[],adv:0,web:8,varynam:[],smith:0,checkinput:8,updaterbuij:[],add:[5,2,8],getfwhm:3,onhelpabout:8,densiti:[],bool:[5,6,8,9,10,12],match:[5,8],plotsngl:2,samsym:9,onpatterntreeitemexpand:5,press:[2,8],updatemcsaxyz:[],height:3,makequat:[],plotseq:2,loss:8,updatecontrol:8,like:[9,6],sizer:8,trigon:9,bravai:[9,11],xydata:3,gsasiiimggui:[1,10],resiz:5,imagefil:8,getwidthscw:3,polar:[9,3],linux:8,"export":8,updateddata:10,proper:9,genhbravai:9,librari:9,sampleparm:2,full_output:6,assum:[5,9],instfil:5,getpeakprofil:3,estim:6,fixval:9,g2plotnotebook:2,fouriermap:[],imaginari:9,"0x17cc09b0":[],zsum:0,cryst:[9,3],addogl:2,parentid:8,panel:8,setusedhistogramsandphas:12,about:[0,9,8],column:[9,8],freedom:4,odf:9,learn_rat:6,you:6,fals:[2,4,5,3,8,9,10,12],disabl:8,own:10,calcfij:0,getasfmean:3,automat:[5,8],dataset:5,diagon:[],waterfal:2,importsfactreaderlist:5,getdetxyfromthazm:0,van:10,sgsy:9,getnxupqsym:9,m3m:9,texturedata:12,onhelp:2,"3m1":9,appl:[3,8],inner:[10,9,6],"0x17cc0b30":[],"var":4,newimag:2,individu:8,"function":[1,2,3,12,6,8,9],getdistderv:[],uijequiv:9,unexpect:4,processconstraint:12,histogram:[5,10,12,8],scatfac:9,bltabl:12,highest:9,loc:8,leastsq:[12,3,8],made:12,bondlist:10,whether:6,displai:[5,2,10,8],below:[9,6,8],indexpeak:11,otherwis:[9,8],problem:[4,6,8],whichsvn:9,instead:8,getfcjvoigt3:3,evalu:[6,8],"int":[0,6,5,3,8,10],mask:[0,2,10],pid:10,pix:0,nfc:9,implement:[4,6,8],calc_v:9,ind:[],fjac:[],probabl:[9,10],getatomxyz:[],plottors:2,sglatt:9,collabel:8,detail:[4,9,10],calcincid:3,importpowderdata:[5,8],readmarccdfram:[1,8],other:[10,4,9,6,8],lookup:9,ellipses:3,varieti:8,my1:4,ndarrai:6,getresttors:[],sytsym:9,quaternion:10,scrolledmultieditor:8,collist:[],scientif:8,overallparm:8,importbaseclass:8,myhtmlpanel:8,onchar:8,rbid:12},objtypes:{"0":"py:module","1":"py:function","2":"py:method","3":"py:class","4":"py:data","5":"py:attribute"},titles:["<em>GSASIIimage: Image calc module</em>","GSAS-II Developer&#8217;s Documentation","<em>GSASIIplot: plotting routines</em>","<em>GSASII powder calculation module</em>","<em>GSASIImapvars: Parameter constraints</em>","<em>GSAS-II Main Module</em>","<em>GSASIImath: computation module</em>","<em>GSASIIsolve - structure solving routines</em>","<em>GSAS-II GUI Routines</em>","<em>GSAS-II Utility Modules</em>","<em>GSAS-II GUI Submodules</em>","<em>GSASIIindex: Cell Indexing Module</em>","<em>GSAS-II Structure  Submodules</em>"],objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","method","Python method"],"3":["py","class","Python class"],"4":["py","data","Python data"],"5":["py","attribute","Python attribute"]},filenames:["GSASIIimage","index","GSASIIplot","GSASIIpwd","GSASIImapvars","GSASII","GSASIImath","GSASIIsolve","GSASIIGUIr","GSASIIutil","GSASIIGUI","GSASIIindex","GSASIIstruc"]})
     1Search.setIndex({objects:{"":{GSASIIgrid:[8,0,1,""],GSASIImapvars:[4,0,1,""],GSASIIobj:[13,0,1,""],GSASIIpy3:[8,0,1,""],GSASIIstrMath:[11,0,1,""],GSASIIindex:[12,0,1,""],GSASIIstrIO:[11,0,1,""],ReadMarCCDFrame:[8,0,1,""],GSASIIphsGUI:[10,0,1,""],GSASIIrestrGUI:[10,0,1,""],GSASII:[5,0,1,""],GSASIIpath:[9,0,1,""],GSASIIpwd:[3,0,1,""],GSASIIElemGUI:[10,0,1,""],GSASIIimage:[0,0,1,""],GSASIIpwdGUI:[10,0,1,""],GSASIIplot:[2,0,1,""],GSASIImath:[6,0,1,""],GSASIIsolve:[7,0,1,""],GSASIIddataGUI:[10,0,1,""],GSASIIdata:[9,0,1,""],GSASIIimgGUI:[10,0,1,""],FormFactors:[9,0,1,""],GSASIIElem:[9,0,1,""],GSASIIIO:[8,0,1,""],ImageCalibrants:[9,0,1,""],ElementTable:[9,0,1,""],unit_tests:[9,0,1,""],GSASIIconstrGUI:[10,0,1,""],GSASIIlattice:[9,0,1,""],GSASIIstrMain:[11,0,1,""],GSASIIspc:[9,0,1,""]},GSASIIimgGUI:{UpdateImageControls:[10,1,1,""],UpdateMasks:[10,1,1,""],UpdateStressStrain:[10,1,1,""]},GSASIIgrid:{SingleStringDialog:[8,3,1,""],AddHelp:[8,3,1,""],UpdatePWHKPlot:[8,1,1,""],MyHelp:[8,3,1,""],MyHtmlPanel:[8,3,1,""],GetPatternTreeItemId:[8,1,1,""],GridFractionEditor:[8,3,1,""],GetPatternTreeDataNames:[8,1,1,""],ItemSelector:[8,1,1,""],HorizontalLine:[8,1,1,""],UpdateSeqResults:[8,1,1,""],GSNoteBook:[8,3,1,""],GSGrid:[8,3,1,""],UpdateNotebook:[8,1,1,""],UpdateHKLControls:[8,1,1,""],MovePatternTreeToGrid:[8,1,1,""],ShowHelp:[8,1,1,""],ScrolledMultiEditor:[8,3,1,""],PickTwoDialog:[8,3,1,""],DisAglDialog:[8,3,1,""],DataFrame:[8,3,1,""],CallScrolledMultiEditor:[8,1,1,""],G2HtmlWindow:[8,3,1,""],SingleFloatDialog:[8,3,1,""],ValidatedTxtCtrl:[8,3,1,""],SymOpDialog:[8,3,1,""],SetDataMenuBar:[8,1,1,""],NumberValidator:[8,3,1,""],UpdateControls:[8,1,1,""],Table:[8,3,1,""]},GSASIImapvars:{ComputeDepESD:[4,1,1,""],GenerateConstraints:[4,1,1,""],GetIndependentVars:[4,1,1,""],GroupConstraints:[4,1,1,""],CheckConstraints:[4,1,1,""],GetDependentVars:[4,1,1,""],Dict2Map:[4,1,1,""],GramSchmidtOrtho:[4,1,1,""],Dict2Deriv:[4,1,1,""],VarRemapShow:[4,1,1,""],InitVars:[4,1,1,""],StoreEquivalence:[4,1,1,""],PrintIndependentVars:[4,1,1,""],Map2Dict:[4,1,1,""]},GSASIIobj:{LoadHistogramIDs:[13,1,1,""],VarName:[13,3,1,""]},"GSASIIobj.VarName":{fullDescr:[13,2,1,""],name:[13,2,1,""],getDescr:[13,2,1,""]},"GSASIIplot.G2PlotNoteBook":{Rename:[2,2,1,""],add3D:[2,2,1,""],OnPageChanged:[2,2,1,""],clear:[2,2,1,""],addOgl:[2,2,1,""],addMpl:[2,2,1,""],Delete:[2,2,1,""]},"GSASII.GSASII":{OnImportPhase:[5,2,1,""],CopyDialog:[5,3,1,""],OnPatternTreeItemDelete:[5,2,1,""],OnImportPowder:[5,2,1,""],OnSize:[5,2,1,""],SumDialog:[5,3,1,""],OnPatternTreeItemCollapsed:[5,2,1,""],OnRefine:[5,2,1,""],OnFileClose:[5,2,1,""],CheckNotebook:[5,2,1,""],OnFileExit:[5,2,1,""],GetPhaseData:[5,2,1,""],OnImageRead:[5,2,1,""],OnPatternTreeItemExpanded:[5,2,1,""],ErrorDialog:[5,2,1,""],OnPwdrSum:[5,2,1,""],ViewParmDialog:[5,3,1,""],OnReadPowderPeaks:[5,2,1,""],GetPWDRdatafromTree:[5,2,1,""],OnImageSum:[5,2,1,""],FillMainMenu:[5,2,1,""],GetUsedHistogramsAndPhasesfromTree:[5,2,1,""],OnSeqRefine:[5,2,1,""],OnPatternTreeKeyDown:[5,2,1,""],OnMakePDFs:[5,2,1,""],OnImportSfact:[5,2,1,""],OnViewLSParms:[5,2,1,""],OnFileSaveas:[5,2,1,""],OnFileSave:[5,2,1,""],ReadPowderIparm:[5,2,1,""],OnRenameData:[5,2,1,""],GetPowderIparm:[5,2,1,""],OnFileOpen:[5,2,1,""],GetHKLFdatafromTree:[5,2,1,""],ExitMain:[5,2,1,""],GetFileList:[5,2,1,""],OnAddPhase:[5,2,1,""],ReadPowderInstprm:[5,2,1,""],OnImportGeneric:[5,2,1,""],ConstraintDialog:[5,3,1,""],OnDataDelete:[5,2,1,""],OnPatternTreeItemActivated:[5,2,1,""],OnDeletePhase:[5,2,1,""],OnPatternTreeSelChanged:[5,2,1,""]},GSASIIstrMath:{errRefine:[11,1,1,""],Values2Dict:[11,1,1,""],GetAtomFXU:[11,1,1,""],GetIntensityCorr:[11,1,1,""],GetHStrainShift:[11,1,1,""],GetReflPos:[11,1,1,""],dervRefine:[11,1,1,""],getPowderProfile:[11,1,1,""],GetHStrainShiftDerv:[11,1,1,""],StructureFactor:[11,1,1,""],GetAbsorbDerv:[11,1,1,""],penaltyDeriv:[11,1,1,""],StructureFactorDerv:[11,1,1,""],SCExtinction:[11,1,1,""],SHTXcal:[11,1,1,""],Dict2Values:[11,1,1,""],ApplyRBModels:[11,1,1,""],HessRefine:[11,1,1,""],ApplyXYZshifts:[11,1,1,""],GetFobsSq:[11,1,1,""],GetPrefOri:[11,1,1,""],GetReflPosDerv:[11,1,1,""],penaltyFxn:[11,1,1,""],GetSampleSigGam:[11,1,1,""],SHTXcalDerv:[11,1,1,""],GetNewCellParms:[11,1,1,""],GetSampleSigGamDerv:[11,1,1,""],GetAbsorb:[11,1,1,""],ApplyRBModelDervs:[11,1,1,""],GetPrefOriDerv:[11,1,1,""],SHPOcalDerv:[11,1,1,""],getPowderProfileDerv:[11,1,1,""],SHPOcal:[11,1,1,""],GetIntensityDerv:[11,1,1,""]},GSASIIindex:{monoCellReduce:[12,1,1,""],halfCell:[12,1,1,""],getDmax:[12,1,1,""],getDmin:[12,1,1,""],IndexPeaks:[12,1,1,""],FitHKL:[12,1,1,""],Values2A:[12,1,1,""],calc_M20:[12,1,1,""],sortM20:[12,1,1,""],FitHKLZ:[12,1,1,""],ranaxis:[12,1,1,""],DoIndexPeaks:[12,1,1,""],rotOrthoA:[12,1,1,""],scaleAbyV:[12,1,1,""],A2values:[12,1,1,""],rancell:[12,1,1,""],oddPeak:[12,1,1,""],refinePeaksZ:[12,1,1,""],findBestCell:[12,1,1,""],ran2axis:[12,1,1,""],ranAbyR:[12,1,1,""],swapMonoA:[12,1,1,""],ranAbyV:[12,1,1,""],refinePeaks:[12,1,1,""],TestData:[12,1,1,""]},GSASIIstrIO:{getCellEsd:[11,1,1,""],GetRigidBodyModels:[11,1,1,""],GetHistogramData:[11,1,1,""],GetRigidBodies:[11,1,1,""],SetPhaseData:[11,1,1,""],GetAllPhaseData:[11,1,1,""],GetHistogramPhaseData:[11,1,1,""],cellVary:[11,1,1,""],GetConstraints:[11,1,1,""],CheckConstraints:[11,1,1,""],GetUsedHistogramsAndPhases:[11,1,1,""],GetPawleyConstr:[11,1,1,""],GetPhaseData:[11,1,1,""],SetRigidBodyModels:[11,1,1,""],ShowControls:[11,1,1,""],ShowBanner:[11,1,1,""],GetFprime:[11,1,1,""],SetSeqResult:[11,1,1,""],ProcessConstraints:[11,1,1,""],GetPhaseNames:[11,1,1,""],GetHistograms:[11,1,1,""],GetControls:[11,1,1,""],GetRestraints:[11,1,1,""],GPXBackup:[11,1,1,""],PrintRestraints:[11,1,1,""],getBackupName:[11,1,1,""],SetUsedHistogramsAndPhases:[11,1,1,""],SetHistogramData:[11,1,1,""],GetHistogramNames:[11,1,1,""],cellFill:[11,1,1,""],SetHistogramPhaseData:[11,1,1,""]},"GSASIIIO.ImportBaseclass":{ContentsValidator:[8,2,1,""],MultipleBlockSelector:[8,2,1,""],BlockSelector:[8,2,1,""],MultipleChoicesDialog:[8,2,1,""],ExtensionValidator:[8,2,1,""]},GSASIIphsGUI:{UpdatePhaseData:[10,1,1,""]},GSASIIrestrGUI:{UpdateRestraints:[10,1,1,""]},GSASII:{GSASIImain:[5,3,1,""],GSASII:[5,3,1,""],main:[5,1,1,""]},GSASIIpath:{svnFindLocalChanges:[9,1,1,""],GetVersionNumber:[9,1,1,""],SetVersionNumber:[9,1,1,""],svnGetRev:[9,1,1,""],svnUpdateDir:[9,1,1,""],whichsvn:[9,1,1,""]},GSASIIpwd:{getFCJVoigt3:[3,1,1,""],norm_gen:[3,3,1,""],getdFCJVoigt3:[3,1,1,""],factorize:[3,1,1,""],getBackground:[3,1,1,""],getPeakProfile:[3,1,1,""],calcIncident:[3,1,1,""],DoPeakFit:[3,1,1,""],Dict2Values:[3,1,1,""],getEpsVoigt:[3,1,1,""],getFCJVoigt:[3,1,1,""],GetNumDensity:[3,1,1,""],ellipseSizeDerv:[3,1,1,""],AbsorbDerv:[3,1,1,""],CalcPDF:[3,1,1,""],Absorb:[3,1,1,""],GetAsfMean:[3,1,1,""],getdEpsVoigt:[3,1,1,""],Values2Dict:[3,1,1,""],fcjde_gen:[3,3,1,""],getHKLpeak:[3,1,1,""],LorchWeight:[3,1,1,""],Transmission:[3,1,1,""],getWidthsCW:[3,1,1,""],getPeakProfileDerv:[3,1,1,""],makeFFTsizeList:[3,1,1,""],cauchy_gen:[3,3,1,""],Polarization:[3,1,1,""],Oblique:[3,1,1,""],ellipseSize:[3,1,1,""],getFWHM:[3,1,1,""],getBackgroundDerv:[3,1,1,""],SetBackgroundParms:[3,1,1,""],Ruland:[3,1,1,""],TestData:[3,1,1,""],getWidthsTOF:[3,1,1,""]},"GSASIIgrid.NumberValidator":{TransferToWindow:[8,2,1,""],Clone:[8,2,1,""],TestValid:[8,2,1,""],CheckInput:[8,2,1,""],ShowValidity:[8,2,1,""],TransferFromWindow:[8,2,1,""],OnChar:[8,2,1,""]},"GSASIIgrid.MyHelp":{OnHelpById:[8,2,1,""],OnHelpAbout:[8,2,1,""],OnCheckUpdates:[8,2,1,""]},"GSASIIgrid.DataFrame":{PostfillDataMenu:[8,2,1,""],Bind:[8,2,1,""],PrefillDataMenu:[8,2,1,""]},GSASIIElemGUI:{PickElement:[10,3,1,""],DeleteElement:[10,3,1,""]},ReadMarCCDFrame:{marFrame:[8,3,1,""]},"GSASIIElemGUI.PickElement":{ElButton:[10,2,1,""]},GSASIIimage:{pointInPolygon:[0,1,1,""],FitCircle:[0,1,1,""],makeRing:[0,1,1,""],GetEllipse:[0,1,1,""],ImageCalibrate:[0,1,1,""],makeIdealRing:[0,1,1,""],EdgeFinder:[0,1,1,""],ImageIntegrate:[0,1,1,""],GetDsp:[0,1,1,""],Fill2ThetaAzimuthMap:[0,1,1,""],GetAzm:[0,1,1,""],calcFij:[0,1,1,""],FitDetector:[0,1,1,""],makeMat:[0,1,1,""],calcZdisCosB:[0,1,1,""],ImageRecalibrate:[0,1,1,""],ImageCompress:[0,1,1,""],FitEllipse:[0,1,1,""],GetTthAzm:[0,1,1,""],calcDist:[0,1,1,""],Make2ThetaAzimuthMap:[0,1,1,""],GetTthAzmDsp:[0,1,1,""],GetDetectorXY:[0,1,1,""],FitRing:[0,1,1,""],checkEllipse:[0,1,1,""],GetDetXYfromThAzm:[0,1,1,""],FitStrain:[0,1,1,""],ImageLocalMax:[0,1,1,""],peneCorr:[0,1,1,""],FitStrSta:[0,1,1,""],GetTth:[0,1,1,""]},"GSASIIgrid.ScrolledMultiEditor":{ControlOKButton:[8,2,1,""]},GSASIIpwdGUI:{UpdatePeakGrid:[10,1,1,""],UpdateLimitsGrid:[10,1,1,""],UpdatePDFGrid:[10,1,1,""],UpdateBackground:[10,1,1,""],UpdateReflectionGrid:[10,1,1,""],SetDefaultSample:[10,1,1,""],UpdateUnitCellsGrid:[10,1,1,""],UpdateInstrumentGrid:[10,1,1,""],UpdateIndexPeaksGrid:[10,1,1,""],UpdateSampleGrid:[10,1,1,""],IsHistogramInAnyPhase:[10,1,1,""]},GSASIIplot:{PlotDeltSig:[2,1,1,""],PlotRama:[2,1,1,""],PlotPatterns:[2,1,1,""],PlotPeakWidths:[2,1,1,""],PlotExposedImage:[2,1,1,""],G2PlotNoteBook:[2,3,1,""],PlotTorsion:[2,1,1,""],PlotTexture:[2,1,1,""],G2PlotMpl:[2,3,1,""],PlotSeq:[2,1,1,""],PlotStructure:[2,1,1,""],PlotCovariance:[2,1,1,""],PlotSizeStrainPO:[2,1,1,""],G2PlotOgl:[2,3,1,""],PlotISFG:[2,1,1,""],PlotRigidBody:[2,1,1,""],PlotPowderLines:[2,1,1,""],PlotXY:[2,1,1,""],GSASIItoolbar:[2,3,1,""],PlotTRImage:[2,1,1,""],PlotIntegration:[2,1,1,""],G2Plot3D:[2,3,1,""],PlotImage:[2,1,1,""],PlotSngl:[2,1,1,""]},"GSASIIIO.ImportStructFactor":{UpdateControls:[8,2,1,""]},GSASIImath:{anneal:[6,1,1,""]},"GSASIIIO.ImportPowderData":{powderdata:[8,5,1,""]},"GSASIIgrid.ValidatedTxtCtrl":{ShowStringValidity:[8,2,1,""],EvaluateExpression:[8,2,1,""]},GSASIIsolve:{ShowBanner:[7,1,1,""],main:[7,1,1,""],Solve:[7,1,1,""],ShowControls:[7,1,1,""]},GSASIIddataGUI:{UpdateDData:[10,1,1,""]},GSASIIspc:{test1:[9,1,1,""],test0:[9,1,1,""],test3:[9,1,1,""],test2:[9,1,1,""],SytSym:[9,1,1,""],StandardizeSpcName:[9,1,1,""],GetCSuinel:[9,1,1,""],SGErrors:[9,1,1,""],GetKNsym:[9,1,1,""],HStrainNames:[9,1,1,""],SpcGroup:[9,1,1,""],GetNXUPQsym:[9,1,1,""],MustrainNames:[9,1,1,""],selftestlist:[9,4,1,""],GetOprPtrName:[9,1,1,""],GenHKLf:[9,1,1,""],Muiso2Shkl:[9,1,1,""],ElemPosition:[9,1,1,""],SpaceGroup:[9,1,1,""],StringOpsProd:[9,1,1,""],Latt2text:[9,1,1,""],GenAtom:[9,1,1,""],SGpolar:[9,1,1,""],GetCSxinel:[9,1,1,""],ApplyStringOps:[9,1,1,""],SGPrint:[9,1,1,""],Opposite:[9,1,1,""],MT2text:[9,1,1,""],MoveToUnitCell:[9,1,1,""],MustrainCoeff:[9,1,1,""]},"GSASIIplot.GSASIItoolbar":{OnHelp:[2,2,1,""],OnKey:[2,2,1,""]},"GSASII.GSASIImain":{OnInit:[5,2,1,""]},"GSASIIElemGUI.DeleteElement":{ElButton:[10,2,1,""]},"GSASIIIO.ExportBaseclass":{loadTree:[8,2,1,""],dumpTree:[8,2,1,""]},GSASIIElem:{GetFFC5:[9,1,1,""],GetXsectionCoeff:[9,1,1,""],FixValence:[9,1,1,""],GetFormFactorCoeff:[9,1,1,""],CheckElement:[9,1,1,""],getFFvalues:[9,1,1,""],getBLvalues:[9,1,1,""],GetMagFormFacCoeff:[9,1,1,""],ScatFac:[9,1,1,""],FPcalc:[9,1,1,""],GetBLtable:[9,1,1,""],GetAtomInfo:[9,1,1,""],ComptonFac:[9,1,1,""],GetFFtable:[9,1,1,""]},GSASIIIO:{GetEdfData:[8,1,1,""],ImportStructFactor:[8,3,1,""],GetGEsumData:[8,1,1,""],GetTifData:[8,1,1,""],ImportPowderData:[8,3,1,""],ReadPDBPhase:[8,1,1,""],PDFSave:[8,1,1,""],GetG2Image:[8,1,1,""],powderFxyeSave:[8,1,1,""],ExtractFileFromZip:[8,1,1,""],CheckImageFile:[8,1,1,""],GetImgData:[8,1,1,""],MultipleChoicesDialog:[8,3,1,""],FileDlgFixExt:[8,1,1,""],SaveIntegration:[8,1,1,""],sint:[8,1,1,""],SetNewPhase:[8,1,1,""],IndexPeakListSave:[8,1,1,""],PutG2Image:[8,1,1,""],ProjFileOpen:[8,1,1,""],GetImageData:[8,1,1,""],ProjFileSave:[8,1,1,""],GetPowderPeaks:[8,1,1,""],ExportBaseclass:[8,3,1,""],GetMAR345Data:[8,1,1,""],ReadEXPPhase:[8,1,1,""],ImportBaseclass:[8,3,1,""],ImportPhase:[8,3,1,""],sfloat:[8,1,1,""],PeakListSave:[8,1,1,""],powderXyeSave:[8,1,1,""]},"GSASIIgrid.SingleStringDialog":{GetValue:[8,2,1,""],Show:[8,2,1,""]},unit_tests:{test_GSASIIlattice:[9,1,1,""],test_GSASIIspc:[9,1,1,""]},GSASIIconstrGUI:{MultiIntegerDialog:[10,3,1,""],UpdateConstraints:[10,1,1,""],UpdateRigidBodies:[10,1,1,""]},"GSASIIgrid.AddHelp":{OnHelpById:[8,2,1,""]},GSASIIlattice:{cell2Gmat:[9,1,1,""],Hx2Rh:[9,1,1,""],test3:[9,1,1,""],test2:[9,1,1,""],A2Gmat:[9,1,1,""],test4:[9,1,1,""],test7:[9,1,1,""],test6:[9,1,1,""],getHKLmax:[9,1,1,""],test8:[9,1,1,""],permutations:[9,1,1,""],CellBlock:[9,1,1,""],Rh2Hx:[9,1,1,""],Flnh:[9,1,1,""],fillgmat:[9,1,1,""],invpolfcal:[9,1,1,""],GetBraviasNum:[9,1,1,""],calc_rDsq2:[9,1,1,""],test5:[9,1,1,""],rotdMat4:[9,1,1,""],SwapIndx:[9,1,1,""],GenSHCoeff:[9,1,1,""],CentCheck:[9,1,1,""],Gmat2AB:[9,1,1,""],CellAbsorption:[9,1,1,""],UijtoU6:[9,1,1,""],selftestlist:[9,4,1,""],test9:[9,1,1,""],invcell2Gmat:[9,1,1,""],polfcal:[9,1,1,""],calc_V:[9,1,1,""],textureIndex:[9,1,1,""],GetKsl:[9,1,1,""],calc_rVsq:[9,1,1,""],sec2HMS:[9,1,1,""],GenHLaue:[9,1,1,""],CosSinAngle:[9,1,1,""],rotdMat:[9,1,1,""],SamAng:[9,1,1,""],cell2A:[9,1,1,""],criticalEllipse:[9,1,1,""],MaxIndex:[9,1,1,""],Gmat2cell:[9,1,1,""],combinations:[9,1,1,""],uniqueCombinations:[9,1,1,""],CrsAng:[9,1,1,""],Glnh:[9,1,1,""],cell2AB:[9,1,1,""],selections:[9,1,1,""],GetKcl:[9,1,1,""],calc_rDsq:[9,1,1,""],sortHKLd:[9,1,1,""],calc_rV:[9,1,1,""],calc_rDsqZ:[9,1,1,""],OdfChk:[9,1,1,""],A2cell:[9,1,1,""],GetKclKsl:[9,1,1,""],test1:[9,1,1,""],GenHBravais:[9,1,1,""],Gmat2A:[9,1,1,""],A2invcell:[9,1,1,""],U6toUij:[9,1,1,""],Uij2betaij:[9,1,1,""]},"GSASIIIO.ImportPhase":{PhaseSelector:[8,2,1,""]},GSASIIstrMain:{SeqRefine:[11,1,1,""],DistAngle:[11,1,1,""],DisAglTor:[11,1,1,""],Refine:[11,1,1,""],BestPlane:[11,1,1,""],main:[11,1,1,""]},GSASIIpy3:{FormatValue:[8,1,1,""],FormulaEval:[8,1,1,""]}},terms:{getnumdens:3,structurefactorderv:11,orthogon:9,yellow:8,four:[13,6,8],elemlst:8,fcjde_gen:3,helplbl:8,aui:8,ranabyv:12,deviat:6,noatom:13,"0xbdfd930":[],under:[9,11],mustrain:[9,2],showhelp:8,calcdist:0,everi:[4,13,6,8,9,5],"0x20d5070":[],readpdbphas:8,uij2u:9,radiusfactor:13,affect:4,relval:[],dependentparmlist:4,unitcellbox:13,atomdata:9,gethistogram:11,correct:[5,3,9,11,8],"0x17d4a270":9,vector:[4,9,13],ran2axi:12,fill2thetaazimuthmap:0,getrestplan:[],calc_m20:12,"0xc92ac30":[],importstructfactor:[5,8],direct:13,getdfcjvoigt3:3,second:[13,4,5,9],"4x4":9,even:[9,13],neg:[13,8],atomuij2tl:[],checknotebook:5,"new":[4,13,6,8,9,11,5],databank:5,"49012e":[],widget:[10,8],"0x17d492f0":[],here:[9,8],met:[],path:[5,9],interpret:[9,13,11],interatom:13,precis:8,ranabyr:12,"0xb96c8f0":[],aka:13,covdata:11,linearli:4,putg2imag:8,total:9,unit:[1,4,13,8,9,10],ftol:[],plot:[1,13,2],describ:[4,9],dmdv:4,seqnam:2,flnh:9,fillatomlookup:[],positiveonli:8,call:[6,4,5,3,8,9,10,11],"0x20d3fb0":[],calc:[0,1,3,8],type:[1,2,13,8,9,11],until:[],cellfil:11,swap:[],updatehklcontrol:8,inst2:3,inflect:9,relat:[4,9,13,11],notic:[11,7],warn:11,"0x17d4a870":9,"0xc92aab0":[],must:[4,13,8],"2phi":3,cell2ab:9,setup:[11,3],work:[9,8],root:13,obliqu:3,avdeg2q:[],overrid:8,sorthkld:9,"0x17cc0a70":[],digit:8,indic:[4,9,6,13,8],edgefind:0,getphasedata:[5,11],odfchk:9,cylind:3,ilim:0,gsasiiimag:[0,1],how:[9,6],histophas:11,collaps:5,lam:9,u22:9,less:[9,6,8],after:[4,11,2,3,8],substanc:9,befor:[6,4,13,3,8,11],sedg:9,rulcoff:3,oninit:5,"0x17d1a170":[],cellvari:11,attempt:[5,8],third:13,constraintdialog:5,gsasiielemgui:[1,10],jlim:0,enter:8,lambda:[9,3],g13:9,g12:9,g11:9,oatom:[],origin:4,over:[6,8],mx2:4,becaus:[9,8],addit:[4,8],mx1:4,veri:8,incid:0,varremapshow:4,vari:[4,13,6],"0x17d1a1b0":[],sgtbx:9,img:8,fix:[4,13,3,8],orthonorm:4,rigidbodi:11,ifdup:9,gsasiiddata:10,getbackgroundderv:3,"0x17d180b0":[],treeitemid:10,gridfractioneditor:8,calc_rvsq:9,oncheckupd:8,them:[4,9,11,8],plotrama:2,thei:[4,9,13,8],var2:13,coehlo:12,g2obj:[],readpowderinstprm:5,"break":8,printrho:[],g2frame:[2,10,8],setvalu:8,bank:5,choic:[10,8],getvalu:8,neutron:[9,13],atptr:11,svnfindlocalchang:9,g2htmlwindow:8,european:8,"0x17d49430":[],side:9,mean:[3,8],wxapp:5,updateseqresult:8,laboratori:9,extract:[9,13,8],unbound:8,newli:4,gof:13,rh2hx:9,dsp:0,content:[13,8,9,10,11,5],reader:[5,8],comptonfac:9,ntz:[],oxyz:[],free:9,standard:[1,9,8],helptyp:8,longnam:3,fcalcpres:8,angl:[0,2,13,3,8,9],"0x7a3feb0":[],"0xc92ab30":[],iso:13,getknsym:9,shkl:9,rang:6,"0x17d4a730":9,independ:4,unlik:4,alreadi:8,"0x2376470":[],thick:3,agre:5,sgcen:[9,13],cartesian:[9,13],"0x17d1a0f0":[],tor:[],top:[13,8],xdata:3,master:4,dwell:6,zipfil:8,a31:9,q2avdeg:[],makemat:0,phipsi:2,getfobssq:11,test_gsasiilattic:9,keyword:8,provid:[4,3,8],getrestangl:[],hname:11,atomtyp:[9,13],project:[5,8],matter:[9,8],plotcovari:2,rotdmat4:9,jmol:9,plotstructur:2,maxdigit:8,quench:6,deleteel:10,rai:[0,9,3,13],fithkl:12,raw:5,seed:6,seen:[9,2],seem:8,getazm:0,pickl:8,applyrbmodel:11,latter:4,elsym:9,hklfname:5,parmlist:4,scaleabyv:12,object:[1,13,8,9,10,5],boltzmann:6,rbmodel:[13,11],letter:[9,13],phase:[1,2,5,8,9,10,11,13],typ:8,im3m:[],usecancel:8,tradit:13,imagerecalibr:0,gettthazmdsp:0,simplif:4,doc:[0,2,11,3,7,8,9,10,12],"0x20d51b0":[],doe:[0,5,13,8],sitesym:9,gmat2cel:9,section:9,came:8,fhkl:[],abl:5,random:[13,6],radiu:[0,13,3],radii:[0,13],getbltabl:9,pkg:8,generateconstraint:4,involv:4,uniquecombin:9,gettorsionsig:[],ellipsoid:[9,2,13],contourlevel:13,menu:[5,8],explain:[],"0xb931c30":[],gsasiimapvar:[1,4],version:9,sethistogramphasedata:11,balyuzi:9,maetric:9,testdata:[12,3],plate:[3,8],shkei:[],wide:8,bondradiu:13,stop:6,errrefin:11,ierr:9,bondradii:13,symmetr:[],dgmda:9,makefftsizelist:3,"0x17d49330":[],respond:[2,10],headinglist:8,plotpeakwidth:2,datatyp:[5,3,8],num:3,dervrefin:11,result:[9,6,13,11,8],respons:5,fail:9,fosq:8,best:[9,8],movetounitcel:9,dependentlist:4,tensor:[9,13,11],mur:3,wikipedia:4,atlookup:11,figur:2,finger:3,parmdict:[0,4,5,3,11],triplet:13,omg:0,gpxfile:[11,7],gsasiirestrgui:[1,10],newnam:2,updateimagecontrol:10,extens:[5,8],ranid:13,toler:[9,6],"0xb96cd30":[],cox:3,compton:[9,3],against:9,refltyp:[],omitmap:[],chargeflip:[],browser:8,setseqresult:11,con:13,schmidt:4,base_schedul:6,"2nd":9,permut:9,xtol:3,swapindx:9,gethistogramphasedata:11,itemselector:8,duplic:[9,8],gethklfdatafromtre:5,clip:13,getdmin:12,numpi:[1,9,3,6,8],three:[4,13,6,8],been:[4,9,6,8],marquardt:13,much:8,mult:13,basic:[1,8],futur:[5,3,8],known:5,"0xb931db0":[],filedlgfixext:8,ani:[4,13,8,9,11,5],cauchy_gen:3,hklfdata:5,pdfsave:8,"0xb931cf0":[],findoffset:[],ident:[9,8],diffract:[1,5,10,9,8],tand:8,cell2a:9,calcul:[1,5,3,9],getpwdrdatafromtre:5,glnh:9,elbutton:10,oldpag:10,"0xc92aa70":[],kwarg:[2,8],setmolc:[],sever:4,getpowderprofilederv:11,incorrectli:8,perform:[5,6,9,7,8],make:[0,5,8,9,10,11],complex:4,descend:9,mcsa:13,phasenum:13,"0x1e741f0":[],numbervalid:8,refin:[4,5,8,11,12,13],movepatterntreetogrid:[10,8],topa:8,redefin:4,wtype:5,min:8,contact:9,"0x17d1a970":[],thi:[0,1,2,4,5,8,9,10,12,13],eleterm:9,onpatterntreeitemcollaps:5,left:13,stringent:6,identifi:8,just:9,getreflposderv:11,doindexpeak:12,equivalanc:4,getreflpo:11,sgsymbol:9,yet:12,previous:4,directli:13,mix:4,getwidthstof:3,fortran:9,hap:13,els:[9,11],expon:8,take:[4,9,11,8],applic:5,cossinangl:9,"0x20d5bb0":[],preserv:8,onmakepdf:5,ifrevers:9,id_ok:8,background:[10,13,3,8],authorship:[11,7],getsyxyz:[],searchmap:[],"0x1e74930":[],g33:9,vdw:13,specif:[5,9,8],arbitrari:[9,13],oddpeak:12,oxid:9,right:3,old:[5,9],"0x6c91d70":[],deal:9,intern:4,maxit:6,getintensityderv:11,transmiss:3,plotdeltsig:2,thu:[4,8],uniq:9,normal:[2,6],subclass:5,getbackground:3,gettifdata:8,condit:6,formfactor:[1,9],plu:1,histnum:13,binden:9,baktyp:3,av2q:[],hst:4,post:8,fvec:[],filepoint:8,obj:5,atomtls2uij:[],latt2text:9,slightli:9,simul:[13,6],"0xb931d70":[],produc:8,postfilldatamenu:8,t_new:6,regist:[9,8],xyz:[9,13,11],"float":[0,6,4,13,3,8,9],bound:[5,6],xye:8,accordingli:8,wai:[9,8],support:8,gettthazm:0,transform:[9,13],why:5,avail:[2,6],getatomfxu:11,editor:8,fraction:[9,13,8],analysi:2,head:[9,8],form:[4,9,13],offer:8,forc:8,obcoeff:3,plottextur:2,"0x20d57f0":[],formatnam:8,"true":[2,13,8,9,11,5],rbobj:[],absent:9,azm:[0,3],coeff:[9,2,3],pawleyvari:11,maximum:[3,9,6,13,8],tell:8,crystal:[5,2,9,11],gettorsionderiv:[],prodqvq:[],updatebackground:10,"0x6c91cf0":[],dumptre:8,hstrainnam:9,diagnost:2,triclin:[9,13],updateunitcellsgrid:10,face:9,check:[4,9,8],computedepesd:4,nx1:4,fixedvarlist:4,when:[0,2,5,8,9,10,13],refactor:[0,12],role:13,test:[1,9,2,6,8],tif:8,intend:[13,8],intens:[9,2,13,8],probabilist:6,omega:[0,9],brentano:3,longer:[13,6],anywher:[],postlbl:8,pseudo:8,genshcoeff:9,ignor:[4,9,13,8],datafram:8,time:[9,6,13],nxn:13,powderxyesav:8,rancel:12,spgrp:[9,13],skip:5,global:[1,13,4],pval:11,invcell2gmat:9,unit_test:[1,9],unconstrain:4,forceunit:8,row:[4,9,13],hold:[13,8],depend:[4,9,3,13,8],unnumb:13,zone:2,plotxi:2,decim:8,readabl:6,calc_rdsqz:9,zref:12,okcontrol:8,plotrigidbodi:2,"0x21e7e30":[],getangsig:[],shpocal:11,sourc:[0,2,4,5,3,7,8,9,10,11,12,13],string:[0,2,4,5,3,7,8,9,10,11,12,13],dictat:8,planedata:11,getramaderiv:[],fitellips:0,cool:6,level:13,gui:[1,9,12,10,8],iter:6,magnet:9,item:[1,4,5,8,9,10,11,13],varylist:[0,4,13,3,8,11],gmat2a:9,prevent:[4,8],cosd:8,slower:8,sign:[9,8],cost:6,phfx:11,g22:9,appear:[4,5,8],selftestlist:9,uniform:6,current:[13,5,9,11,8],axial:9,u33:9,copydialog:5,deriv:[4,9,3,6,11],printindependentvar:4,test2:[9,8],genatom:9,coeffici:[9,3],satisfi:4,"0x17d1a030":[],plotsizestrainpo:2,box:8,dreel:[],shift:[11,8],bot:9,saveintegr:8,bob:0,findatomindexbyid:[],onviewlsparm:5,commonli:9,nmax:3,repositori:[9,8],extra:[6,8],dtype:[],modul:[0,1,2,3,4,5,6,8,9,10,12,13],prefer:[9,2,13,11],parma:[],nfev:[],"1st":[4,9],instal:[1,9],dispers:9,atinfo:2,gpxbackup:11,give:[9,6],subvers:9,applystringop:9,black:13,marccd:8,"0x20d5030":[],"0x17d18930":[],rigid:[13,2,10,11],parm2:4,parm1:4,plotisfg:2,local:9,prepar:9,importphasereaderlist:5,uniqu:[9,13],"0x17d4a230":9,values2dict:[11,3],can:[2,3,4,5,6,8,9,13],tabul:9,purpos:2,zeroref:12,problemat:4,pawlei:13,nearest:9,sgequiv_2002_orthorhomb:[],"0xbdfd7b0":[],critic:9,tabl:[1,4,5,8,9,10],phaseselector:8,structurefactor:11,changetyp:9,xsum:0,orthorhomb:[9,13],alwai:[9,13,8],numitem:[],multipl:[13,5,2,9],viewpoint:13,tilt:3,write:8,map:13,remap:4,mar:[1,8],"0x17d492b0":[],sgprint:9,max:8,clone:8,mac:[5,8],readerlist:5,mag:[],mai:[13,5,9,8],data:[0,1,2,5,3,8,9,10,11,13],hklf:[11,10,8],harmon:[9,13,11],stress:10,practic:6,ny1:4,inform:[4,5,6,7,8,9,10,11,13],"switch":8,cannot:4,combin:[9,13],gamma:[9,13],callabl:6,onrefin:5,"0xc92ac70":[],timemap:5,ranaxi:12,previparm:5,getpeakprofilederv:3,still:5,equiv:11,divis:8,group:[1,4,13,8,9,11],plotpattern:2,platform:8,window:[5,2,10,8],ntri:12,x_old:6,getrestrama:[],m_2:13,m_1:13,main:[1,5,7,8,10,11,13],getcontrol:11,non:[4,9,13],within:[9,13],calctorsionenergi:[],confirmoverwrit:8,initi:[4,6,8],nation:[],showrigidbodi:13,now:[4,9,13],term:[4,9,2,3,13],name:[2,4,5,3,8,9,10,11,13],hessianlsq:[],revers:[],separ:[5,13,8],muiso2shkl:9,"0x1e74130":[],ddata:10,updat:[1,6,11,3,8,9,4],compil:9,citat:[11,7],checkimagefil:8,replac:[],checkconstraint:[4,11],continu:[6,8],newvar:13,tth:[0,9,3],happen:8,genhkl:9,shown:10,absorpt:[9,3],getatomsbyid:[],space:[1,13,6,8,9,11],profil:[13,8],bragg:3,updatesamplegrid:10,updaterbxyz:[],formula:8,gethstrainshiftderv:11,formatvalu:8,gram:4,"0x17d1a130":[],onsiz:5,cart:[],onfilesavea:5,fxye:8,theori:5,constr:4,org:4,orb:9,motion:2,turn:[10,8],place:[13,5,9,8],getrestderiv:[],u23:9,"0x17cc0a30":[],view:[5,13],imposs:9,first:[4,13,8,9,10,5],oper:[9,13,8],peaklistsav:8,onc:4,arrai:[4,13,3,8,9,11,5],generaldata:2,bestplan:11,test0:9,symmetri:[9,13,11,8],ring:[0,2],open:[5,3,8],predefin:8,size:[2,6,13,3,8,9],given:[5,9],ellipsesizederv:3,convent:9,gsasiipath:[1,9],checkel:9,necessarili:9,getbraviasnum:9,conveni:[],angleradii:13,updaterestraint:10,copi:[5,8],vdwscale:13,specifi:[13,4,5,9,8],peaksequiv:[],than:[4,9,6,8],xsectip:9,unpolar:3,"0x17d49470":[],redefinit:4,param2:4,param1:4,were:[5,9,8],posit:[9,12,3,13],"0x17d49270":[],seri:[9,10,13,8],pre:[],sai:9,reflist:11,argument:8,maxindex:9,"0x17d186f0":[],gsasiipy3:[1,8],gsasiiindex:[1,12],ramanam:2,squar:[4,9,3,6,13],picktwodialog:8,fftabl:9,note:[1,4,5,8,9,10,13],textcontrol:[],constrant:4,phaserest:11,noth:[9,8],incoher:9,begin:8,sure:[5,8],pfile:[4,11],multipli:[4,9,13],unsuccess:[],calc_rv:9,beta:[9,13],pair:[9,13,8],fcj:3,renam:[5,2],hmax:[],later:[4,13,8],infodict:[],order:[9,13,8],pattern:[1,13,2,10,8],derivdict:4,axi:[0,9,3,13,8],slope:6,show:[2,4,5,8,10,13],strictextens:8,atom:[9,13,11,8],sguniq:[9,13],corner:9,unfinish:[],odfln:9,rotat:[0,9],onli:[4,5,6,8,9,10,11,13],ratio:13,dictlst:8,activ:5,written:11,mfb:9,dict:[2,4,5,3,8,9,10,11,13],"0x17d4a170":9,errordialog:5,analyt:9,overwritten:11,onseqrefin:5,fitpgm:3,variou:[3,8],get:[9,11,8],ellipseprob:13,tailor:5,requir:[1,6,8],prime:3,standardizespcnam:9,getxsectioncoeff:9,disagldialog:8,pawleyref:11,through:8,anisotrop:13,where:[0,4,5,3,8,9,10,11,13],summari:4,wiki:4,getrestdist:[],caller:10,centrosymmetr:[9,13],findbestcel:12,morehelpitem:8,prefilldatamenu:8,getkclksl:9,gsasiiddatagui:[1,10],ondatadelet:5,qvq:[],ibrav:12,label:[5,13,8],hist:13,between:[4,5,9],"import":[5,8],"0x6c91db0":[],"0x17cc0930":[],gsasiiplot:[1,2],parent:[5,2,10,8],gsasiielem:[1,9],style:8,cycl:13,getanglesig:[],dmin:[9,12,3,13],indexpeaklistsav:8,gsasiistrio:[1,11],come:6,onecycl:3,fit:[0,13,8],"0x23764b0":[],region:8,"0x7a3fbf0":[],mont:13,inconsist:4,mani:8,"0x7a3fdf0":[],updaterigidbodi:10,extensionlist:8,atomlookup:[],getsamplesiggamderv:11,color:[9,10,13,8],filldiagon:[],period:[1,9,10,8],pole:2,colon:13,pola:3,"0xb96ca70":[],cancel:8,extinct:11,amino:9,better:6,coupl:9,gsgrid:8,controlokbutton:8,invers:[4,9,2],mark:8,reldict:[],u11:9,u13:9,u12:9,valueerror:9,curvatur:[],irrevel:9,gsasiispc:[1,9,13,8],quick:8,those:[4,13],"case":[4,9,10,13,8],getprefori:11,npix:8,ondeletephas:5,cast:8,exist:[4,5,11,8],"0x6c91e30":[],anytim:8,metric:[9,13,11],"100th":9,strain:[13,10],scipi:[1,6],var1:13,makeback:11,ascii:4,genhklf:9,peaksuniqu:[],"0x20d5230":[],develop:[1,9],loadtre:8,same:[4,5,6,8,9,10],scrolledwindow:10,html:8,shpocalderv:11,getrestpolefigderv:[],"0x6c91c30":[],eventu:9,rigidbodydict:11,sethistogramdata:11,"0x17d493f0":[],someon:2,extern:[1,4],getsamplesiggam:11,defn:[],isotop:[9,13],appropri:[5,13,8],onleav:8,maxaccept:6,fpcalc:9,fmmm:[],model:[4,11],rhomax:[],getrestraint:11,lastiparmfil:5,execut:[],addhelp:8,tip:10,"0xbdfd9f0":[],gangl:9,tobi:9,goniomet:9,miscellan:8,except:[9,11],littl:12,instrument:[5,2,10],"0x21e7d70":[],exercis:9,tetragon:[9,13],var_2:13,var_1:13,real:9,psi:[9,3],sortm20:12,around:0,read:[1,5,9,11,8],temperatur:6,grid:8,mol:13,oldnam:2,"0xb931cb0":[],saniti:8,getedfdata:8,inten:3,sfloat:8,integ:[10,3,8],server:9,either:[4,13,3,8,9,5],spacegroup:9,nice:9,onfilesav:5,parentfram:8,sec2hm:9,anomal:9,"0x17d494b0":[],newplot:2,showvalid:8,invpolfc:9,fitstrsta:0,imageonli:8,test_gsasiispc:9,tls2uij:[],confirm:8,"0x7bff170":[],oldxi:13,definit:[4,13,11,8],lastdatafil:5,getfftabl:9,cylindr:[9,11],refer:[5,8],compris:4,power:3,each:[6,4,5,3,8,9,10,11,13],idup:9,gsasiimain:5,cauchi:6,fulli:3,"throw":[9,11],"0x17d1a930":[],"0xb96c7b0":[],degre:[0,4,9,13],atomptr:13,bond:13,backup:11,routin:[1,2,4,5,6,7,8,9,10,11],effici:4,"_init_import":5,harm:4,"0x21e7db0":[],updateinstrumentgrid:10,"0x17d18170":[],getformfactorcoeff:9,"0x17d4a2f0":9,spglist:[],updatepeakgrid:10,log:[9,2,6],opengl:[9,2],getversionnumb:9,overwrit:8,start:[5,2,9,8],interfac:9,getblvalu:9,getoprptrnam:9,"0x7a3fe70":[],"0xc92abf0":[],tupl:[4,9,6,8],amongst:6,pohkl:13,"0x1e74970":[],notat:8,getshcoeff:[],atmdata:9,"default":[2,13,8,9,10,11,5],fixedlist:4,getellips:0,ipvt:[],imagecompress:0,a2valu:12,maxev:6,creat:[2,4,5,8,10,13],updateconstraint:10,uij:[9,13,11],cellblock:9,adsc:8,file:[1,13,8,9,11,5],"0x17d187b0":[],proport:2,extensionvalid:8,fill:9,denot:6,calcramaenergi:[],event:[5,2,8],field:[9,8],valid:8,lorchweight:3,projfileopen:8,getksl:9,edgemin:0,getgesumdata:8,kingslei:0,sequenc:8,symbol:[9,13],"0x1e740b0":[],prodqq:[],peak:[10,5,12,3,8],xpix:0,reduc:[4,13],getatominfo:9,directori:[9,13,8],descript:[9,6,13],mass:13,"0xb931d30":[],potenti:[5,8],swapmonoa:12,u6touij:9,validatedtxtctrl:8,all:[0,2,4,5,6,8,9,10,11,13],dist:0,onkei:2,forbidden:9,dollas:13,rowlabel:8,gmat2ab:9,getdsp:0,reson:9,follow:[13,8],acosd:[],children:[13,8],alp:3,refinepeak:12,immm:[],atommass:13,ifnon:10,distsum:0,program:[1,5,12],present:[4,5,9,8],"0x20d5170":[],pointinpolygon:0,monocellreduc:12,far:9,invcel:9,util:[1,9],sumdialog:5,updatemask:10,callscrolledmultieditor:8,curve_fit:[],map2dict:4,strang:8,ishistograminanyphas:10,exitmain:5,list:[0,1,4,5,3,8,9,10,11,13],laue:[9,13],adjust:6,cosin:8,anal:0,gsasiisolv:[1,7],dimens:6,modal:8,zero:[4,9,12,8],design:[],pass:8,lammax:13,plottrimag:2,what:[5,8],diam:3,dict1:8,sub:13,sum:[5,3,13,8],rval:13,getg2imag:8,brief:6,getcsuinel:9,delet:[1,5,2,10],"0x17cc0af0":[],q2av:[],usebestvisu:5,menubar:5,method:8,full:11,pyopengl:1,variat:12,u2uij:9,getrigidbodi:11,mulp:9,modifi:11,valu:[6,4,5,3,8,9,10,11,12,13],selectedatom:13,onpatterntreeitemactiv:5,search:[0,9,6,13],fillmainmenu:5,fpath:9,prior:8,pick:10,action:10,getrestchir:[],diamet:3,via:[9,8],primit:8,onfileexit:5,filenam:[5,8],inappropri:8,g2plotogl:2,elementgui:[],select:[1,5,3,8,9,10,11,13],distinct:9,containt:4,two:[13,4,5,9,8],a51:9,taken:8,mustraincoeff:9,minor:0,more:[4,5,6,8,10,13],flat:3,desir:[],line:[2,8],textcrtl:8,flag:[9,6,13],stick:[13,2],particular:[5,13],penecorr:0,sgpolar:9,none:[0,2,3,4,5,6,8,9,10,11,13],dep:0,der:13,sgpolax:[9,13],"0x1e73fb0":[],mt2text:9,archiv:8,"0x17cc09f0":[],def:[],deg:3,prompt:[10,8],scan:[9,8],gethistogramnam:[5,11],share:4,accept:[9,6],sphere:13,minimum:[3,9,6,8],onleave1:[],setversionnumb:9,refinepeaksz:12,goal:6,divid:4,rather:4,anoth:[4,10],camerapo:13,getmass:[],pwdrname:5,makeidealr:0,reject:0,acta:9,simpl:2,getmar345data:8,referenc:12,algebra:[4,8],myhelp:8,capitalizt:9,reflect:[2,13,8,9,10,5],plane:3,cromer:9,"0x17d1a070":[],setrigidbodymodel:11,wave:[0,11,12,3],associ:[5,10,8],ysum:0,hfx:11,"short":[9,13],caus:[4,8],spheric:[9,13,11],txyz:[],help:8,plotexposedimag:2,fft:3,held:4,thermal:[13,2],ncmax:12,paramet:[0,1,2,3,4,5,6,8,9,10,11,13],latt:9,mcsasearch:[],glide:[],getpatterntreeitemid:8,might:8,alter:6,muiso:9,good:[13,6],"return":[6,4,5,3,8,9,11,13],rhombohedr:[9,13],rwp:13,gsasiipwdgui:[1,5,10],filedialog:8,onimageread:5,document:[1,13,8],ifq:[],readexpphas:8,getxyzdist:[],ifd:8,getffc5:9,radian:[],ifb:9,importpowderreaderlist:5,found:[1,13,6,9,11,5],unicod:8,truncat:8,"0x17d4a9b0":9,weight:[13,8],orbnam:9,expect:[5,8],http:4,energi:9,beyond:[],orient:[9,2,13,11],onaddphas:5,robert:[],invq:[],print:[4,9,11,7,8],iparm:3,evaluateexpress:8,add3d:2,typehint:8,calc_rdsq:9,polyhedra:2,differ:[6,8],mmm:[9,13],calc_rdsq2:9,base:[10,8],ask:[5,8],applyrbmodelderv:11,cov_x:[],omit:13,flip:13,assign:[4,13,8],magformfactor:9,itemtext:8,"0x17d4a0f0":9,upper:[6,8],exchang:[],ncell:9,misc:[1,8],number:[6,4,5,3,8,9,13],controldict:11,bondlist:13,done:[4,9,8],least:[3,9,6,13],checkellips:0,blank:[13,8],getallphasedata:11,miss:4,betwe:9,guess:[5,6],pm3m:[],script:9,criticalellips:9,interact:[10,8],lxsect:9,construct:[],pwdrdata:5,gpx:[5,13,11],getphasenam:11,scheme:9,store:[4,9,10,13,8],option:[4,5,2,6,8],relationship:[4,13],parm:5,selector:8,part:[4,9,8],pname:11,"0x17d4a130":9,onrenamedata:5,normq:[],importphas:[5,8],std:6,kind:[2,8],datdata:11,tof:[5,2],remov:[0,4,12],shcoeff:[],horizont:8,tunit:[],"0x1e74170":[],dopeakfit:3,str:[4,13,3,8,9,11,5],comput:[1,4,13,6,7,8,9,11],gsasiigrid:[1,5,10,8],histnam:8,packag:[1,2],gramschmidtortho:4,complet:[4,9],fast_sa:6,bht:5,powderfxyesav:8,equival:[4,9,13],self:[0,1,2,5,8,9],getnewcellparm:[13,11],also:[2,4,5,6,8,9,11],without:[9,8],build:[4,9],jacobian:[],updatepdfgrid:10,parms2:[],compat:[5,8],distribut:2,updatepwhkplot:8,grassman:[],previou:[10,9,6],reach:6,samang:9,amat:[],plai:13,updatestressstrain:10,setphasedata:11,alpha:[9,13],seqdata:2,"0x20d50f0":[],charg:13,g23:9,readerobject:5,clear:[4,5,2],seqrefin:11,hessrefin:11,clean:9,azimuth:[0,2,3],seqresult:11,sgerror:9,"0x17d180f0":[],multiintegerdialog:10,"0x17d4a1b0":9,azmuth:9,distanc:[13,3,8],swapcolumn:[],onfileopen:5,find:[4,9],npsind:3,rotorthoa:12,cell:[1,13,8,9,10,12,11],onimportpowd:5,pmmm:[],test6:9,solut:[],factor:[2,13,3,8,9,11,5],"0x17d18030":[],getrestpolefig:[],unus:5,express:[4,8],disagltor:11,make2thetaazimuthmap:0,monoclin:[9,13],initvar:4,centcheck:9,getkcl:9,oneonli:10,coord:9,"0x17d16fb0":[],a2invcel:9,iflmn:9,arr:[],set:[4,13,8,9,10,5],tree:[1,2,5,8,10,13],testvalid:8,see:[4,9,8],sec:9,arg:[13,6,8],uiso:13,close:[5,8],sel:[],contour:2,icalc:13,printal:4,someth:[0,9],onimportsfact:5,smallest:6,gener:[2,4,13,6,9,10],getrigidbodymodel:11,altern:[13,8],rd_list:5,showhydrogen:13,"0x20d5970":[],"0x1e740f0":[],"31m":[9,13],fillgmat:9,extractfilefromzip:8,both:[4,8],last:[13,5,6,9,11],delimit:9,confirmread:8,arraylist:4,nonstandard_sglist:[],"0x1e74070":[],gethistogramdata:11,sginv:[9,13],pdf:[10,5,2,3,8],pdb:8,load:[13,11,8],getcsxinel:9,symopdialog:8,simpli:4,point:[9,6,13],schedul:6,"0x17d181b0":[],blockselector:8,residu:[],header:8,getimgdata:8,param:3,suppli:[4,5,8],svnupdatedir:9,along:11,elemposit:9,contraint:4,cellabsorpt:9,updatephasedata:10,empti:[4,5,9,8],waasmaier:9,seqsig:2,imag:[0,1,2,5,8,9,10],coordin:[9,2,13,11,8],gam:[9,3],func:6,look:5,gethklmax:9,"while":[4,8],powderfil:8,abov:[4,8],error:[4,5,6,8,9,11],gettth:0,getpowderiparm:5,loop:6,vol:3,von:[],echelon:[],itself:6,uiso2uij:9,limit:[10,5,3,13,8],"0x1e748b0":[],previousinvalid:8,plotintegr:2,irrelev:9,minim:[5,6],argonn:[],applyxyzshift:[13,11],histlist:13,"0x6c91df0":[],singlefloatdialog:8,elementt:[1,9],conflict:4,setvaryflag:4,optim:[3,6],restraint:[1,13,10,11],"0x1e74230":[],covari:[1,13,11,8],user:[5,9,8],viewparmdialog:5,typic:8,getusedhistogramsandphasesfromtre:5,lower:[6,8],phasenam:[11,2,10],"0x23764f0":[],entri:[4,9,10,13,8],restraintdict:11,gsa:[1,4,5,8,9,10,11,13],textctrl:8,propos:6,explan:13,getfilelist:5,ruland:3,gsasiiconstrgui:[1,10],shape:3,covmatrix:[4,13,8],uij2betaij:9,instbank:5,getintensitycorr:11,input:[4,5,6,8,9,10,11],"0x17cc0b70":[],app:[5,8],float32:[],bin:9,contentsvalid:8,march:13,format:[13,5,9,8],getatomcoordsbyid:[],sgtext:9,ellist:[9,3],bit:12,getabsorb:11,onhelpbyid:8,lost:8,getimagedata:8,zclip:13,valenc:9,strsta:0,encount:6,constr1:4,constr2:4,some:[0,4,6,10,8],back:9,wxpython:1,sampl:[0,6,5,3,9,10],multipleselect:8,ijk:9,cell2gmat:9,scale:[0,6,4,5,3,9,13],calcpdf:3,though:6,per:13,larg:8,"0x6c91c70":[],plotimag:2,prob:9,run:[4,9,13,8],"2th":3,step:[13,3],output:[4,9,6,11,8],from:[0,2,4,5,6,8,9,10,11,12,13],getpowderpeak:8,constraint:[1,4,5,10,11,13],sizeh:13,lieberman:9,page:[2,10,8],"0xb931e70":[],"0x20d50b0":[],"0x17cc0970":[],updatenotebook:8,block:[9,8],hkld:9,"__future__":8,rho:[],getdetectorxi:0,getffvalu:9,keystrok:8,textureindex:9,setnewphas:8,groupconstraint:4,badvalu:3,npcosd:3,getdmax:12,apprevi:8,fast:[6,8],perp:0,includ:[9,12,8],"0x17d493b0":[],properli:8,pwr:12,transfertowindow:8,"0xc92aa30":[],sthl2:3,translat:9,delta:0,newatomdict:[13,11,8],info:[9,2,11,8],dfdvdict:11,idlist:13,consist:[4,8],pgbar:[],"0x17d1ac30":[],disaglctl:11,getatomitemsbyid:[],highlight:[13,8],"0x7b26f30":[],constant:[4,9,6],projfilesav:8,doesn:9,horizontallin:8,jmin:6,g2phase:8,showcontrol:[11,7],gsasiistrmain:[1,11],titl:[5,10,13,8],sequenti:[4,5,8],invalid:8,nam:4,bmat:[],addmpl:2,angstrom:13,asymmetr:13,getabsorbderv:11,draw:[9,13,8],groupedparm:8,gsasiiphsgui:[1,10],values2a:12,f000x:13,gsasiitoolbar:2,plotcanva:2,f000n:13,svn:9,algorithm:[9,6],psing:[],orbit:9,spcgroup:[9,13,11,8],iabsnt:9,powderdata:8,dict2map:4,ypix:0,scroll:8,x_new:6,code:[0,9,12,8],edf:8,edg:9,queri:6,broaden:2,"0x21e7df0":[],ellips:[0,2],focu:8,"0x17d4a2b0":9,"0x17d18230":[],showmod:8,elsewher:4,onimportgener:5,esd:[4,8],opposit:9,aris:8,eltabl:9,g2plotmpl:2,"0xc92abb0":[],"0x17d1aab0":[],calczdiscosb:0,volum:9,showabc:13,tri:5,cctbx:9,button:[5,8],shtxcal:11,"0xc92aaf0":[],"try":6,"3x3":[9,13],getusedhistogramsandphas:11,errstr:9,phasedata:11,pleas:8,getfprim:11,maintain:10,onpatterntreeselchang:[5,10],"0x17d187f0":[],acid:9,carlo:13,click:10,append:8,exportbaseclass:8,index:[1,12,10,8],fitstrain:0,access:[2,8],experiment:6,onpagechang:2,gsasiistruct:5,feval:6,sgdata_t:[],a2gmat:9,sint:8,matplotlib:[1,2],bodi:[13,2,10,11],let:6,hkl:[9,12],sind:8,sine:8,sinc:8,gsasiiio:[1,5,8],refldata:[],convert:[4,9,8],copyright:[11,7],getpatterntreedatanam:8,ifcoup:9,sangl:9,getvcov:[],chang:[4,9,6,13,8],hexagon:[9,13],maker:0,pxy:0,calibr:[1,9,2],appli:[4,13,11,8],approxim:9,scalex:0,submodul:[1,11,10],"boolean":9,dict2deriv:4,sgn:6,scalei:0,formulaev:8,"0x17d1a1f0":[],invarraylist:4,zip:8,shcoef:9,chi:[0,9,13],doubl:[],gsasiipwd:3,isotrop:9,mydir:13,equivalenc:4,fitcircl:0,few:[],"0x17d18130":[],fep:6,save:[4,5,13,8],genhlau:9,sort:[9,8],"0xbdfdb70":[],getcellesd:11,fulldescr:13,gsasiidata:[1,9],trail:[],fixeddict:4,pfx:[11,3],retriev:9,"0x7b26ef0":[],extradoc:3,thin:8,scatter:[1,9,3,13],control:[0,5,3,7,8,10,11,12,13],printrestraint:11,"0xc92ab70":[],process:[4,10,8],tax:2,taz:2,chisq:13,htype:11,tab:[2,10],multiplechoicesdialog:8,xmin:6,tam:0,tan:[6,8],updateindexpeaksgrid:10,tai:2,revstr:9,notblank:8,surfac:0,fm3m:[],dpdpola:3,"0x17cc0ab0":[],brian:[],sig:[13,3,8],getbackupnam:11,getpreforiderv:11,backcolor:13,sij:3,"0x20d5130":[],sin:[9,3,8],likewis:4,frac:13,overridden:8,singular:4,gsasiimath:[1,6],prelbl:8,g2plot3d:2,depthfog:13,notebook:[10,8],inst:3,ranfunc:12,getdescr:13,fitr:0,getindependentvar:4,"0x17d18fb0":[],bind:[9,13,8],getpowderprofil:11,correspond:[4,11,3],mjk:4,allow:[4,5,3,9,8],asc:9,xyzequiv:9,newcelldict:[13,8],hx2rh:9,itemloc:[],move:[9,10,8],gethstrainshift:11,formatconstraint:[],outer:[13,6],treat:8,chosen:[2,8],"0x17d1a0b0":[],getdependentvar:4,uijtou6:9,friedel:9,penaltyfxn:11,scextinct:11,greater:9,handl:[10,8],overal:[13,8],rowechelon:[],norm_gen:3,dat:9,covvari:13,shtxcalderv:11,mustrainnam:9,byteord:8,nkeep:4,distangl:11,nfb:9,nfa:9,edit:[5,8],"0x7b26fb0":[],halfcel:12,paramprefix:4,genhbravai:9,jephcoat:3,mode:8,independentvar:4,getdistsig:[],multipleblockselector:8,product:[],sortarrai:[],setbackgroundparm:3,onpwdrsum:5,gsnotebook:8,getmagformfaccoeff:9,special:13,out:[4,8],variabl:[1,4,13,6,8,11],matrix:[0,9,13,11,8],onpatterntreeitemdelet:5,waal:13,stub:9,polfcal:9,suitabl:[0,9],rel:[4,6],lattic:[9,13],ref:[13,3,11],matric:4,insid:9,onimagesum:5,dictionari:[4,5,3,8,9,10,11],latest:9,releas:9,singlestringdialog:8,dmax:12,valesd:[],val:[13,8],could:5,put:[9,11,8],keep:8,length:[9,13,8],outsid:9,geometri:3,retain:8,choicelist:8,"0x20d51f0":[],softwar:[9,8],loadhistogramid:13,cmmm:[],constrdict:4,list1:8,q2mat:[],date:8,imagelocalmax:0,onreadpowderpeak:5,unknown:9,system:[9,8],messag:[5,9,11],"0xb931c70":[],arrayin:4,disagldata:11,subdirectori:9,man:10,"final":[4,6],storeequival:4,shell:8,cyc:[],thresh:3,rst:[],exactli:13,stringopsprod:9,structur:[1,2,5,7,8,11,13],charact:[9,13,8],"0x17d49370":[],gsasiilattic:[1,9],bet:3,exp:[6,8],plotpowderlin:2,marfram:8,gsasiiobj:[1,13],getpawleyconstr:11,ballscal:13,have:[4,9,13,8],dpsda:9,need:[0,2,5,3,7,8,9,10,11,12,13],element:[1,13,3,8,9,10],hessian:13,getfcjvoigt:3,updatelimitsgrid:10,gsasii:[1,5,3,8,9,10,11],lener:9,discret:6,which:[1,2,3,5,6,8,9,10,4,13],longformatnam:8,detector:[2,3,8],singl:[2,4,5,8,11,13],textur:[13,11],unless:8,maxcyc:[],vdwradii:13,pyd:9,"class":[2,6,5,3,8,10,13],imagecalibr:[0,1,9],placement:13,retval:6,request:[2,8],indx:12,tornam:2,determin:[4,9,13,8],constrain:4,rotdmat:9,nmin:3,svngetrev:9,"0x1e74030":[],text:[5,9,8],filetyp:5,"0x2376530":[],loadid:13,bring:[10,8],varnam:13,redirect:5,locat:[1,9,6,13,8],rbdata:2,setdatamenubar:8,should:[13,4,5,9,8],dict2valu:[11,3],fillarrai:[],gsasiistrmath:[1,13,11],anneal:[13,6],"0x17d4a070":9,hope:8,fithklz:12,usefit:[],sgop:[9,13],pwdr:[11,10,8],"0xb931df0":[],showbann:[11,7],pickel:10,beam:0,indparmlist:4,increas:[13,6,8],enabl:8,possibl:[4,9,8],stuff:6,integr:[0,2,8],contain:[2,4,5,3,8,9,13],shl:3,dpi:2,"0x17d4a0b0":9,constlist:11,penaltyderiv:11,gethklpeak:3,importmenuid:5,frame:[5,10,8],accord:[9,13],"3mr":[9,13],dialog:[5,8],powder:[1,2,5,3,8,9,10],dopawlei:13,dlg:[11,12,3,8],correctli:[3,8],sgdata:[9,3,13,11,8],nuclear:13,state:[9,6],setpeakparm:[],theta:[0,9,2,3],getwav:[],pawleylookup:11,xrang:6,kei:[4,13,3,8,9,11],updatereflectiongrid:10,zstep:13,entir:[11,8],onimportphas:5,"0x1e741b0":[],"2pi":[],kev:9,deletedata:5,rbtype:2,getdens:[],fitdetector:0,equal:4,len:[],etc:[0,9,2,3],instanc:2,equat:[4,13],viewdir:13,onfileclos:5,rama:2,comment:8,"0x17d4a1f0":9,indici:8,solv:[1,7],reciproc:[9,13,11],math:[1,9,11],respect:8,clearsigint:5,showstringvalid:8,torsion:2,quit:5,imageintegr:0,cent:9,childrenless:8,compon:8,fprime:9,"0x17d18070":[],calccontrol:11,mult2:[4,13],mult1:[4,13],immedi:6,kirfel:9,crsang:9,togeth:5,sigdict:[4,11],"0x1e747f0":[],getepsvoigt:3,onpatterntreekeydown:5,getdepsvoigt:3,defin:[0,4,5,6,8,9,10,13],observ:13,"0x6c91bf0":[],mz2:4,almost:8,"0x6c91d30":[],site:[9,13],adjhklmax:[],refl:11,revis:9,ramachandrandist:9,getdatsig:[],histonam:10,cross:9,sqrt:[3,6,8],python:[1,9,8],pickid:8,largest:[9,6],phi:[0,9,3],ball:[13,2],slave:4,cubic:[9,13],absorb:3,effect:4,ion:9,nob:13,transferfromwindow:8,iob:13,expand:[5,8],uncertainti:[4,13],absorbderv:3,center:[9,13],well:[4,5,9,8],exampl:8,command:8,sglaue:[9,11],position:9,momtyp:3,usual:[0,6],test1:[9,8],mfa:9,test3:9,mfc:9,test5:9,test4:9,test7:9,crystallograph:9,test9:9,test8:9,nval:9,obtain:[5,6,9,8],readpowderiparm:5,a2cel:9,getconstraint:11,hess:[],adv:0,web:8,varynam:[],smith:0,checkinput:8,updaterbuij:[],add:[5,2,8],getfwhm:3,onhelpabout:8,densiti:[],bool:[13,6,8,9,11,5],match:[5,13,8],plotsngl:2,samsym:9,onpatterntreeitemexpand:5,press:[2,8],updatemcsaxyz:[],height:3,makequat:[],plotseq:2,loss:8,updatecontrol:8,like:[9,6],sizer:8,trigon:[9,13],bravai:[9,12],xydata:3,gsasiiimggui:[1,10],"0x17d181f0":[],resiz:5,imagefil:8,getwidthscw:3,polar:[9,3,13],"0x6c91cb0":[],linux:8,"export":8,updateddata:10,proper:9,setdefaultsampl:10,librari:9,sampleparm:2,full_output:6,assum:[5,9],instfil:5,getpeakprofil:3,estim:6,fixval:9,g2plotnotebook:2,fouriermap:[],imaginari:9,"0x17cc09b0":[],zsum:0,cryst:[9,3],addogl:2,parentid:8,panel:8,setusedhistogramsandphas:11,about:[0,9,8],column:[9,8],freedom:4,"0x20d5930":[],odf:9,learn_rat:6,you:6,fals:[2,4,5,3,8,9,10,11,13],atomnum:13,disabl:8,own:13,calcfij:0,"0x17d1a230":[],getasfmean:3,automat:[5,8],dataset:5,diagon:13,waterfal:2,importsfactreaderlist:5,getdetxyfromthazm:0,van:13,sgsy:[9,13],getnxupqsym:9,m3m:[9,13],texturedata:11,onhelp:2,"3m1":[9,13],appl:[3,8],inner:[9,6,13],"0x17cc0b30":[],"var":[4,13],newimag:2,individu:8,"function":[1,2,3,11,6,8,9,10],getdistderv:[],uijequiv:9,unexpect:4,processconstraint:11,histogram:[5,10,13,11,8],scatfac:9,bltabl:9,highest:9,loc:8,leastsq:[11,3,8],made:11,displac:13,whether:6,displai:[5,2,10,13,8],below:[9,6,8],indexpeak:12,otherwis:[9,8],problem:[4,6,8],whichsvn:9,instead:8,getfcjvoigt3:3,evalu:[6,8],"int":[0,6,5,3,8,10,13],mask:[0,2,10],pid:13,pix:0,nfc:9,implement:[4,13,6,8],calc_v:9,ind:[],fjac:[],probabl:[9,13],getatomxyz:[],plottors:2,sglatt:[9,13],collabel:8,detail:[4,9,13],calcincid:3,importpowderdata:[5,8],readmarccdfram:[1,8],other:[4,13,6,8,9,10],lookup:9,ellipses:3,varieti:8,my1:4,ndarrai:6,getresttors:[],sytsym:9,quaternion:13,scrolledmultieditor:8,collist:[],scientif:8,overallparm:8,importbaseclass:8,"0xb931e30":[],myhtmlpanel:8,onchar:8,rbid:11},objtypes:{"0":"py:module","1":"py:function","2":"py:method","3":"py:class","4":"py:data","5":"py:attribute"},titles:["<em>GSASIIimage: Image calc module</em>","GSAS-II Developer&#8217;s Documentation","<em>GSASIIplot: plotting routines</em>","<em>GSASII powder calculation module</em>","<em>GSASIImapvars: Parameter constraints</em>","<em>GSAS-II Main Module</em>","<em>GSASIImath: computation module</em>","<em>GSASIIsolve - structure solving routines</em>","<em>GSAS-II GUI Routines</em>","<em>GSAS-II Utility Modules</em>","<em>GSAS-II GUI Submodules</em>","<em>GSAS-II Structure  Submodules</em>","<em>GSASIIindex: Cell Indexing Module</em>","<em>GSASIIobj: Data objects</em>"],objnames:{"0":["py","module","Python module"],"1":["py","function","Python function"],"2":["py","method","Python method"],"3":["py","class","Python class"],"4":["py","data","Python data"],"5":["py","attribute","Python attribute"]},filenames:["GSASIIimage","index","GSASIIplot","GSASIIpwd","GSASIImapvars","GSASII","GSASIImath","GSASIIsolve","GSASIIGUIr","GSASIIutil","GSASIIGUI","GSASIIstruc","GSASIIindex","GSASIIobj"]})
  • trunk/sphinxdocs/source/index.rst

    r939 r946  
    99
    1010  GSASII.rst
     11  GSASIIobj.rst
    1112  GSASIIutil.rst
    1213  GSASIIGUIr.rst
Note: See TracChangeset for help on using the changeset viewer.