Changeset 493


Ignore:
Timestamp:
Feb 24, 2012 1:11:44 PM (12 years ago)
Author:
vondreele
Message:

clean up help stuff - get OK respons from resize & now scrolls down a bit so text at top is seen.

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASII.py

    r492 r493  
    331331
    332332    def _init_coll_Import_Items(self,parent):
    333 #        self.ImportPhase = parent.Append(help='Import phase data from GSAS EXP file',
    334 #            id=wxID_IMPORTPHASE, kind=wx.ITEM_NORMAL,text='Import GSAS EXP Phase...')
    335 #        self.ImportPDB = parent.Append(help='Import phase data from PDB file',
    336 #            id=wxID_IMPORTPDB, kind=wx.ITEM_NORMAL,text='Import PDB Phase...')
    337 #        self.ImportCIF = parent.Append(help='Import phase data from cif file',id=wxID_IMPORTCIF, kind=wx.ITEM_NORMAL,
    338 #            text='Import CIF Phase...')
    339333        self.ImportPattern = parent.Append(help='',id=wxID_IMPORTPATTERN, kind=wx.ITEM_NORMAL,
    340334            text='Import Powder Pattern...')
    341335        self.ImportHKL = parent.Append(help='',id=wxID_IMPORTHKL, kind=wx.ITEM_NORMAL,
    342336            text='Import HKLs...')
    343 #        self.Bind(wx.EVT_MENU, self.OnImportPhase, id=wxID_IMPORTPHASE)
    344 #        self.Bind(wx.EVT_MENU, self.OnImportPDB, id=wxID_IMPORTPDB)
    345 #        self.Bind(wx.EVT_MENU, self.OnImportCIF, id=wxID_IMPORTCIF)
    346337        self.Bind(wx.EVT_MENU, self.OnImportPattern, id=wxID_IMPORTPATTERN)
    347338        self.Bind(wx.EVT_MENU, self.OnImportHKL, id=wxID_IMPORTHKL)
  • trunk/GSASIIgrid.py

    r486 r493  
    3232htmlFrame = None
    3333if sys.platform.lower().startswith('win'):
     34#    helpMode = 'browser'    # need a global control to set this
    3435    helpMode = 'internal'    # need a global control to set this
    3536else:
     
    107108def ShowHelp(helpType,frame):
    108109    '''Called to bring up a web page for documentation.'''
    109     global helpLocDict
    110     global helpMode
    111110    # look up a definition for help info from dict
    112111    helplink = helpLocDict.get(helpType)
     
    114113        # no defined link to use, create a default based on key
    115114        helplink = 'gsasII.html#'+helpType.replace(' ','_')
    116         print helplink
    117115    helplink = os.path.join(path2GSAS2,'help',helplink)
    118116    if helpMode == 'internal':
    119         global htmlPanel, htmlFrame
    120117        try:
    121118            htmlPanel.LoadFile(helplink)
    122119            htmlFrame.Raise()
    123120        except:
    124             htmlFrame = wx.Frame(frame, -1, size=(610, 450))
     121            htmlFrame = wx.Frame(frame, -1, size=(610, 510))
    125122            htmlFrame.Show(True)
    126123            htmlFrame.SetTitle("HTML Window") # N.B. reset later in LoadFile
     
    128125            htmlPanel.LoadFile(helplink)
    129126    else:
    130         global htmlFirstUse
    131         #import webbrowser
    132127        if htmlFirstUse:
    133128            webbrowser.open_new("file://"+helplink)
     
    153148        if helpType is not None:
    154149            helpobj = self.Append(text='Help on '+helpType,
    155                                   id=wx.ID_ANY, kind=wx.ITEM_NORMAL)
     150                id=wx.ID_ANY, kind=wx.ITEM_NORMAL)
    156151            frame.Bind(wx.EVT_MENU, self.OnHelp, helpobj)
    157152        self.Append(help='', id=wx.ID_ABOUT, kind=wx.ITEM_NORMAL,
    158                     text='&About GSAS-II')
     153            text='&About GSAS-II')
    159154        frame.Bind(wx.EVT_MENU, self.OnHelpAbout, id=wx.ID_ABOUT)
    160155
     
    190185        back = wx.Button(self, -1, "Back")
    191186        back.Bind(wx.EVT_BUTTON, self.OnBack)
     187        self.htmlwin = G2HtmlWindow(self, id, size=(602,450))
     188        sizer.Add(self.htmlwin, 1,wx.EXPAND)
    192189        sizer.Add(back, 0, wx.ALIGN_LEFT, 0)
    193 
    194         #self.htmlwin = wx.html.HtmlWindow(self, id, size=(602,310))
    195         self.htmlwin = G2HtmlWindow(self, id, size=(602,450))
    196         sizer.Add(self.htmlwin, 1, wx.GROW|wx.ALL, 0)
    197190        self.SetSizer(sizer)
    198191        sizer.Fit(frame)       
     192        self.Bind(wx.EVT_SIZE,self.OnSize)
     193    def OnSize(self,event):         #does the job but weirdly!!
     194        anchor = self.htmlwin.GetOpenedAnchor()
     195        if anchor:           
     196            self.htmlwin.ScrollToAnchor(anchor)
     197            wx.CallAfter(self.htmlwin.ScrollToAnchor,anchor)
     198            event.Skip()
    199199    def OnBack(self, event):
    200200        self.htmlwin.HistoryBack()
     
    210210        if helpanchor is not None:
    211211            self.htmlwin.ScrollToAnchor(helpanchor)
     212            xs,ys = self.htmlwin.GetViewStart()
     213            self.htmlwin.Scroll(xs,ys-1)
    212214
    213215class G2HtmlWindow(wx.html.HtmlWindow):
     
    222224    def OnLinkClicked(self, *args, **kwargs):
    223225        wx.html.HtmlWindow.OnLinkClicked(self, *args, **kwargs)
     226        xs,ys = self.GetViewStart()
     227        self.Scroll(xs,ys-1)
    224228        self.TitlePage()
    225229    def HistoryBack(self, *args, **kwargs):
     
    320324        self.PeakEdit = wx.Menu(title='')
    321325        self.PeakMenu.Append(menu=self.PeakEdit, title='Peak Fitting')
    322         self.PeakMenu.Append(menu=MyHelp(self,helpType='Powder Peaks'),title='&Help')
     326        self.PeakMenu.Append(menu=MyHelp(self,helpType='Peak List'),title='&Help')
    323327        self.UnDo = self.PeakEdit.Append(help='Undo last least squares refinement',
    324328            id=wxID_UNDO, kind=wx.ITEM_NORMAL,text='UnDo')
     
    339343        self.IndPeaksEdit = wx.Menu(title='')
    340344        self.IndPeaksMenu.Append(menu=self.IndPeaksEdit,title='Operations')
    341         self.IndPeaksMenu.Append(menu=MyHelp(self,helpType='Index Peaks'),title='&Help')
     345        self.IndPeaksMenu.Append(menu=MyHelp(self,helpType='Index Peak List'),title='&Help')
    342346        self.IndPeaksEdit.Append(help='Load/Reload index peaks from peak list',id=wxID_INDXRELOAD,
    343347            kind=wx.ITEM_NORMAL,text='Load/Reload')
     
    347351        self.IndexEdit = wx.Menu(title='')
    348352        self.IndexMenu.Append(menu=self.IndexEdit, title='Cell Index/Refine')
    349         self.IndexMenu.Append(menu=MyHelp(self,helpType='Cell Indexing Refine'),title='&Help')
     353        self.IndexMenu.Append(menu=MyHelp(self,helpType='Unit Cells List'),title='&Help')
    350354        self.IndexPeaks = self.IndexEdit.Append(help='', id=wxID_INDEXPEAKS, kind=wx.ITEM_NORMAL,
    351355            text='Index Cell')
     
    373377        self.ImageEdit = wx.Menu(title='')
    374378        self.ImageMenu.Append(menu=self.ImageEdit, title='Operations')
    375         self.ImageMenu.Append(menu=MyHelp(self,helpType='Images'),title='&Help')
     379        self.ImageMenu.Append(menu=MyHelp(self,helpType='Image Controls'),title='&Help')
    376380        self.ImageEdit.Append(help='Calibrate detector by fitting to calibrant lines',
    377381            id=wxID_IMCALIBRATE, kind=wx.ITEM_NORMAL,text='Calibrate')
     
    736740    if 'deriv type' not in data:
    737741        data = {}
    738         data['deriv type'] = 'analytic Jacobian'
     742        data['deriv type'] = 'analytic Hessian'
    739743        data['min dM/M'] = 0.0001
    740744        data['shift factor'] = 1.
     745        data['max cyc'] = 3       
    741746    if 'shift factor' not in data:
    742747        data['shift factor'] = 1.
     
    744749        data['max cyc'] = 3       
    745750    #end patch
    746     '''
    747     #Fourier controls
    748     'mapType':'Fobs','d-max':100.,'d-min':0.2,'histograms':[],
    749     'stepSize':[0.5,0.5,0.5],'minX':[0.,0.,0.],'maxX':[1.0,1.0,1.0],
    750     '''
    751751    def SeqSizer():
    752752       
  • trunk/GSASIIplot.py

    r484 r493  
    170170        Page = self.GetParent().GetParent()
    171171        pageNo = Page.GetSelection()
    172         print 'Matplotlib help on '+Page.GetPageText(pageNo)
    173         G2gd.ShowHelp(Page.GetPageText(pageNo),self.TopLevelParent)
     172        bookmark = Page.GetPageText(pageNo)
     173        bookmark = bookmark.strip(')').replace('(','_')
     174        G2gd.ShowHelp(bookmark,self.TopLevelParent)
    174175           
    175176def PlotSngl(self,newPlot=False):
  • trunk/GSASIIstruct.py

    r491 r493  
    221221    return Histograms,Phases
    222222   
    223 #def GPXBackup(GPXfile,makeBack=True):      #not work correctly
    224 #    import distutils.file_util as dfu
    225 #    GPXpath,GPXname = ospath.split(GPXfile)
    226 #    if GPXpath == '': GPXpath = '.'
    227 #    Name = ospath.splitext(GPXname)[0]
    228 #    files = os.listdir(GPXpath)
    229 #    last = 0
    230 #    for name in files:
    231 #        name = name.split('.')
    232 #        if len(name) >= 3 and name[0] == Name and 'bak' in name[-2]:
    233 #            if makeBack:
    234 #                last = max(last,int(name[-2].strip('bak'))+1)
    235 #            else:
    236 #                last = max(last,int(name[-2].strip('bak')))
    237 #    GPXback = ospath.join(GPXpath,GPXname.rstrip('.'.join(name[-2:]))+'.bak'+str(last)+'.gpx')
    238 #    dfu.copy_file(GPXfile,GPXback)
    239 #    return GPXback
    240 #       
    241 def GPXBackup(GPXfile,makeBack=True):       #recovered old one
    242     import distutils.file_util as dfu
     223def getBackupName2(GPXfile,makeBack=True):      #not work correctly
     224    GPXpath,GPXname = ospath.split(GPXfile)
     225    if GPXpath == '': GPXpath = '.'
     226    Name = ospath.splitext(GPXname)[0]
     227    files = os.listdir(GPXpath)
     228    last = 0
     229    for name in files:
     230        name = name.split('.')
     231        if len(name) >= 3 and name[0] == Name and 'bak' in name[-2]:
     232            if makeBack:
     233                last = max(last,int(name[-2].strip('bak'))+1)
     234            else:
     235                last = max(last,int(name[-2].strip('bak')))
     236    GPXback = ospath.join(GPXpath,GPXname.rstrip('.'.join(name[-2:]))+'.bak'+str(last)+'.gpx')
     237    return GPXback
     238
     239def getBackupName(GPXfile,makeBack):       #recovered old one
    243240    GPXpath,GPXname = ospath.split(GPXfile)
    244241    if GPXpath == '': GPXpath = '.'
     
    254251                last = max(last,int(name[1].strip('bak')))
    255252    GPXback = ospath.join(GPXpath,ospath.splitext(GPXname)[0]+'.bak'+str(last)+'.gpx')
     253    return GPXback   
     254       
     255def GPXBackup(GPXfile,makeBack=True):
     256    import distutils.file_util as dfu
     257    GPXback = getBackupName(GPXfile,makeBack)
    256258    dfu.copy_file(GPXfile,GPXback)
    257259    return GPXback
  • trunk/help/gsasII.html

    r486 r493  
    2525  <o:Author>Von Dreele</o:Author>
    2626  <o:LastAuthor>Von Dreele</o:LastAuthor>
    27   <o:Revision>40</o:Revision>
    28   <o:TotalTime>2050</o:TotalTime>
     27  <o:Revision>61</o:Revision>
     28  <o:TotalTime>2337</o:TotalTime>
    2929  <o:Created>2011-11-28T16:49:00Z</o:Created>
    30   <o:LastSaved>2012-02-17T20:15:00Z</o:LastSaved>
     30  <o:LastSaved>2012-02-24T18:50:00Z</o:LastSaved>
    3131  <o:Pages>6</o:Pages>
    32   <o:Words>4349</o:Words>
    33   <o:Characters>24791</o:Characters>
     32  <o:Words>4737</o:Words>
     33  <o:Characters>27001</o:Characters>
    3434  <o:Company>Argonne National Laboratory</o:Company>
    35   <o:Lines>206</o:Lines>
    36   <o:Paragraphs>58</o:Paragraphs>
    37   <o:CharactersWithSpaces>29082</o:CharactersWithSpaces>
     35  <o:Lines>225</o:Lines>
     36  <o:Paragraphs>63</o:Paragraphs>
     37  <o:CharactersWithSpaces>31675</o:CharactersWithSpaces>
    3838  <o:Version>12.00</o:Version>
    3939 </o:DocumentProperties>
    4040</xml><![endif]-->
    41 <link rel=dataStoreItem href="gsasII_files/item0008.xml"
    42 target="gsasII_files/props0009.xml">
     41<link rel=dataStoreItem href="gsasII_files/item0010.xml"
     42target="gsasII_files/props0011.xml">
    4343<link rel=themeData href="gsasII_files/themedata.thmx">
    4444<link rel=colorSchemeMapping href="gsasII_files/colorschememapping.xml">
     
    472472        font-weight:bold;}
    473473a:link, span.MsoHyperlink
    474         {mso-style-priority:99;
     474        {mso-style-noshow:yes;
     475        mso-style-priority:99;
    475476        color:blue;
    476477        text-decoration:underline;
     
    727728        mso-hansi-font-family:"Courier New";
    728729        mso-bidi-font-family:"Courier New";}
    729 span.BalloonTextChar
    730         {mso-style-name:"Balloon Text Char";
     730span.DocumentMapChar
     731        {mso-style-name:"Document Map Char";
    731732        mso-style-noshow:yes;
    732733        mso-style-priority:99;
    733734        mso-style-unhide:no;
    734735        mso-style-locked:yes;
    735         mso-style-link:"Balloon Text";
     736        mso-style-link:"Document Map";
    736737        mso-ansi-font-size:8.0pt;
    737738        mso-bidi-font-size:8.0pt;
     
    742743        mso-hansi-font-family:Tahoma;
    743744        mso-bidi-font-family:Tahoma;}
    744 span.DocumentMapChar
    745         {mso-style-name:"Document Map Char";
     745span.BalloonTextChar
     746        {mso-style-name:"Balloon Text Char";
    746747        mso-style-noshow:yes;
    747748        mso-style-priority:99;
    748749        mso-style-unhide:no;
    749750        mso-style-locked:yes;
    750         mso-style-link:"Document Map";
     751        mso-style-link:"Balloon Text";
    751752        mso-ansi-font-size:8.0pt;
    752753        mso-bidi-font-size:8.0pt;
     
    779780 /* List Definitions */
    780781 @list l0
    781         {mso-list-id:30500769;
     782        {mso-list-id:142163818;
    782783        mso-list-type:hybrid;
    783         mso-list-template-ids:833496520 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     784        mso-list-template-ids:773461610 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    784785@list l0:level1
     786        {mso-level-tab-stop:none;
     787        mso-level-number-position:left;
     788        text-indent:-.25in;}
     789@list l0:level2
    785790        {mso-level-number-format:alpha-lower;
    786791        mso-level-tab-stop:none;
    787792        mso-level-number-position:left;
    788         text-indent:-.25in;
    789         mso-ansi-font-weight:normal;}
     793        text-indent:-.25in;}
     794@list l0:level3
     795        {mso-level-number-format:roman-lower;
     796        mso-level-tab-stop:none;
     797        mso-level-number-position:right;
     798        text-indent:-9.0pt;}
     799@list l0:level4
     800        {mso-level-tab-stop:2.0in;
     801        mso-level-number-position:left;
     802        text-indent:-.25in;}
     803@list l0:level5
     804        {mso-level-tab-stop:2.5in;
     805        mso-level-number-position:left;
     806        text-indent:-.25in;}
     807@list l0:level6
     808        {mso-level-tab-stop:3.0in;
     809        mso-level-number-position:left;
     810        text-indent:-.25in;}
     811@list l0:level7
     812        {mso-level-tab-stop:3.5in;
     813        mso-level-number-position:left;
     814        text-indent:-.25in;}
     815@list l0:level8
     816        {mso-level-tab-stop:4.0in;
     817        mso-level-number-position:left;
     818        text-indent:-.25in;}
     819@list l0:level9
     820        {mso-level-tab-stop:4.5in;
     821        mso-level-number-position:left;
     822        text-indent:-.25in;}
    790823@list l1
    791824        {mso-list-id:203979460;
     
    876909        text-indent:-.25in;}
    877910@list l3
    878         {mso-list-id:359092647;
     911        {mso-list-id:617220658;
    879912        mso-list-type:hybrid;
    880         mso-list-template-ids:1777530928 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     913        mso-list-template-ids:1177170962 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    881914@list l3:level1
    882915        {mso-level-tab-stop:none;
     
    916949        text-indent:-.25in;}
    917950@list l4
    918         {mso-list-id:385565967;
     951        {mso-list-id:656106218;
    919952        mso-list-type:hybrid;
    920         mso-list-template-ids:1718093518 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     953        mso-list-template-ids:185874704 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    921954@list l4:level1
     955        {mso-level-tab-stop:none;
     956        mso-level-number-position:left;
     957        text-indent:-.25in;}
     958@list l4:level2
     959        {mso-level-tab-stop:1.0in;
     960        mso-level-number-position:left;
     961        text-indent:-.25in;}
     962@list l4:level3
     963        {mso-level-tab-stop:1.5in;
     964        mso-level-number-position:left;
     965        text-indent:-.25in;}
     966@list l4:level4
     967        {mso-level-tab-stop:2.0in;
     968        mso-level-number-position:left;
     969        text-indent:-.25in;}
     970@list l4:level5
     971        {mso-level-tab-stop:2.5in;
     972        mso-level-number-position:left;
     973        text-indent:-.25in;}
     974@list l4:level6
     975        {mso-level-tab-stop:3.0in;
     976        mso-level-number-position:left;
     977        text-indent:-.25in;}
     978@list l4:level7
     979        {mso-level-tab-stop:3.5in;
     980        mso-level-number-position:left;
     981        text-indent:-.25in;}
     982@list l4:level8
     983        {mso-level-tab-stop:4.0in;
     984        mso-level-number-position:left;
     985        text-indent:-.25in;}
     986@list l4:level9
     987        {mso-level-tab-stop:4.5in;
     988        mso-level-number-position:left;
     989        text-indent:-.25in;}
     990@list l5
     991        {mso-list-id:734669460;
     992        mso-list-type:hybrid;
     993        mso-list-template-ids:1215081880 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     994@list l5:level1
     995        {mso-level-tab-stop:none;
     996        mso-level-number-position:left;
     997        text-indent:-.25in;}
     998@list l5:level2
     999        {mso-level-tab-stop:1.0in;
     1000        mso-level-number-position:left;
     1001        text-indent:-.25in;}
     1002@list l5:level3
     1003        {mso-level-tab-stop:1.5in;
     1004        mso-level-number-position:left;
     1005        text-indent:-.25in;}
     1006@list l5:level4
     1007        {mso-level-tab-stop:2.0in;
     1008        mso-level-number-position:left;
     1009        text-indent:-.25in;}
     1010@list l5:level5
     1011        {mso-level-tab-stop:2.5in;
     1012        mso-level-number-position:left;
     1013        text-indent:-.25in;}
     1014@list l5:level6
     1015        {mso-level-tab-stop:3.0in;
     1016        mso-level-number-position:left;
     1017        text-indent:-.25in;}
     1018@list l5:level7
     1019        {mso-level-tab-stop:3.5in;
     1020        mso-level-number-position:left;
     1021        text-indent:-.25in;}
     1022@list l5:level8
     1023        {mso-level-tab-stop:4.0in;
     1024        mso-level-number-position:left;
     1025        text-indent:-.25in;}
     1026@list l5:level9
     1027        {mso-level-tab-stop:4.5in;
     1028        mso-level-number-position:left;
     1029        text-indent:-.25in;}
     1030@list l6
     1031        {mso-list-id:919948450;
     1032        mso-list-type:hybrid;
     1033        mso-list-template-ids:-1980985146 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1034@list l6:level1
     1035        {mso-level-tab-stop:none;
     1036        mso-level-number-position:left;
     1037        text-indent:-.25in;}
     1038@list l6:level2
     1039        {mso-level-tab-stop:1.0in;
     1040        mso-level-number-position:left;
     1041        text-indent:-.25in;}
     1042@list l6:level3
     1043        {mso-level-tab-stop:1.5in;
     1044        mso-level-number-position:left;
     1045        text-indent:-.25in;}
     1046@list l6:level4
     1047        {mso-level-tab-stop:2.0in;
     1048        mso-level-number-position:left;
     1049        text-indent:-.25in;}
     1050@list l6:level5
     1051        {mso-level-tab-stop:2.5in;
     1052        mso-level-number-position:left;
     1053        text-indent:-.25in;}
     1054@list l6:level6
     1055        {mso-level-tab-stop:3.0in;
     1056        mso-level-number-position:left;
     1057        text-indent:-.25in;}
     1058@list l6:level7
     1059        {mso-level-tab-stop:3.5in;
     1060        mso-level-number-position:left;
     1061        text-indent:-.25in;}
     1062@list l6:level8
     1063        {mso-level-tab-stop:4.0in;
     1064        mso-level-number-position:left;
     1065        text-indent:-.25in;}
     1066@list l6:level9
     1067        {mso-level-tab-stop:4.5in;
     1068        mso-level-number-position:left;
     1069        text-indent:-.25in;}
     1070@list l7
     1071        {mso-list-id:1035230400;
     1072        mso-list-type:hybrid;
     1073        mso-list-template-ids:-2012591744 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1074@list l7:level1
     1075        {mso-level-tab-stop:none;
     1076        mso-level-number-position:left;
     1077        text-indent:-.25in;}
     1078@list l7:level2
     1079        {mso-level-number-format:alpha-lower;
     1080        mso-level-tab-stop:none;
     1081        mso-level-number-position:left;
     1082        text-indent:-.25in;}
     1083@list l7:level3
     1084        {mso-level-tab-stop:1.5in;
     1085        mso-level-number-position:left;
     1086        text-indent:-.25in;}
     1087@list l7:level4
     1088        {mso-level-tab-stop:2.0in;
     1089        mso-level-number-position:left;
     1090        text-indent:-.25in;}
     1091@list l7:level5
     1092        {mso-level-tab-stop:2.5in;
     1093        mso-level-number-position:left;
     1094        text-indent:-.25in;}
     1095@list l7:level6
     1096        {mso-level-tab-stop:3.0in;
     1097        mso-level-number-position:left;
     1098        text-indent:-.25in;}
     1099@list l7:level7
     1100        {mso-level-tab-stop:3.5in;
     1101        mso-level-number-position:left;
     1102        text-indent:-.25in;}
     1103@list l7:level8
     1104        {mso-level-tab-stop:4.0in;
     1105        mso-level-number-position:left;
     1106        text-indent:-.25in;}
     1107@list l7:level9
     1108        {mso-level-tab-stop:4.5in;
     1109        mso-level-number-position:left;
     1110        text-indent:-.25in;}
     1111@list l8
     1112        {mso-list-id:1074664733;
     1113        mso-list-type:hybrid;
     1114        mso-list-template-ids:2033622918 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1115@list l8:level1
    9221116        {mso-level-number-format:alpha-lower;
    9231117        mso-level-tab-stop:none;
     
    9261120        text-indent:-.25in;
    9271121        mso-ansi-font-weight:normal;}
    928 @list l4:level2
    929         {mso-level-tab-stop:1.0in;
    930         mso-level-number-position:left;
    931         text-indent:-.25in;}
    932 @list l4:level3
    933         {mso-level-tab-stop:1.5in;
    934         mso-level-number-position:left;
    935         text-indent:-.25in;}
    936 @list l4:level4
    937         {mso-level-tab-stop:2.0in;
    938         mso-level-number-position:left;
    939         text-indent:-.25in;}
    940 @list l4:level5
    941         {mso-level-tab-stop:2.5in;
    942         mso-level-number-position:left;
    943         text-indent:-.25in;}
    944 @list l4:level6
    945         {mso-level-tab-stop:3.0in;
    946         mso-level-number-position:left;
    947         text-indent:-.25in;}
    948 @list l4:level7
    949         {mso-level-tab-stop:3.5in;
    950         mso-level-number-position:left;
    951         text-indent:-.25in;}
    952 @list l4:level8
    953         {mso-level-tab-stop:4.0in;
    954         mso-level-number-position:left;
    955         text-indent:-.25in;}
    956 @list l4:level9
    957         {mso-level-tab-stop:4.5in;
    958         mso-level-number-position:left;
    959         text-indent:-.25in;}
    960 @list l5
    961         {mso-list-id:617220658;
    962         mso-list-type:hybrid;
    963         mso-list-template-ids:1177170962 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    964 @list l5:level1
    965         {mso-level-tab-stop:none;
    966         mso-level-number-position:left;
    967         text-indent:-.25in;}
    968 @list l5:level2
    969         {mso-level-tab-stop:1.0in;
    970         mso-level-number-position:left;
    971         text-indent:-.25in;}
    972 @list l5:level3
    973         {mso-level-tab-stop:1.5in;
    974         mso-level-number-position:left;
    975         text-indent:-.25in;}
    976 @list l5:level4
    977         {mso-level-tab-stop:2.0in;
    978         mso-level-number-position:left;
    979         text-indent:-.25in;}
    980 @list l5:level5
    981         {mso-level-tab-stop:2.5in;
    982         mso-level-number-position:left;
    983         text-indent:-.25in;}
    984 @list l5:level6
    985         {mso-level-tab-stop:3.0in;
    986         mso-level-number-position:left;
    987         text-indent:-.25in;}
    988 @list l5:level7
    989         {mso-level-tab-stop:3.5in;
    990         mso-level-number-position:left;
    991         text-indent:-.25in;}
    992 @list l5:level8
    993         {mso-level-tab-stop:4.0in;
    994         mso-level-number-position:left;
    995         text-indent:-.25in;}
    996 @list l5:level9
    997         {mso-level-tab-stop:4.5in;
    998         mso-level-number-position:left;
    999         text-indent:-.25in;}
    1000 @list l6
    1001         {mso-list-id:656106218;
    1002         mso-list-type:hybrid;
    1003         mso-list-template-ids:185874704 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1004 @list l6:level1
    1005         {mso-level-tab-stop:none;
    1006         mso-level-number-position:left;
    1007         text-indent:-.25in;}
    1008 @list l6:level2
    1009         {mso-level-tab-stop:1.0in;
    1010         mso-level-number-position:left;
    1011         text-indent:-.25in;}
    1012 @list l6:level3
    1013         {mso-level-tab-stop:1.5in;
    1014         mso-level-number-position:left;
    1015         text-indent:-.25in;}
    1016 @list l6:level4
    1017         {mso-level-tab-stop:2.0in;
    1018         mso-level-number-position:left;
    1019         text-indent:-.25in;}
    1020 @list l6:level5
    1021         {mso-level-tab-stop:2.5in;
    1022         mso-level-number-position:left;
    1023         text-indent:-.25in;}
    1024 @list l6:level6
    1025         {mso-level-tab-stop:3.0in;
    1026         mso-level-number-position:left;
    1027         text-indent:-.25in;}
    1028 @list l6:level7
    1029         {mso-level-tab-stop:3.5in;
    1030         mso-level-number-position:left;
    1031         text-indent:-.25in;}
    1032 @list l6:level8
    1033         {mso-level-tab-stop:4.0in;
    1034         mso-level-number-position:left;
    1035         text-indent:-.25in;}
    1036 @list l6:level9
    1037         {mso-level-tab-stop:4.5in;
    1038         mso-level-number-position:left;
    1039         text-indent:-.25in;}
    1040 @list l7
    1041         {mso-list-id:734669460;
    1042         mso-list-type:hybrid;
    1043         mso-list-template-ids:1215081880 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1044 @list l7:level1
    1045         {mso-level-tab-stop:none;
    1046         mso-level-number-position:left;
    1047         text-indent:-.25in;}
    1048 @list l7:level2
    1049         {mso-level-tab-stop:1.0in;
    1050         mso-level-number-position:left;
    1051         text-indent:-.25in;}
    1052 @list l7:level3
    1053         {mso-level-tab-stop:1.5in;
    1054         mso-level-number-position:left;
    1055         text-indent:-.25in;}
    1056 @list l7:level4
    1057         {mso-level-tab-stop:2.0in;
    1058         mso-level-number-position:left;
    1059         text-indent:-.25in;}
    1060 @list l7:level5
    1061         {mso-level-tab-stop:2.5in;
    1062         mso-level-number-position:left;
    1063         text-indent:-.25in;}
    1064 @list l7:level6
    1065         {mso-level-tab-stop:3.0in;
    1066         mso-level-number-position:left;
    1067         text-indent:-.25in;}
    1068 @list l7:level7
    1069         {mso-level-tab-stop:3.5in;
    1070         mso-level-number-position:left;
    1071         text-indent:-.25in;}
    1072 @list l7:level8
    1073         {mso-level-tab-stop:4.0in;
    1074         mso-level-number-position:left;
    1075         text-indent:-.25in;}
    1076 @list l7:level9
    1077         {mso-level-tab-stop:4.5in;
    1078         mso-level-number-position:left;
    1079         text-indent:-.25in;}
    1080 @list l8
    1081         {mso-list-id:919948450;
    1082         mso-list-type:hybrid;
    1083         mso-list-template-ids:-1980985146 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1084 @list l8:level1
    1085         {mso-level-tab-stop:none;
    1086         mso-level-number-position:left;
    1087         text-indent:-.25in;}
    10881122@list l8:level2
    1089         {mso-level-tab-stop:1.0in;
     1123        {mso-level-number-format:alpha-lower;
     1124        mso-level-tab-stop:none;
    10901125        mso-level-number-position:left;
    10911126        text-indent:-.25in;}
     
    11191154        text-indent:-.25in;}
    11201155@list l9
    1121         {mso-list-id:1035230400;
     1156        {mso-list-id:1162892763;
    11221157        mso-list-type:hybrid;
    1123         mso-list-template-ids:-2012591744 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1158        mso-list-template-ids:2091276960 -1984140816 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    11241159@list l9:level1
    1125         {mso-level-tab-stop:none;
    1126         mso-level-number-position:left;
    1127         text-indent:-.25in;}
    1128 @list l9:level2
    11291160        {mso-level-number-format:alpha-lower;
    11301161        mso-level-tab-stop:none;
    11311162        mso-level-number-position:left;
     1163        margin-left:1.0in;
     1164        text-indent:-.25in;}
     1165@list l9:level2
     1166        {mso-level-tab-stop:1.0in;
     1167        mso-level-number-position:left;
    11321168        text-indent:-.25in;}
    11331169@list l9:level3
     
    11601196        text-indent:-.25in;}
    11611197@list l10
    1162         {mso-list-id:1074664733;
     1198        {mso-list-id:1323200535;
    11631199        mso-list-type:hybrid;
    1164         mso-list-template-ids:2033622918 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1200        mso-list-template-ids:-720724778 859726762 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    11651201@list l10:level1
    11661202        {mso-level-number-format:alpha-lower;
     
    11681204        mso-level-number-position:left;
    11691205        margin-left:1.0in;
    1170         text-indent:-.25in;
    1171         mso-ansi-font-weight:normal;}
     1206        text-indent:-.25in;}
    11721207@list l10:level2
    1173         {mso-level-number-format:alpha-lower;
    1174         mso-level-tab-stop:none;
     1208        {mso-level-tab-stop:1.0in;
     1209        mso-level-number-position:left;
     1210        text-indent:-.25in;}
     1211@list l10:level3
     1212        {mso-level-tab-stop:1.5in;
     1213        mso-level-number-position:left;
     1214        text-indent:-.25in;}
     1215@list l10:level4
     1216        {mso-level-tab-stop:2.0in;
     1217        mso-level-number-position:left;
     1218        text-indent:-.25in;}
     1219@list l10:level5
     1220        {mso-level-tab-stop:2.5in;
     1221        mso-level-number-position:left;
     1222        text-indent:-.25in;}
     1223@list l10:level6
     1224        {mso-level-tab-stop:3.0in;
     1225        mso-level-number-position:left;
     1226        text-indent:-.25in;}
     1227@list l10:level7
     1228        {mso-level-tab-stop:3.5in;
     1229        mso-level-number-position:left;
     1230        text-indent:-.25in;}
     1231@list l10:level8
     1232        {mso-level-tab-stop:4.0in;
     1233        mso-level-number-position:left;
     1234        text-indent:-.25in;}
     1235@list l10:level9
     1236        {mso-level-tab-stop:4.5in;
    11751237        mso-level-number-position:left;
    11761238        text-indent:-.25in;}
    11771239@list l11
    1178         {mso-list-id:1162892763;
     1240        {mso-list-id:1326516832;
    11791241        mso-list-type:hybrid;
    1180         mso-list-template-ids:2091276960 -1984140816 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1242        mso-list-template-ids:1433942448 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    11811243@list l11:level1
    1182         {mso-level-number-format:alpha-lower;
    1183         mso-level-tab-stop:none;
    1184         mso-level-number-position:left;
    1185         margin-left:1.0in;
     1244        {mso-level-tab-stop:none;
     1245        mso-level-number-position:left;
    11861246        text-indent:-.25in;}
    11871247@list l11:level2
     
    12181278        text-indent:-.25in;}
    12191279@list l12
    1220         {mso-list-id:1323200535;
     1280        {mso-list-id:1453328047;
    12211281        mso-list-type:hybrid;
    1222         mso-list-template-ids:-720724778 859726762 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1282        mso-list-template-ids:768896778 -756651182 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    12231283@list l12:level1
    12241284        {mso-level-number-format:alpha-lower;
     
    12261286        mso-level-number-position:left;
    12271287        margin-left:1.0in;
    1228         text-indent:-.25in;}
     1288        text-indent:-.25in;
     1289        mso-ansi-font-weight:normal;}
    12291290@list l12:level2
    12301291        {mso-level-tab-stop:1.0in;
     
    12601321        text-indent:-.25in;}
    12611322@list l13
    1262         {mso-list-id:1326516832;
     1323        {mso-list-id:1602683002;
    12631324        mso-list-type:hybrid;
    1264         mso-list-template-ids:1433942448 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1325        mso-list-template-ids:120980256 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    12651326@list l13:level1
    12661327        {mso-level-tab-stop:none;
     
    12681329        text-indent:-.25in;}
    12691330@list l13:level2
    1270         {mso-level-tab-stop:1.0in;
     1331        {mso-level-number-format:alpha-lower;
     1332        mso-level-tab-stop:none;
    12711333        mso-level-number-position:left;
    12721334        text-indent:-.25in;}
     
    13001362        text-indent:-.25in;}
    13011363@list l14
    1302         {mso-list-id:1399133343;
     1364        {mso-list-id:1669404025;
    13031365        mso-list-type:hybrid;
    1304         mso-list-template-ids:-1609646662 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1366        mso-list-template-ids:-1814001090 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    13051367@list l14:level1
    1306         {mso-level-tab-stop:none;
    1307         mso-level-number-position:left;
    1308         text-indent:-.25in;}
    1309 @list l15
    1310         {mso-list-id:1453328047;
    1311         mso-list-type:hybrid;
    1312         mso-list-template-ids:768896778 -756651182 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1313 @list l15:level1
    13141368        {mso-level-number-format:alpha-lower;
    13151369        mso-level-tab-stop:none;
     
    13181372        text-indent:-.25in;
    13191373        mso-ansi-font-weight:normal;}
     1374@list l14:level2
     1375        {mso-level-tab-stop:1.0in;
     1376        mso-level-number-position:left;
     1377        text-indent:-.25in;}
     1378@list l14:level3
     1379        {mso-level-tab-stop:112.5pt;
     1380        mso-level-number-position:left;
     1381        margin-left:112.5pt;
     1382        text-indent:-.25in;}
     1383@list l14:level4
     1384        {mso-level-tab-stop:2.0in;
     1385        mso-level-number-position:left;
     1386        text-indent:-.25in;}
     1387@list l14:level5
     1388        {mso-level-tab-stop:2.5in;
     1389        mso-level-number-position:left;
     1390        text-indent:-.25in;}
     1391@list l14:level6
     1392        {mso-level-tab-stop:3.0in;
     1393        mso-level-number-position:left;
     1394        text-indent:-.25in;}
     1395@list l14:level7
     1396        {mso-level-tab-stop:3.5in;
     1397        mso-level-number-position:left;
     1398        text-indent:-.25in;}
     1399@list l14:level8
     1400        {mso-level-tab-stop:4.0in;
     1401        mso-level-number-position:left;
     1402        text-indent:-.25in;}
     1403@list l14:level9
     1404        {mso-level-tab-stop:4.5in;
     1405        mso-level-number-position:left;
     1406        text-indent:-.25in;}
     1407@list l15
     1408        {mso-list-id:1753089587;
     1409        mso-list-template-ids:1555050902;}
     1410@list l15:level1
     1411        {mso-level-tab-stop:none;
     1412        mso-level-number-position:left;
     1413        text-indent:-.25in;}
    13201414@list l15:level2
    13211415        {mso-level-tab-stop:1.0in;
     
    13511445        text-indent:-.25in;}
    13521446@list l16
    1353         {mso-list-id:1602683002;
    1354         mso-list-type:hybrid;
    1355         mso-list-template-ids:120980256 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1447        {mso-list-id:2029942403;
     1448        mso-list-template-ids:1555050902;}
    13561449@list l16:level1
    13571450        {mso-level-tab-stop:none;
     
    13591452        text-indent:-.25in;}
    13601453@list l16:level2
    1361         {mso-level-number-format:alpha-lower;
    1362         mso-level-tab-stop:none;
     1454        {mso-level-tab-stop:1.0in;
    13631455        mso-level-number-position:left;
    13641456        text-indent:-.25in;}
     
    13921484        text-indent:-.25in;}
    13931485@list l17
    1394         {mso-list-id:1669404025;
     1486        {mso-list-id:2095858496;
    13951487        mso-list-type:hybrid;
    1396         mso-list-template-ids:-1814001090 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1488        mso-list-template-ids:-2088890812 709683864 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    13971489@list l17:level1
    1398         {mso-level-number-format:alpha-lower;
    1399         mso-level-tab-stop:none;
    1400         mso-level-number-position:left;
    1401         margin-left:1.0in;
    1402         text-indent:-.25in;
    1403         mso-ansi-font-weight:normal;}
     1490        {mso-level-tab-stop:none;
     1491        mso-level-number-position:left;
     1492        text-indent:-.25in;}
    14041493@list l17:level2
    14051494        {mso-level-tab-stop:1.0in;
     
    14071496        text-indent:-.25in;}
    14081497@list l17:level3
    1409         {mso-level-tab-stop:112.5pt;
    1410         mso-level-number-position:left;
    1411         margin-left:112.5pt;
     1498        {mso-level-tab-stop:1.5in;
     1499        mso-level-number-position:left;
    14121500        text-indent:-.25in;}
    14131501@list l17:level4
     
    14361524        text-indent:-.25in;}
    14371525@list l18
    1438         {mso-list-id:1753089587;
    1439         mso-list-template-ids:1555050902;}
    1440 @list l18:level1
    1441         {mso-level-tab-stop:none;
    1442         mso-level-number-position:left;
    1443         text-indent:-.25in;}
    1444 @list l18:level2
    1445         {mso-level-tab-stop:1.0in;
    1446         mso-level-number-position:left;
    1447         text-indent:-.25in;}
    1448 @list l18:level3
    1449         {mso-level-tab-stop:1.5in;
    1450         mso-level-number-position:left;
    1451         text-indent:-.25in;}
    1452 @list l18:level4
    1453         {mso-level-tab-stop:2.0in;
    1454         mso-level-number-position:left;
    1455         text-indent:-.25in;}
    1456 @list l18:level5
    1457         {mso-level-tab-stop:2.5in;
    1458         mso-level-number-position:left;
    1459         text-indent:-.25in;}
    1460 @list l18:level6
    1461         {mso-level-tab-stop:3.0in;
    1462         mso-level-number-position:left;
    1463         text-indent:-.25in;}
    1464 @list l18:level7
    1465         {mso-level-tab-stop:3.5in;
    1466         mso-level-number-position:left;
    1467         text-indent:-.25in;}
    1468 @list l18:level8
    1469         {mso-level-tab-stop:4.0in;
    1470         mso-level-number-position:left;
    1471         text-indent:-.25in;}
    1472 @list l18:level9
    1473         {mso-level-tab-stop:4.5in;
    1474         mso-level-number-position:left;
    1475         text-indent:-.25in;}
    1476 @list l19
    1477         {mso-list-id:2029942403;
    1478         mso-list-template-ids:1555050902;}
    1479 @list l19:level1
    1480         {mso-level-tab-stop:none;
    1481         mso-level-number-position:left;
    1482         text-indent:-.25in;}
    1483 @list l19:level2
    1484         {mso-level-tab-stop:1.0in;
    1485         mso-level-number-position:left;
    1486         text-indent:-.25in;}
    1487 @list l19:level3
    1488         {mso-level-tab-stop:1.5in;
    1489         mso-level-number-position:left;
    1490         text-indent:-.25in;}
    1491 @list l19:level4
    1492         {mso-level-tab-stop:2.0in;
    1493         mso-level-number-position:left;
    1494         text-indent:-.25in;}
    1495 @list l19:level5
    1496         {mso-level-tab-stop:2.5in;
    1497         mso-level-number-position:left;
    1498         text-indent:-.25in;}
    1499 @list l19:level6
    1500         {mso-level-tab-stop:3.0in;
    1501         mso-level-number-position:left;
    1502         text-indent:-.25in;}
    1503 @list l19:level7
    1504         {mso-level-tab-stop:3.5in;
    1505         mso-level-number-position:left;
    1506         text-indent:-.25in;}
    1507 @list l19:level8
    1508         {mso-level-tab-stop:4.0in;
    1509         mso-level-number-position:left;
    1510         text-indent:-.25in;}
    1511 @list l19:level9
    1512         {mso-level-tab-stop:4.5in;
    1513         mso-level-number-position:left;
    1514         text-indent:-.25in;}
    1515 @list l20
    15161526        {mso-list-id:2096583681;
    15171527        mso-list-type:hybrid;
    15181528        mso-list-template-ids:-393712734 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1519 @list l20:level1
     1529@list l18:level1
    15201530        {mso-level-tab-stop:none;
     1531        mso-level-number-position:left;
     1532        text-indent:-.25in;}
     1533@list l18:level2
     1534        {mso-level-tab-stop:1.0in;
     1535        mso-level-number-position:left;
     1536        text-indent:-.25in;}
     1537@list l18:level3
     1538        {mso-level-tab-stop:1.5in;
     1539        mso-level-number-position:left;
     1540        text-indent:-.25in;}
     1541@list l18:level4
     1542        {mso-level-tab-stop:2.0in;
     1543        mso-level-number-position:left;
     1544        text-indent:-.25in;}
     1545@list l18:level5
     1546        {mso-level-tab-stop:2.5in;
     1547        mso-level-number-position:left;
     1548        text-indent:-.25in;}
     1549@list l18:level6
     1550        {mso-level-tab-stop:3.0in;
     1551        mso-level-number-position:left;
     1552        text-indent:-.25in;}
     1553@list l18:level7
     1554        {mso-level-tab-stop:3.5in;
     1555        mso-level-number-position:left;
     1556        text-indent:-.25in;}
     1557@list l18:level8
     1558        {mso-level-tab-stop:4.0in;
     1559        mso-level-number-position:left;
     1560        text-indent:-.25in;}
     1561@list l18:level9
     1562        {mso-level-tab-stop:4.5in;
    15211563        mso-level-number-position:left;
    15221564        text-indent:-.25in;}
     
    15481590<link href=gsasIIfav.png rel="SHORTCUT ICON">
    15491591<!--[if gte mso 9]><xml>
    1550  <o:shapedefaults v:ext="edit" spidmax="10242"/>
     1592 <o:shapedefaults v:ext="edit" spidmax="12290"/>
    15511593</xml><![endif]--><!--[if gte mso 9]><xml>
    15521594 <o:shapelayout v:ext="edit">
     
    15791621 <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
    15801622 <o:lock v:ext="edit" aspectratio="t"/>
    1581 </v:shapetype><v:shape id="Picture_x0020_2" o:spid="_x0000_s1039" type="#_x0000_t75"
     1623</v:shapetype><v:shape id="Picture_x0020_2" o:spid="_x0000_s1041" type="#_x0000_t75"
    15821624 alt="GSAS-II logo" style='position:absolute;margin-left:56pt;margin-top:0;
    15831625 width:96pt;height:96pt;z-index:1;visibility:visible;mso-wrap-style:square;
     
    16151657</span></div>
    16161658
    1617 <h2><a name="Data_tree"><span style='mso-fareast-font-family:"Times New Roman"'>1.
    1618 GSAS-II data tree</span></a><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h2>
     1659<h2><a name="Data_tree"></a><span style='mso-fareast-font-family:"Times New Roman"'>1.
     1660GSAS-II data tree<o:p></o:p></span></h2>
    16191661
    16201662<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     
    16311673as outlined below: <o:p></o:p></span></p>
    16321674
    1633 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
     1675<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l7 level1 lfo1'><![if !supportLists]><span
    16341676style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    16351677style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
     
    16371679
    16381680<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1639 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1681auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    16401682style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    16411683style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    16501692
    16511693<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1652 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1694auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    16531695style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    16541696style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    16621704
    16631705<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1664 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1706auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    16651707style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    16661708style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    16721714
    16731715<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1674 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1716auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    16751717style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    16761718style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    16811723
    16821724<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1683 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1725auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    16841726style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
    16851727style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    16901732option) GSAS-II; useful for escaping from GSAS-II if needed.</span></p>
    16911733
    1692 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
     1734<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo1'><![if !supportLists]><span
    16931735style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    16941736style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
     
    16961738
    16971739<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1698 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1740auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    16991741style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    17001742style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17101752
    17111753<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1712 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1754auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17131755style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    17141756style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17231765
    17241766<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1725 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1767auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17261768style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    17271769style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17321774
    17331775<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1734 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1776auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17351777style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    17361778style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17381780
    17391781<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1740 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1782auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17411783style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
    17421784style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17441786
    17451787<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1746 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1788auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17471789style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>f.<span
    17481790style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17501792
    17511793<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1752 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1794auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17531795style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>g.<span
    17541796style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17561798
    17571799<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1758 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1800auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17591801style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>h.<span
    17601802style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17621804
    17631805<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1764 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1806auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17651807style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>i.<span
    17661808style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    17691811
    17701812<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1771 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1813auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17721814style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>j.<span
    17731815style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    17751817data</b> - </p>
    17761818
    1777 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
     1819<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo1'><![if !supportLists]><span
    17781820style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
    17791821style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
     
    17811823
    17821824<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1783 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1825auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17841826style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    17851827style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17871829
    17881830<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1789 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1831auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17901832style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    17911833style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    17941836
    17951837<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1796 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1838auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    17971839style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    17981840style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18001842
    18011843<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1802 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1844auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18031845style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    18041846style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18061848
    18071849<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1808 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1850auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18091851style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
    18101852style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    18111853style='mso-bidi-font-weight:normal'>Solve</b> - </p>
    18121854
    1813 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
     1855<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo1'><![if !supportLists]><span
    18141856style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
    18151857style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
     
    18171859
    18181860<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1819 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1861auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18201862style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    18211863style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18231865
    18241866<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1825 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1867auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18261868style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    18271869style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18291871
    18301872<p class=MsoListParagraphCxSpMiddle style='margin-left:1.5in;mso-add-space:
    1831 auto;text-indent:-.25in;mso-list:l9 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
     1873auto;text-indent:-.25in;mso-list:l7 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
    18321874style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    18331875style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18351877
    18361878<p class=MsoListParagraphCxSpMiddle style='margin-left:1.5in;mso-add-space:
    1837 auto;text-indent:-.25in;mso-list:l9 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
     1879auto;text-indent:-.25in;mso-list:l7 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
    18381880style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    18391881style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18411883
    18421884<p class=MsoListParagraphCxSpMiddle style='margin-left:1.5in;mso-add-space:
    1843 auto;text-indent:-.25in;mso-list:l9 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
     1885auto;text-indent:-.25in;mso-list:l7 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
    18441886style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
    18451887style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18471889
    18481890<p class=MsoListParagraphCxSpMiddle style='margin-left:1.5in;mso-add-space:
    1849 auto;text-indent:-.25in;mso-list:l9 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
     1891auto;text-indent:-.25in;mso-list:l7 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
    18501892style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
    18511893style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18531895
    18541896<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1855 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1897auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18561898style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    18571899style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18591901
    18601902<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1861 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1903auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18621904style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    18631905style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    18641906style='mso-bidi-font-weight:normal'>Import HKLs&#8230;</b> - </p>
    18651907
    1866 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
     1908<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo1'><![if !supportLists]><span
    18671909style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
    18681910style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
     
    18701912
    18711913<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1872 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1914auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18731915style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    18741916style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18761918
    18771919<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1878 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1920auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18791921style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    18801922style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18821924
    18831925<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1884 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1926auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18851927style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    18861928style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18881930
    18891931<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1890 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1932auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18911933style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    18921934style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18941936
    18951937<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1896 auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1938auto;text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    18971939style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
    18981940style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    19001942
    19011943<p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto;
    1902 text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
     1944text-indent:-.25in;mso-list:l7 level2 lfo1'><![if !supportLists]><span
    19031945style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>f.<span
    19041946style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    19662008<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
    19672009
    1968 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
     2010<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
    19692011style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    19702012style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    19782020Hessian&#8217; for routine work.<o:p></o:p></span></p>
    19792021
    1980 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
     2022<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
    19812023style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    19822024style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
    19832025style='mso-fareast-font-family:"Times New Roman"'>Select &#8216;Min
    1984 delta-M/M&#8217; for convergence; the refinement will stop when the change in the
    1985 minimization function is less than this value. Set Min delta-M/M = 1.0 to force
    1986 just a single cycle to be performed. A value less than 10<sup>-4</sup> (the
    1987 default) generally gives no better result. The allowed range is 10<sup>-9</sup>
     2026delta-M/M&#8217; for convergence; the refinement will stop when the change in
     2027the minimization function is less than this value. Set Min delta-M/M = 1.0 to
     2028force just a single cycle to be performed. A value less than 10<sup>-4</sup>
     2029(the default) generally gives no better result. The allowed range is 10<sup>-9</sup>
    19882030to 1.0.<o:p></o:p></span></p>
    19892031
    1990 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
     2032<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
    19912033style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
    19922034style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    20002042performance.<o:p></o:p></span></p>
    20012043
    2002 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
     2044<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
    20032045style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
    20042046style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    20122054cycles.<o:p></o:p></span></p>
    20132055
    2014 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
     2056<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
    20152057style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
    20162058style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    20432085<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
    20442086
    2045 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l16 level1 lfo3'><![if !supportLists]><span
     2087<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l13 level1 lfo3'><![if !supportLists]><span
    20462088style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    20472089style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    20502092the &#8216;Edit menu.<o:p></o:p></span></p>
    20512093
    2052 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo3'><![if !supportLists]><span
     2094<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l13 level1 lfo3'><![if !supportLists]><span
    20532095style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    20542096style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    20572099
    20582100<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2059 auto;text-indent:-.25in;mso-list:l16 level2 lfo3'><![if !supportLists]><span
     2101auto;text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span
    20602102style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    20612103style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    20752117
    20762118<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2077 auto;text-indent:-.25in;mso-list:l16 level2 lfo3'><![if !supportLists]><span
     2119auto;text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span
    20782120style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    20792121style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    20942136
    20952137<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2096 auto;text-indent:-.25in;mso-list:l16 level2 lfo3'><![if !supportLists]><span
     2138auto;text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span
    20972139style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    20982140style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    21122154
    21132155<p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto;
    2114 text-indent:-.25in;mso-list:l16 level2 lfo3'><![if !supportLists]><span
     2156text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span
    21152157style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    21162158style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    21202162the result of the sum can be varied in the refinement. The keyword
    21212163&#8216;FUNCT&#8217; marks it as a function; the &#8216;Refine?&#8217; box
    2122 indicates your choice to refine the result of the sum. A Delete button can be
    2123 used to remove it.<o:p></o:p></span></p>
     2164indicates your choice to refine the result of the sum. A Delete button can be used
     2165to remove it.<o:p></o:p></span></p>
    21242166
    21252167<h4><a name=Restraints><span style='mso-fareast-font-family:"Times New Roman"'>Restraints</span></a><span
     
    21272169
    21282170<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2171window is empty<o:p></o:p></span></p>
     2172
     2173<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2174
     2175<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>Nothing
     2176just yet<o:p></o:p></span></p>
     2177
     2178<h4><a name=Sequential></a><u><span style='mso-fareast-font-family:"Times New Roman"'>Sequential</span></u><span
     2179style='mso-fareast-font-family:"Times New Roman"'> refinement results<o:p></o:p></span></h4>
     2180
     2181<p class=MsoNormal>In this window is tabulated the results of your sequential
     2182refinement. The columns are the parameter names; the naming convention is &#8216;p<span
     2183class=GramE>:h:name:n&#8217;</span> where p is the phase number, h is the
     2184histogram number, name is the parameter name, and num (if needed) is the item
     2185number (e.g. atom number). The rows are the data sets used in the sequential refinement.</p>
     2186
     2187<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2188
     2189<h5><span style='mso-fareast-font-family:"Times New Roman"'><o:p>&nbsp;</o:p></span></h5>
     2190
     2191<h3>Histograms</h3>
     2192
     2193<p class=MsoNormal>These are shown in the data tree with a prefix of
     2194&#8216;PWDR&#8217;, &#8217;HKLF&#8217;, &#8216;IMG&#8217;, &#8216;PDF&#8217; or
     2195&#8216;XXXX&#8217; (future &#8211; restraints??) and usually a file name. These
     2196constitute the data sets (&#8216;Histograms&#8217;) to be used by GSAS-II for
     2197analysis. Selection of these items does not produce any information in the data
     2198window but does display the data in the Plots Window. They are described below.</p>
     2199
     2200<h3>Powder Histograms - PWDR</h3>
     2201
     2202<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>When
     2203a powder diffraction data set (prefix &#8216;PWDR&#8217;) is selected from the </span><a
     2204href="#Data_tree"><span style='mso-fareast-font-family:"Times New Roman"'>data
     2205tree</span></a><span style='mso-fareast-font-family:"Times New Roman"'>, a
     2206variety of subcategories in the tree are shown. The items that are shown depend
     2207on the data set type. Selecting a subcategory raises the window listed below. <o:p></o:p></span></p>
     2208
     2209<h4><a name=Comments></a><a name=""></a><span style='mso-bookmark:Comments'><u>Comments<o:p></o:p></u></span></h4>
     2210
     2211<p class=MsoNormal><span style='mso-bookmark:Comments'>This window shows whatever
     2212comment lines (preceded by &#8220;#&#8221;) found when the powder data file was
     2213read by GSAS-II. If you are lucky, there will be useful information here (e.g.
     2214sample name, date collected, wavelength used, etc.). If not, this window will
     2215be blank. The text is read-only in that anything you try to enter here is not
     2216saved.</span></p>
     2217
     2218<span style='mso-bookmark:Comments'></span>
     2219
     2220<h4><a name=Limits><u><span style='mso-fareast-font-family:"Times New Roman"'>Limits</span></u></a><u><span
     2221style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></u></h4>
     2222
     2223<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2224window shows the limits in position to be used in any fitting for this powder
     2225pattern. The &#8216;original&#8217; values are obtained from the minimum &amp;
     2226maximum values in the powder pattern. You can modify &#8216;changed&#8217; as
     2227needed.<o:p></o:p></span></p>
     2228
     2229<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2230
     2231<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l16 level1 lfo4'><![if !supportLists]><span
     2232style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     2233style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2234style='mso-fareast-font-family:"Times New Roman"'>You can change <span
     2235class=SpellE>Tmin</span> and <span class=SpellE>Tmax</span> in the
     2236&#8216;changed&#8217; row as needed. Use the mouse to select the value to be
     2237changed (the background on the box will be blue or have a black border or a
     2238vertical bar will appear in the value), then enter the new value and press
     2239Enter or click the mouse elsewhere in the Background window. This will set the
     2240new value.<o:p></o:p></span></p>
     2241
     2242<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo4'><![if !supportLists]><span
     2243style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
     2244style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2245style='mso-fareast-font-family:"Times New Roman"'>Modify the values of
     2246&#8216;changed&#8217;; this can be done on the plot by dragging the limit bars
     2247(left &#8211; vertical green dashed line, right &#8211; vertical red dashed
     2248line) into position. A left or right mouse click on a data point on the plot
     2249will set the associated limit. In either case the appropriate value on the
     2250&#8216;changed&#8217; row will be updated immediately.<o:p></o:p></span></p>
     2251
     2252<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo4'><![if !supportLists]><span
     2253style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
     2254style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2255style='mso-fareast-font-family:"Times New Roman"'>Menu &#8216;<b
     2256style='mso-bidi-font-weight:normal'>File</b>&#8217; &#8211; <o:p></o:p></span></p>
     2257
     2258<p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto;
     2259text-indent:-.25in;mso-list:l14 level1 lfo5'><![if !supportLists]><span
     2260style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
     2261style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2262style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b><span
     2263style='mso-fareast-font-family:"Times New Roman"'> &#8211; this copies the
     2264limits shown to other selected powder patterns. If used, a dialog box (Copy
     2265Parameters) will appear showing the list of available powder patterns, you can
     2266copy the limits parameters to any or all of them; select &#8216;All&#8217; to
     2267copy them to all patterns. Then select &#8216;OK&#8217; to do the copy;
     2268&#8216;Cancel&#8217; to cancel the operation.<o:p></o:p></span></p>
     2269
     2270<h4><a name=Background><u><span style='mso-fareast-font-family:"Times New Roman"'>Background<o:p></o:p></span></u></a></h4>
     2271
     2272<span style='mso-bookmark:Background'></span>
     2273
     2274<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2275window shows the choice of background functions and coefficients to be used in
     2276fitting this powder pattern. There are three types of contributions available
     2277for the background:<o:p></o:p></span></p>
     2278
     2279<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>1).
     2280A continuous empirical function (&#8216;<span class=SpellE>chebyschev</span>&#8217;,
     2281&#8216;cosine&#8217;, &#8216;<span class=SpellE><span class=GramE>lin</span></span>
     2282interpolate&#8217;, &#8216;inv interpolate&#8217; &amp; &#8216;log
     2283interpolate&#8217;). The latter three select fixed points with spacing that is <span
     2284class=GramE>either equal</span>, inversely equal or equal on a log scale of the
     2285x-coordinate. The set of magnitudes at each point then comprise the background
     2286variables. All are refined when refine is selected.<o:p></o:p></span></p>
     2287
     2288<p class=MsoNormal style='tab-stops:0in'><span style='mso-fareast-font-family:
     2289"Times New Roman"'>2). A set of Debye diffuse scattering equation terms of the
     2290form:<br>
     2291</span><!--[if gte msEquation 12]><m:oMath><i style='mso-bidi-font-style:normal'><span
     2292 style='font-family:"Cambria Math","serif";mso-fareast-font-family:"Times New Roman"'><span
     2293 style='mso-tab-count:2'> </span><m:r>B</m:r><m:r>=</m:r><m:r>A</m:r></span></i><m:d><m:dPr><span
     2294   style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2295   mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2296   normal'><m:ctrlPr></m:ctrlPr></span></m:dPr><m:e><m:f><m:fPr><m:type m:val="skw"/><span
     2297     style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2298     mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2299     normal'><m:ctrlPr></m:ctrlPr></span></m:fPr><m:num><i style='mso-bidi-font-style:
     2300     normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2301     "Times New Roman"'><m:r>sinQR</m:r></span></i></m:num><m:den><i
     2302     style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2303     mso-fareast-font-family:"Times New Roman"'><m:r>QR</m:r></span></i></m:den></m:f></m:e></m:d><m:sSup><m:sSupPr><span
     2304   style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2305   mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2306   normal'><m:ctrlPr></m:ctrlPr></span></m:sSupPr><m:e><i style='mso-bidi-font-style:
     2307   normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2308   "Times New Roman"'><m:r>e</m:r></span></i></m:e><m:sup><i style='mso-bidi-font-style:
     2309   normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2310   "Times New Roman"'><m:r>-</m:r><m:r>U</m:r></span></i><m:sSup><m:sSupPr><span
     2311     style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2312     mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2313     normal'><m:ctrlPr></m:ctrlPr></span></m:sSupPr><m:e><i style='mso-bidi-font-style:
     2314     normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2315     "Times New Roman"'><m:r>Q</m:r></span></i></m:e><m:sup><i
     2316     style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2317     mso-fareast-font-family:"Times New Roman"'><m:r>2</m:r></span></i></m:sup></m:sSup></m:sup></m:sSup></m:oMath><![endif]--><![if !msEquation]><span
     2318style='font-size:12.0pt;font-family:"Times New Roman","serif";mso-fareast-font-family:
     2319"Times New Roman";mso-fareast-theme-font:minor-fareast;position:relative;
     2320top:16.0pt;mso-text-raise:-16.0pt;mso-ansi-language:EN-US;mso-fareast-language:
     2321EN-US;mso-bidi-language:AR-SA'><!--[if gte vml 1]><v:shape id="_x0000_i1025"
     2322 type="#_x0000_t75" style='width:133.5pt;height:38.25pt'>
     2323 <v:imagedata src="gsasII_files/image001.png" o:title="" chromakey="white"/>
     2324</v:shape><![endif]--><![if !vml]><img width=178 height=51
     2325src="gsasII_files/image002.gif" v:shapes="_x0000_i1025"><![endif]></span><![endif]><span
     2326style='mso-fareast-font-family:"Times New Roman"'><span style='mso-tab-count:
     23271'>&nbsp;&nbsp;&nbsp;&nbsp; </span><o:p></o:p></span></p>
     2328
     2329<p class=MsoNormal><span class=GramE><span style='mso-fareast-font-family:"Times New Roman"'>where</span></span><span
     2330style='mso-fareast-font-family:"Times New Roman"'> A,R &amp; U are the possible
     2331variables and can be individually selected as desired; Q = 2</span><span
     2332style='font-family:Symbol;mso-fareast-font-family:"Times New Roman"'>p</span><span
     2333style='mso-fareast-font-family:"Times New Roman"'>/d.<o:p></o:p></span></p>
     2334
     2335<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>3).
     2336A set of individual Bragg peaks using the pseudo-Voigt profile function as
     2337their shapes. Their parameters are &#8216;pos&#8217;, &#8217;<span
     2338class=SpellE>int</span>&#8217;, &#8216;sig&#8217; &amp; &#8216;<span
     2339class=SpellE>gam</span>&#8217;; each can be selected for refinement. The
     2340default values for sig &amp; <span class=SpellE>gam</span> (=0.10) are for very
     2341sharp peaks, you may adjust them accordingly to the kind of peak you are trying
     2342to fit before trying to refine them.<o:p></o:p></span></p>
     2343
     2344<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2345
     2346<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l15 level1 lfo6'><![if !supportLists]><span
     2347style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     2348style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2349style='mso-fareast-font-family:"Times New Roman"'>Menu &#8216;<b
     2350style='mso-bidi-font-weight:normal'>File</b>&#8217; &#8211; <o:p></o:p></span></p>
     2351
     2352<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2353auto;text-indent:-.25in;mso-list:l2 level1 lfo7'><![if !supportLists]><span
     2354style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
     2355style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2356style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b><span
     2357style='mso-fareast-font-family:"Times New Roman"'> &#8211; this copies the
     2358background parameters shown to other selected powder patterns. If used, a
     2359dialog box (Copy Parameters) will appear showing the list of available powder
     2360patterns, you can copy the background parameters to any or all of them; select
     2361&#8216;All&#8217; to copy them to all patterns. Then select &#8216;OK&#8217; to
     2362do the copy; &#8216;Cancel&#8217; to cancel the operation.<o:p></o:p></span></p>
     2363
     2364<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l15 level1 lfo6'><![if !supportLists]><span
     2365style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
     2366style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2367style='mso-fareast-font-family:"Times New Roman"'>You can select a different
     2368Background function from the pull down tab.<o:p></o:p></span></p>
     2369
     2370<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l15 level1 lfo6'><![if !supportLists]><span
     2371style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
     2372style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2373style='mso-fareast-font-family:"Times New Roman"'>You can choose to refine/not
     2374refine the background coefficients.<o:p></o:p></span></p>
     2375
     2376<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l15 level1 lfo6'><![if !supportLists]><span
     2377style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
     2378style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2379style='mso-fareast-font-family:"Times New Roman"'>You can select the number of
     2380background coefficients to be used (1-36).<o:p></o:p></span></p>
     2381
     2382<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l15 level1 lfo6'><![if !supportLists]><span
     2383style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
     2384style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2385style='mso-fareast-font-family:"Times New Roman"'>You can change individual
     2386background coefficient values. Enter the value then press Enter or click the
     2387mouse elsewhere in the Background window. This will set the new value.<o:p></o:p></span></p>
     2388
     2389<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l15 level1 lfo6'><![if !supportLists]><span
     2390style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
     2391style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2392style='mso-fareast-font-family:"Times New Roman"'>You can introduce one or more
     2393Debye scattering terms into the background. For each one you should enter a
     2394sensible value for &#8216;R&#8217; &#8211; an expected <span class=SpellE>interatomic</span>
     2395distance in an amorphous phase is appropriate. Select parameters to refine;
     2396usually start with the &#8216;A&#8217; coefficients.<o:p></o:p></span></p>
     2397
     2398<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l15 level1 lfo6'><![if !supportLists]><span
     2399style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>7.<span
     2400style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2401style='mso-fareast-font-family:"Times New Roman"'>You can introduce single
     2402Bragg peaks into the background. For each you should specify at least the
     2403position. Select parameters to refine; usually start with the &#8216;<span
     2404class=SpellE>int</span>&#8217; coefficients.<o:p></o:p></span></p>
     2405
     2406<h4><a name="Instrument_Parameters"><u><span style='mso-fareast-font-family:
     2407"Times New Roman"'>Instrument Parameters</span></u></a><u><span
     2408style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></u></h4>
     2409
     2410<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2411window shows the instrument parameters for the selected powder data set. <o:p></o:p></span></p>
     2412
     2413<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2414
     2415<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l5 level1 lfo8'><![if !supportLists]><span
     2416style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     2417style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2418style='mso-fareast-font-family:"Times New Roman"'>Menu &#8216;<b
     2419style='mso-bidi-font-weight:normal'>Operations</b>&#8217; &#8211; <o:p></o:p></span></p>
     2420
     2421<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2422auto;text-indent:-.25in;mso-list:l12 level1 lfo9'><![if !supportLists]><span
     2423style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
     2424style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2425style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Reset
     2426profile </span></b><span style='mso-fareast-font-family:"Times New Roman"'>&#8211;
     2427resets the values for the instrument parameters to the default values shown in
     2428parentheses for each entry.<o:p></o:p></span></p>
     2429
     2430<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2431auto;text-indent:-.25in;mso-list:l12 level1 lfo9'><![if !supportLists]><span
     2432style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
     2433style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2434style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b><span
     2435style='mso-fareast-font-family:"Times New Roman"'> &#8211; this copies the
     2436instrument parameters shown to other selected powder patterns. If used, a
     2437dialog box (Copy Parameters) will appear showing the list of available powder
     2438patterns, you can copy the instrument parameters to any or all of them; select
     2439&#8216;All&#8217; to copy them to all patterns. Then select &#8216;OK&#8217; to
     2440do the copy; &#8216;Cancel&#8217; to cancel the operation.<o:p></o:p></span></p>
     2441
     2442<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2443auto;text-indent:-.25in;mso-list:l12 level1 lfo9'><![if !supportLists]><span
     2444style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
     2445style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2446style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Change
     2447radiation</span></b><span style='mso-fareast-font-family:"Times New Roman"'>
     2448&#8211; this changes the radiation between single wavelength (e.g. for
     2449synchrotron source) and K</span><sub><span style='font-family:Symbol;
     2450mso-fareast-font-family:"Times New Roman"'>a</span></sub><sub><span
     2451style='mso-fareast-font-family:"Times New Roman"'>1</span></sub><span
     2452style='mso-fareast-font-family:"Times New Roman"'>/K</span><sub><span
     2453style='font-family:Symbol;mso-fareast-font-family:"Times New Roman"'>a</span></sub><sub><span
     2454style='mso-fareast-font-family:"Times New Roman"'>2</span></sub><span
     2455style='mso-fareast-font-family:"Times New Roman"'> wavelength pairs (e.g. a
     2456laboratory tube source).<o:p></o:p></span></p>
     2457
     2458<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo8'><![if !supportLists]><span
     2459style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
     2460style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2461style='mso-fareast-font-family:"Times New Roman"'>You can change any of the
     2462profile coefficients<o:p></o:p></span></p>
     2463
     2464<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l5 level1 lfo8'><![if !supportLists]><span
     2465style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
     2466style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2467style='mso-fareast-font-family:"Times New Roman"'>You can choose to refine any
     2468profile coefficients. <b style='mso-bidi-font-weight:normal'>NB</b>: In certain
     2469circumstances some choices are ignored e.g. Zero is not refined during peak
     2470fitting. Also some choices may lead to unstable refinement, e.g. <span
     2471class=GramE>Lam</span> refinement and lattice parameter refinement. Examine the
     2472&#8216;</span><a href="#Covariance"><span style='mso-fareast-font-family:"Times New Roman"'>Covariance&#8217;</span></a><span
     2473style='mso-fareast-font-family:"Times New Roman"'> display for highly
     2474correlated parameters.<o:p></o:p></span></p>
     2475
     2476<h4><a name="Sample_Parameters"></a><u><span style='mso-fareast-font-family:
     2477"Times New Roman"'>Sample Parameters<o:p></o:p></span></u></h4>
     2478
     2479<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    21292480window... <o:p></o:p></span></p>
    21302481
     2482<h4><a name="Powder_Peaks"></a><a name="Peak_List"><span style='mso-bookmark:
     2483Powder_Peaks'><span style='mso-fareast-font-family:"Times New Roman"'>Peak List</span></span></a><span
     2484style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h4>
     2485
     2486<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2487window shows the list of peaks that will be used by the peak fitting
     2488refinement. It is filled by picking peaks in the powder pattern displayed in
     2489the GSASII Plots window as a sequence of &#8216;+&#8217; marks. See </span><a
     2490href="#Powder_Patterns"><span style='mso-fareast-font-family:"Times New Roman"'>Powder
     2491Patterns</span></a><span style='mso-fareast-font-family:"Times New Roman"'>
     2492below for details for what can be done on this plot.<o:p></o:p></span></p>
     2493
     2494<h4><a name="Index_Peaks"></a><a name="Index_Peak_List"></a><span
     2495style='mso-bookmark:Index_Peaks'><span style='mso-fareast-font-family:"Times New Roman"'>Index
     2496Peak List</span></span><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h4>
     2497
     2498<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2499window shows the list of peaks that will be used for indexing (see </span><a
     2500href="#Unit_Cells_List"><span style='mso-fareast-font-family:"Times New Roman"'>Unit
     2501Cells List</span></a><span style='mso-fareast-font-family:"Times New Roman"'>).
     2502It must be filled before indexing can proceed. When indexing is completed, this
     2503display will show the resulting <span class=SpellE>hkl</span> values for every
     2504indexed reflection along with the calculated d-spacing (&#8216;d-<span
     2505class=SpellE>calc</span>&#8217;) for the selected unit cell in </span><a
     2506href="#Unit_Cells_List"><span style='mso-fareast-font-family:"Times New Roman"'>Unit
     2507Cells List</span></a><span style='mso-fareast-font-family:"Times New Roman"'>.<o:p></o:p></span></p>
     2508
    21312509<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2510
     2511<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l17 level1 lfo10'><![if !supportLists]><span
     2512style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     2513style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2514style='mso-fareast-font-family:"Times New Roman"'>Menu &#8216;<b
     2515style='mso-bidi-font-weight:normal'>Operations</b>&#8217; &#8211; <b
     2516style='mso-bidi-font-weight:normal'>Load/Reload</b> &#8211; loads the peak
     2517positions &amp; intensities from the </span><a href="#Peak_List"><span
     2518style='mso-fareast-font-family:"Times New Roman"'>Peak List</span></a><span
     2519style='mso-fareast-font-family:"Times New Roman"'> to make them available for
     2520the indexing routine. The d-<span class=SpellE>obs</span> is obtained from
     2521Bragg&#8217;s Law after applying the Zero correction shown on the </span><a
     2522href="#Instrument_Parameters"><span style='mso-fareast-font-family:"Times New Roman"'>Instrument
     2523Parameters</span></a><span style='mso-fareast-font-family:"Times New Roman"'>
     2524table to the position shown here.<o:p></o:p></span></p>
     2525
     2526<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l17 level1 lfo10'><![if !supportLists]><span
     2527style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
     2528style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2529style='mso-fareast-font-family:"Times New Roman"'>You may deselect individual
     2530peaks from indexing by <span class=SpellE>unchecking</span> the corresponding &#8216;use&#8217;
     2531box.<o:p></o:p></span></p>
     2532
     2533<h4><a name="Cell_Indexing_Refine"></a><a name="Unit_Cells_List"></a><span
     2534style='mso-bookmark:Cell_Indexing_Refine'><span style='mso-fareast-font-family:
     2535"Times New Roman"'>Unit Cells List</span></span><span style='mso-fareast-font-family:
     2536"Times New Roman"'><o:p></o:p></span></h4>
     2537
     2538<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2539window... <o:p></o:p></span></p>
     2540
     2541<h4><a name="Reflection_List"><span style='mso-fareast-font-family:"Times New Roman"'>Reflection
     2542List</span></a><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h4>
     2543
     2544<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2545window... <o:p></o:p></span></p>
     2546
     2547<h3>Single Crystal Histograms - HKLF</h3>
     2548
     2549<h3><span style='mso-fareast-font-family:"Times New Roman"'>Pair Distribution
     2550Functions - PDF<o:p></o:p></span></h3>
     2551
     2552<h4><a name="PDF_Controls"></a><span style='mso-fareast-font-family:"Times New Roman"'>PDF
     2553Controls<o:p></o:p></span></h4>
     2554
     2555<p class=MsoNormal>This window </p>
     2556
     2557<h4><a name="I_Q"></a><span class=GramE><span style='mso-fareast-font-family:
     2558"Times New Roman"'>I(</span></span><span style='mso-fareast-font-family:"Times New Roman"'>Q),
     2559<a name="S_Q"></a>S(Q), <a name="F_Q"></a>F(Q) &amp; <a name="G_R"></a>G(R)<o:p></o:p></span></h4>
     2560
     2561<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2562window... <o:p></o:p></span></p>
     2563
     2564<h3><span style='mso-fareast-font-family:"Times New Roman"'>2-D Images &#8211;
     2565IMG<o:p></o:p></span></h3>
     2566
     2567<h4><a name=Images>Image Controls</a></h4>
     2568
     2569<span style='mso-bookmark:Images'></span>
     2570
     2571<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2572window... <o:p></o:p></span></p>
     2573
     2574<h4><a name="_Image_Masks"></a><a href="#_Image_Masks"><span style='color:#4F81BD;
     2575mso-themecolor:accent1;text-decoration:none;text-underline:none'>Image Ma<span
     2576style='mso-bookmark:Image_Masks'></span>sks</span></a><![if !supportNestedAnchors]><a
     2577name="Image_Masks"></a><![endif]></h4>
     2578
     2579<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     2580window... <o:p></o:p></span></p>
    21322581
    21332582<h3>Phase Windows</h3>
     
    21472596gives overall parameters describing the phase such as the name, space group,
    21482597the unit cell parameters and overall parameters for the atom present in the
    2149 phase. <a name=Data>It also has the controls for computing Fourier maps for
    2150 this phase.<o:p></o:p></a></span></p>
    2151 
    2152 <h5><span style='mso-bookmark:Data'><span style='mso-fareast-font-family:"Times New Roman"'>What
    2153 can I do here?<o:p></o:p></span></span></h5>
    2154 
    2155 <h4><span style='mso-bookmark:Data'><u><span style='mso-fareast-font-family:
    2156 "Times New Roman"'>Data<o:p></o:p></span></u></span></h4>
    2157 
    2158 <span style='mso-bookmark:Data'></span>
    2159 
    2160 <h5><a name=Texture></a><a name=Atoms><span style='mso-bookmark:Texture'><span
    2161 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></span></a></h5>
    2162 
    2163 <h4><span style='mso-bookmark:Atoms'><span style='mso-bookmark:Texture'><u>Atom</u>
    2164 Parameter<u>s</u></span></span></h4>
    2165 
    2166 <span style='mso-bookmark:Atoms'></span>
    2167 
    2168 <h5><span style='mso-bookmark:Texture'><a name="Draw_Options"><span
    2169 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></a></span></h5>
    2170 
    2171 <h4><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Options'><u>Texture</u>
    2172 Parameters</span></span></h4>
    2173 
    2174 <h5><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Options'><span
    2175 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></span></span></h5>
    2176 
    2177 <h4><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Options'><u>Draw
    2178 Options</u></span></span></h4>
    2179 
    2180 <span style='mso-bookmark:Draw_Options'></span>
    2181 
    2182 <h5><span style='mso-bookmark:Texture'><a name="Draw_Atoms"><span
    2183 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></a></span></h5>
    2184 
    2185 <h4><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><u>Draw
    2186 Atoms<o:p></o:p></u></span></span></h4>
    2187 
    2188 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-bookmark:
    2189 Draw_Atoms'>This gives a list of the atoms and bonds that are to be rendered as
    2190 lines, van <span class=SpellE>der</span> Waals radii balls, sticks, balls &amp;
    2191 sticks, ellipsoids &amp; sticks or <span class=SpellE>polyhedra</span>. There
    2192 are two menus for this tab; Edit allows modification of the list of atoms to be
    2193 rendered and Compute gives some options for geometric characterization of
    2194 selected atoms.</span></span></p>
    2195 
    2196 <h5><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><span
    2197 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></span></span></h5>
    2198 
    2199 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    2200 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2598phase. It also has the controls for computing Fourier maps for this phase.<o:p></o:p></span></p>
     2599
     2600<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2601
     2602<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l0 level1 lfo11'><![if !supportLists]><span
     2603style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     2604style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2605style='mso-fareast-font-family:"Times New Roman"'>Menu &#8216;<b
     2606style='mso-bidi-font-weight:normal'>Compute&#8217;</b> &#8211; The compute menu
     2607shows computations that are possible for this phase.<o:p></o:p></span></p>
     2608
     2609<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2610auto;text-indent:-.25in;mso-list:l0 level2 lfo11'><![if !supportLists]><span
     2611style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
     2612style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2613style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Fourier
     2614maps</span></b><span style='mso-fareast-font-family:"Times New Roman"'> &#8211;
     2615compute Fourier maps according to the controls set at bottom of General page.<o:p></o:p></span></p>
     2616
     2617<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l0 level1 lfo11'><![if !supportLists]><span
     2618style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
     2619style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2620style='mso-fareast-font-family:"Times New Roman"'>The items in the upper part
     2621of the General page that can be changed are Phase name, Phase type, Space
     2622group, unit cell parameters &amp; refine flag. These are described in turn:<u><o:p></o:p></u></span></p>
     2623
     2624<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2625auto;text-indent:-.25in;mso-list:l0 level2 lfo11'><![if !supportLists]><span
     2626style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
     2627style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2628style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Phase
     2629name</span></b><span style='mso-fareast-font-family:"Times New Roman"'> &#8211;
     2630this is the name assigned to this phase. It should only be changed when the
     2631phase is initialized or imported.<u><o:p></o:p></u></span></p>
     2632
     2633<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2634auto;text-indent:-.25in;mso-list:l0 level2 lfo11'><![if !supportLists]><span
     2635style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
     2636style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2637style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Phase
     2638type &#8211; </span></b><span style='mso-fareast-font-family:"Times New Roman"'>this
     2639can only be set when there are no atoms in the Atoms page for this phase.
     2640Select it when the phase is initialized.<u><o:p></o:p></u></span></p>
     2641
     2642<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2643auto;text-indent:-.25in;mso-list:l0 level2 lfo11'><![if !supportLists]><span
     2644style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
     2645style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2646style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Space
     2647group</span></b><span style='mso-fareast-font-family:"Times New Roman"'>
     2648&#8211; this should be set when the phase is initialized; it can be changed
     2649later. Be careful about the impact on Atom site symmetry and multiplicity if
     2650you do. GSAS-II will recognize any legal space group symbol using the short
     2651Hermann-<span class=SpellE>Mauguin</span> forms; put a space between the axial
     2652fields (e.g. &#8216;F d 3 m&#8217; not &#8216;Fd3m&#8217;). For space groups
     2653with a choice of origin (e.g. F d 3 m), GSAS-II always uses the 2<sup>nd</sup>
     2654setting where the center of inversion is located at the origin. The choice of
     2655space group will set the available unit cell parameters.<u><o:p></o:p></u></span></p>
     2656
     2657<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2658auto;text-indent:-.25in;mso-list:l0 level2 lfo11'><![if !supportLists]><span
     2659style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
     2660style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2661style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Refine
     2662unit cell</span></b><span style='mso-fareast-font-family:"Times New Roman"'>
     2663&#8211; set this flag to refine the unit cell parameters in a Rietveld or
     2664Pawley refinement. The actual parameters refined are the symmetry allowed terms
     2665(A<sub>0</sub>-A<sub>5</sub>) in the expression</span><i style='mso-bidi-font-style:
     2666normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2667"Times New Roman"'><br>
     2668</span></i><!--[if gte msEquation 12]><m:oMathPara><m:oMath><m:sSup><m:sSupPr><span
     2669    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2670    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2671    normal'><m:ctrlPr></m:ctrlPr></span></m:sSupPr><m:e><i style='mso-bidi-font-style:
     2672    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2673    "Times New Roman"'><m:r>d</m:r></span></i></m:e><m:sup><i style='mso-bidi-font-style:
     2674    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2675    "Times New Roman"'><m:r>*2</m:r></span></i></m:sup></m:sSup><i
     2676  style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2677  mso-fareast-font-family:"Times New Roman"'><m:r>=</m:r></span></i><m:sSub><m:sSubPr><span
     2678    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2679    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2680    normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i style='mso-bidi-font-style:
     2681    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2682    "Times New Roman"'><m:r>A</m:r></span></i></m:e><m:sub><i style='mso-bidi-font-style:
     2683    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2684    "Times New Roman"'><m:r>0</m:r></span></i></m:sub></m:sSub><m:sSup><m:sSupPr><span
     2685    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2686    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2687    normal'><m:ctrlPr></m:ctrlPr></span></m:sSupPr><m:e><i style='mso-bidi-font-style:
     2688    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2689    "Times New Roman"'><m:r>h</m:r></span></i></m:e><m:sup><i style='mso-bidi-font-style:
     2690    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2691    "Times New Roman"'><m:r>2</m:r></span></i></m:sup></m:sSup><i
     2692  style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2693  mso-fareast-font-family:"Times New Roman"'><m:r>+</m:r></span></i><m:sSub><m:sSubPr><span
     2694    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2695    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2696    normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i style='mso-bidi-font-style:
     2697    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2698    "Times New Roman"'><m:r>A</m:r></span></i></m:e><m:sub><i style='mso-bidi-font-style:
     2699    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2700    "Times New Roman"'><m:r>1</m:r></span></i></m:sub></m:sSub><m:sSup><m:sSupPr><span
     2701    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2702    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2703    normal'><m:ctrlPr></m:ctrlPr></span></m:sSupPr><m:e><i style='mso-bidi-font-style:
     2704    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2705    "Times New Roman"'><m:r>k</m:r></span></i></m:e><m:sup><i style='mso-bidi-font-style:
     2706    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2707    "Times New Roman"'><m:r>2</m:r></span></i></m:sup></m:sSup><i
     2708  style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2709  mso-fareast-font-family:"Times New Roman"'><m:r>+</m:r></span></i><m:sSub><m:sSubPr><span
     2710    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2711    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2712    normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i style='mso-bidi-font-style:
     2713    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2714    "Times New Roman"'><m:r>A</m:r></span></i></m:e><m:sub><i style='mso-bidi-font-style:
     2715    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2716    "Times New Roman"'><m:r>2</m:r></span></i></m:sub></m:sSub><m:sSup><m:sSupPr><span
     2717    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2718    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2719    normal'><m:ctrlPr></m:ctrlPr></span></m:sSupPr><m:e><i style='mso-bidi-font-style:
     2720    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2721    "Times New Roman"'><m:r>l</m:r></span></i></m:e><m:sup><i style='mso-bidi-font-style:
     2722    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2723    "Times New Roman"'><m:r>2</m:r></span></i></m:sup></m:sSup><i
     2724  style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2725  mso-fareast-font-family:"Times New Roman"'><m:r>+</m:r></span></i><m:sSub><m:sSubPr><span
     2726    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2727    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2728    normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i style='mso-bidi-font-style:
     2729    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2730    "Times New Roman"'><m:r>A</m:r></span></i></m:e><m:sub><i style='mso-bidi-font-style:
     2731    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2732    "Times New Roman"'><m:r>3</m:r></span></i></m:sub></m:sSub><i
     2733  style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2734  mso-fareast-font-family:"Times New Roman"'><m:r>h</m:r><m:r>k</m:r><m:r>+</m:r></span></i><m:sSub><m:sSubPr><span
     2735    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2736    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2737    normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i style='mso-bidi-font-style:
     2738    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2739    "Times New Roman"'><m:r>A</m:r></span></i></m:e><m:sub><i style='mso-bidi-font-style:
     2740    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2741    "Times New Roman"'><m:r>4</m:r></span></i></m:sub></m:sSub><i
     2742  style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2743  mso-fareast-font-family:"Times New Roman"'><m:r>h</m:r><m:r>l</m:r><m:r>+</m:r></span></i><m:sSub><m:sSubPr><span
     2744    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
     2745    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
     2746    normal'><m:ctrlPr></m:ctrlPr></span></m:sSubPr><m:e><i style='mso-bidi-font-style:
     2747    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2748    "Times New Roman"'><m:r>A</m:r></span></i></m:e><m:sub><i style='mso-bidi-font-style:
     2749    normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
     2750    "Times New Roman"'><m:r>5</m:r></span></i></m:sub></m:sSub><i
     2751  style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2752  mso-fareast-font-family:"Times New Roman"'><m:r>kl</m:r></span></i></m:oMath></m:oMathPara><![endif]--><![if !msEquation]><span
     2753style='font-size:12.0pt;font-family:"Times New Roman","serif";mso-fareast-font-family:
     2754"Times New Roman";mso-fareast-theme-font:minor-fareast;mso-ansi-language:EN-US;
     2755mso-fareast-language:EN-US;mso-bidi-language:AR-SA'><!--[if gte vml 1]><v:shape
     2756 id="_x0000_i1025" type="#_x0000_t75" style='width:251.25pt;height:14.25pt'>
     2757 <v:imagedata src="gsasII_files/image003.png" o:title="" chromakey="white"/>
     2758</v:shape><![endif]--><![if !vml]><img width=335 height=19
     2759src="gsasII_files/image004.gif" v:shapes="_x0000_i1025"><![endif]></span><![endif]><u><span
     2760style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></u></p>
     2761
     2762<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2763auto;text-indent:-.25in;mso-list:l0 level2 lfo11'><![if !supportLists]><span
     2764style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
     2765style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2766class=GramE><b style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:
     2767"Times New Roman"'>a</span></b></span><b style='mso-bidi-font-weight:normal'><span
     2768style='mso-fareast-font-family:"Times New Roman"'>, b, c, alpha, beta, gamma</span></b><span
     2769style='mso-fareast-font-family:"Times New Roman"'> &#8211; lattice parameters;
     2770only those permitted by the space group are shown. The volume is computed from
     2771the values entered.<u><o:p></o:p></u></span></p>
     2772
     2773<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l0 level1 lfo11'><![if !supportLists]><span
     2774style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
     2775style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2776style='mso-fareast-font-family:"Times New Roman"'>If there are entries in the
     2777Atoms page then the Elements table is shown next on the General page; you may select
     2778the isotope (only relevant for neutron diffraction experiments). The density is
     2779computed depending on this choice, the unit cell volume and the atom
     2780fractions/site multiplicities in the entries on the Atoms page.<u><o:p></o:p></u></span></p>
     2781
     2782<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l0 level1 lfo11'><![if !supportLists]><span
     2783style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
     2784style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     2785style='mso-fareast-font-family:"Times New Roman"'>Fourier map controls are
     2786shown at the bottom of the General page. A completed Rietveld or Pawley
     2787refinement is required before a Fourier map can be computed. Select the desired
     2788type of map, the source of the reflection set and the map resolution desired.<u><o:p></o:p></u></span></p>
     2789
     2790<h4><a name=Data></a><u><span style='mso-fareast-font-family:"Times New Roman"'>Data
     2791</span></u><span style='mso-fareast-font-family:"Times New Roman"'>sets<u><o:p></o:p></u></span></h4>
     2792
     2793<p class=MsoNormal><o:p>&nbsp;</o:p></p>
     2794
     2795<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?</span><i
     2796style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
     2797mso-fareast-font-family:"Times New Roman"'><br style='mso-special-character:
     2798line-break'>
     2799<![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'>
     2800<![endif]></span></i><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h5>
     2801
     2802<h5><span style='mso-fareast-font-family:"Times New Roman"'><o:p>&nbsp;</o:p></span></h5>
     2803
     2804<h4><a name=Atoms></a><u>Atom</u> Parameter<u>s</u></h4>
     2805
     2806<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2807
     2808<h4><a name=Texture></a><u>Texture</u> Parameters</h4>
     2809
     2810<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2811
     2812<h4><a name="Draw_Options"></a><u>Draw Options</u></h4>
     2813
     2814<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2815
     2816<h4><a name="Draw_Atoms"></a><u>Draw Atoms<o:p></o:p></u></h4>
     2817
     2818<p class=MsoNormal>This gives a list of the atoms and bonds that are to be
     2819rendered as lines, van <span class=SpellE>der</span> Waals radii balls, sticks,
     2820balls &amp; sticks, ellipsoids &amp; sticks or <span class=SpellE>polyhedra</span>.
     2821There are two menus for this tab; Edit allows modification of the list of atoms
     2822to be rendered and Compute gives some options for geometric characterization of
     2823selected atoms.</p>
     2824
     2825<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     2826
     2827<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l6 level1 lfo12'><![if !supportLists]><span
    22012828style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    22022829style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Atom
     
    22072834shown in green on the plot. Selection without the Ctrl key will clear previous
    22082835selections. A double left click in the (empty) upper left box will select or
    2209 deselect all atoms.</span></span></p>
    2210 
    2211 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    2212 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2836deselect all atoms.</p>
     2837
     2838<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo12'><![if !supportLists]><span
    22132839style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    22142840style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Atom
     
    22212847normal'>NB</b>: beware of atoms that are hiding behind the one you are trying
    22222848to select, they may be selected inadvertently. You can rotate the structure
    2223 anytime during the selection process.</span></span></p>
    2224 
    2225 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    2226 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2849anytime during the selection process.</p>
     2850
     2851<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo12'><![if !supportLists]><span
    22272852style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
    22282853style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Double
     
    22302855allows you to select all atoms with that characteristic. For example, selecting
    22312856the Type column will show all the atom types; your choice will then cause all
    2232 those atoms to be selected.</span></span></p>
    2233 
    2234 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    2235 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2857those atoms to be selected.</p>
     2858
     2859<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo12'><![if !supportLists]><span
    22362860style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
    22372861style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Double
     
    22432867style='mso-bidi-font-weight:normal'>NB</b>: selecting Color will make all atoms
    22442868have the same color and for Style &#8220;blank&#8221; means the atoms
    2245 aren&#8217;t rendered and thus the plot will not show any atoms or bonds!</span></span></p>
    2246 
    2247 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    2248 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2869aren&#8217;t rendered and thus the plot will not show any atoms or bonds!</p>
     2870
     2871<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo12'><![if !supportLists]><span
    22492872style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
    22502873style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
    22512874&#8216;<b style='mso-bidi-font-weight:normal'>Edit&#8217; - </b>The edit menu
    22522875shows operations that can be performed on your selected atoms. You must select
    2253 one or more atoms before using any of the menu items.</span></span></p>
    2254 
    2255 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2256 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2257 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2876one or more atoms before using any of the menu items.</p>
     2877
     2878<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2879auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    22582880style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    22592881style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    22602882style='mso-bidi-font-weight:normal'>Atom style</b> &#8211; select the rendering
    2261 style for the selected atoms</span></span></p>
    2262 
    2263 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2264 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2265 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2883style for the selected atoms</p>
     2884
     2885<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2886auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    22662887style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    22672888style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    2268 style='mso-bidi-font-weight:normal'>Atom label</b> &#8211; select the item to be
    2269 shown as a label for each atom in selection. The choices are: none, type, name
    2270 or number.</span></span></p>
    2271 
    2272 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2273 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2274 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2889style='mso-bidi-font-weight:normal'>Atom label</b> &#8211; select the item to
     2890be shown as a label for each atom in selection. The choices are: none, type,
     2891name or number.</p>
     2892
     2893<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2894auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    22752895style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    22762896style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    22792899spectrum. Choose a color by any of the means available, press the &#8220;Add to
    22802900Custom Colors&#8221;, select that color in the Custom colors display and then
    2281 press OK.</span></span></p>
    2282 
    2283 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2284 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2285 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2901press OK.</p>
     2902
     2903<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2904auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    22862905style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    22872906style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    22882907style='mso-bidi-font-weight:normal'>Reset atom colors</b> &#8211; return the
    2289 atom color back to their defaults for the selected atoms.</span></span></p>
    2290 
    2291 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2292 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2293 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2908atom color back to their defaults for the selected atoms.</p>
     2909
     2910<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2911auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    22942912style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
    22952913style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    22962914style='mso-bidi-font-weight:normal'>View point</b> &#8211; position the plot
    2297 view point to the first atom in the selection.</span></span></p>
    2298 
    2299 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2300 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2301 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2915view point to the first atom in the selection.</p>
     2916
     2917<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2918auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    23022919style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>f.<span
    23032920style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    23062923of symmetry operator and unit cell translation selected via a dialog display.
    23072924Duplicate atom positions are not retained. Any anisotropic thermal displacement
    2308 parameters (<span class=SpellE>Uij</span>) will be transformed as appropriate.</span></span></p>
    2309 
    2310 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2311 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2312 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2925parameters (<span class=SpellE>Uij</span>) will be transformed as appropriate.</p>
     2926
     2927<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2928auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    23132929style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>g.<span
    23142930style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    23152931style='mso-bidi-font-weight:normal'>Transform atoms</b> &#8211; apply a
    2316 symmetry operator and unit cell translation to the set of selected atoms; they will
    2317 be changed in place. Any anisotropic thermal displacement parameters (<span
    2318 class=SpellE>Uij</span>) will be transformed as appropriate.</span></span></p>
    2319 
    2320 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2321 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2322 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2932symmetry operator and unit cell translation to the set of selected atoms; they
     2933will be changed in place. Any anisotropic thermal displacement parameters (<span
     2934class=SpellE>Uij</span>) will be transformed as appropriate.</p>
     2935
     2936<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2937auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    23232938style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>h.<span
    23242939style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    23262941currently in the draw atom table, find all atoms that belong in the
    23272942coordination sphere around the selected atoms via unit cell translations. NB:
    2328 symmetry operations are not used in this search.</span></span></p>
    2329 
    2330 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2331 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2332 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2943symmetry operations are not used in this search.</p>
     2944
     2945<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2946auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    23332947style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>i.<span
    23342948style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    23362950cell</b> - using the atoms currently selected from the draw atom table, find
    23372951all atoms that fall inside or on the edge/surface/corners of the unit cell.
    2338 This operation is frequently performed before Fill CN-sphere.</span></span></p>
    2339 
    2340 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2341 auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    2342 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2952This operation is frequently performed before Fill CN-sphere.</p>
     2953
     2954<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2955auto;text-indent:-.25in;mso-list:l10 level1 lfo13'><![if !supportLists]><span
    23432956style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>j.<span
    23442957style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    23462959atoms</b> &#8211; clear the entire draw atom table; it is then refilled from
    23472960the Atoms table. You should do this operation after any changes in the Atoms
    2348 table, e.g. by a structure refinement.</span></span></p>
    2349 
    2350 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    2351 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2961table, e.g. by a structure refinement.</p>
     2962
     2963<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo12'><![if !supportLists]><span
    23522964style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
    23532965style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
    23542966&#8216;<b style='mso-bidi-font-weight:normal'>Compute&#8217;</b> - The compute
    23552967menu gives a choice of geometric calculations to be performed with the selected
    2356 atoms. You must select the appropriate number of atoms for these to work and the
    2357 computation is done for the atoms in selection order.</span></span></p>
    2358 
    2359 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2360 auto;text-indent:-.25in;mso-list:l11 level1 lfo7'><span style='mso-bookmark:
    2361 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2968atoms. You must select the appropriate number of atoms for these to work and
     2969the computation is done for the atoms in selection order.</p>
     2970
     2971<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2972auto;text-indent:-.25in;mso-list:l9 level1 lfo14'><![if !supportLists]><span
    23622973style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    23632974style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    23642975style='mso-bidi-font-weight:normal'>Dist. Ang.</b> <span class=SpellE><b
    23652976style='mso-bidi-font-weight:normal'>Tors</b></span><b style='mso-bidi-font-weight:
    2366 normal'>. </b>&#8211; <span class=GramE>when</span> 2-4 atoms are selected, a distance,
    2367 angle or torsion angle will be found for them. The angles are computed for the
    2368 atoms in their selection order. The torsion angle is a right hand angle about
    2369 the A2-A3 vector for the sequence of atoms A1-A2-A3-A4. An estimated standard
    2370 deviation is given for the calculated value if a current variance-covariance
    2371 matrix is available. The result is shown on the console window; it may be cut
    2372 &amp; pasted to another application (e.g. Microsoft Word).</span></span></p>
     2977normal'>. </b>&#8211; <span class=GramE>when</span> 2-4 atoms are selected, a
     2978distance, angle or torsion angle will be found for them. The angles are
     2979computed for the atoms in their selection order. The torsion angle is a right
     2980hand angle about the A2-A3 vector for the sequence of atoms A1-A2-A3-A4. An
     2981estimated standard deviation is given for the calculated value if a current
     2982variance-covariance matrix is available. The result is shown on the console
     2983window; it may be cut &amp; pasted to another application (e.g. Microsoft
     2984Word).</p>
    23732985
    23742986<p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto;
    2375 text-indent:-.25in;mso-list:l11 level1 lfo7'><span style='mso-bookmark:Texture'><span
    2376 style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span style='mso-fareast-font-family:
    2377 "Times New Roman"'><span style='mso-list:Ignore'>b.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2378 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Best
    2379 plane</b> &#8211; when 4 or more atoms are selected, a best plane is determined
    2380 for them. The result is shown on the console window; it may be cut &amp; pasted
    2381 to another application (e.g. Microsoft Word). Shown are the atom coordinates
    2382 transformed to Cartesian best plane coordinates where the largest range is over
    2383 the X-axis and the smallest is over the Z-axis with the origin at the <span
    2384 class=SpellE>unweighted</span> center of the selection. Root mean square
    2385 displacements along each axis for the best plane are also listed. The Z-axis
    2386 RMS value indicates the flatness of the proposed plane. <b style='mso-bidi-font-weight:
    2387 normal'>NB</b>: if you select (e.g. all) atoms then Best plane will give
    2388 Cartesian coordinates for these atoms with respect to a coordinate system where
    2389 the X-axis is along the longest axis of the atom grouping and the Z-axis is
    2390 along the shortest distance. The origin is at the <span class=SpellE>unweighted</span>
    2391 center of the selected atoms.</span></span></p>
    2392 
    2393 <h4><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><a
    2394 name=Pawley><u>Pawley </u></a><u>reflections<o:p></o:p></u></span></span></h4>
    2395 
    2396 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-bookmark:
    2397 Draw_Atoms'>This gives the list of reflections used in a Pawley refinement and
    2398 can only be seen if the phase type is &#8216;Pawley&#8217; (see<span
    2399 style='color:#00B0F0'> </span></span></span><a href="#General"><span
    2400 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'>General</span></span><span
    2401 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'></span></span></a><span
    2402 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'>)<span
    2403 style='color:#00B0F0'>.</span></span></span></p>
    2404 
    2405 <h5><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'>What
    2406 can I do here?</span></span></h5>
    2407 
    2408 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l5 level1 lfo20'><span
    2409 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2987text-indent:-.25in;mso-list:l9 level1 lfo14'><![if !supportLists]><span
     2988style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
     2989style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2990style='mso-bidi-font-weight:normal'>Best plane</b> &#8211; when 4 or more atoms
     2991are selected, a best plane is determined for them. The result is shown on the
     2992console window; it may be cut &amp; pasted to another application (e.g.
     2993Microsoft Word). Shown are the atom coordinates transformed to Cartesian best
     2994plane coordinates where the largest range is over the X-axis and the smallest
     2995is over the Z-axis with the origin at the <span class=SpellE>unweighted</span>
     2996center of the selection. Root mean square displacements along each axis for the
     2997best plane are also listed. The Z-axis RMS value indicates the flatness of the
     2998proposed plane. <b style='mso-bidi-font-weight:normal'>NB</b>: if you select
     2999(e.g. all) atoms then Best plane will give Cartesian coordinates for these
     3000atoms with respect to a coordinate system where the X-axis is along the longest
     3001axis of the atom grouping and the Z-axis is along the shortest distance. The
     3002origin is at the <span class=SpellE>unweighted</span> center of the selected
     3003atoms.</p>
     3004
     3005<h4><a name=Pawley><u>Pawley </u></a><u>reflections<o:p></o:p></u></h4>
     3006
     3007<p class=MsoNormal>This gives the list of reflections used in a Pawley
     3008refinement and can only be seen if the phase type is &#8216;Pawley&#8217; (see<span
     3009style='color:#00B0F0'> </span><a href="#General">General</a>)<span
     3010style='color:#00B0F0'>.</span></p>
     3011
     3012<h5>What can I do here?</h5>
     3013
     3014<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l3 level1 lfo15'><![if !supportLists]><span
    24103015style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    24113016style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
    2412 <b style='mso-bidi-font-weight:normal'>&#8216;Operations&#8217;</b> &#8211;</span></span></p>
    2413 
    2414 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2415 auto;text-indent:-.25in;mso-list:l10 level2 lfo19'><span style='mso-bookmark:
    2416 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     3017<b style='mso-bidi-font-weight:normal'>&#8216;Operations&#8217;</b> &#8211;</p>
     3018
     3019<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     3020auto;text-indent:-.25in;mso-list:l8 level2 lfo16'><![if !supportLists]><span
    24173021style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    24183022style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    24203024new set of Pawley reflections, over writing any preexisting Pawley set. They
    24213025are generated with d-<span class=SpellE>spacings</span> larger than the limit
    2422 set as &#8216;Pawley <span class=SpellE>dmin</span>&#8217; in the General tab
    2423 for this phase. By default the refine flags are not set and the <span
    2424 class=SpellE><span class=GramE>Fsq</span></span><span class=GramE>(</span><span
    2425 class=SpellE>hkl</span>) = 100.0.</span></span></p>
    2426 
    2427 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2428 auto;text-indent:-.25in;mso-list:l10 level2 lfo19'><span style='mso-bookmark:
    2429 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     3026set as &#8216;Pawley <span class=SpellE>dmin</span>&#8217; in the General tab for
     3027this phase. By default the refine flags are not set and the <span class=SpellE><span
     3028class=GramE>Fsq</span></span><span class=GramE>(</span><span class=SpellE>hkl</span>)
     3029= 100.0.</p>
     3030
     3031<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     3032auto;text-indent:-.25in;mso-list:l8 level2 lfo16'><![if !supportLists]><span
    24303033style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    24313034style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    24343037class=GramE>(</span><span class=SpellE>hkl</span>) from the peak heights of the
    24353038reflection as seen in the 1<sup>st</sup> powder pattern of those selected in
    2436 the </span></span><a href="#Data"><span style='mso-bookmark:Texture'><span
    2437 style='mso-bookmark:Draw_Atoms'>Data</span></span><span style='mso-bookmark:
    2438 Texture'><span style='mso-bookmark:Draw_Atoms'></span></span></a><span
    2439 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'> tab.</span></span></p>
    2440 
    2441 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2442 auto;text-indent:-.25in;mso-list:l10 level2 lfo19'><span style='mso-bookmark:
    2443 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     3039the <a href="#Data">Data</a> tab.</p>
     3040
     3041<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     3042auto;text-indent:-.25in;mso-list:l8 level2 lfo16'><![if !supportLists]><span
    24443043style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    24453044style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    24463045style='mso-bidi-font-weight:normal'>Pawley delete </b>&#8211; this clears the
    2447 set of Pawley reflections.</span></span></p>
    2448 
    2449 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo20'><span
    2450 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     3046set of Pawley reflections.</p>
     3047
     3048<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l3 level1 lfo15'><![if !supportLists]><span
    24513049style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    24523050style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>You
     
    24563054You should deselect those reflections that fall below the lower limit or above
    24573055the upper limit of the powder pattern otherwise you may have a singular matrix
    2458 error in your Pawley refinement.</span></span></p>
    2459 
    2460 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l5 level1 lfo20'><span
    2461 style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     3056error in your Pawley refinement.</p>
     3057
     3058<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l3 level1 lfo15'><![if !supportLists]><span
    24623059style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
    24633060style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>You
     
    24653062class=GramE>(</span><span class=SpellE>hkl</span>) values by selecting it,
    24663063typing in the new value and then pressing enter or selecting somewhere else in
    2467 the table.</span></span></p>
    2468 
    2469 <span style='mso-bookmark:Draw_Atoms'></span>
    2470 
    2471 <h3><span style='mso-bookmark:Texture'>Histograms</span></h3>
    2472 
    2473 <p class=MsoNormal><span style='mso-bookmark:Texture'>These are shown in the
    2474 data tree with a prefix of &#8216;PWDR&#8217;, &#8217;HKLF&#8217;, &#8216;IMG&#8217;,
    2475 &#8216;PDF&#8217; or &#8216;XXXX&#8217; (future &#8211; restraints??) and usually
    2476 a file name. These constitute the data sets (&#8216;Histograms&#8217;) to be
    2477 used by GSAS-II for analysis. Selection of these items does not produce any
    2478 information in the data window but does display the data in the Plots Window.
    2479 They are described below.</span></p>
    2480 
    2481 <h3><span style='mso-bookmark:Texture'>Powder Histograms - PWDR</span></h3>
    2482 
    2483 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2484 "Times New Roman"'>When a powder diffraction data set (prefix &#8216;PWDR&#8217;)
    2485 is selected from the </span></span><a href="#Data_tree"><span style='mso-bookmark:
    2486 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>data tree</span></span><span
    2487 style='mso-bookmark:Texture'></span></a><span style='mso-bookmark:Texture'><span
    2488 style='mso-fareast-font-family:"Times New Roman"'>, a variety of subcategories
    2489 in the tree are shown. The items that are shown depend on the data set type.
    2490 Selecting a subcategory raises the window listed below. <o:p></o:p></span></span></p>
    2491 
    2492 <h4><span style='mso-bookmark:Texture'><a name=Comments></a><a name=""></a><span
    2493 style='mso-bookmark:Comments'><u>Comments<o:p></o:p></u></span></span></h4>
    2494 
    2495 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-bookmark:
    2496 Comments'>This window shows whatever comment lines (preceded by &#8220;#&#8221;)
    2497 found when the powder data file was read by GSAS-II. If you are lucky, there
    2498 will be useful information here (e.g. sample name, date collected, wavelength
    2499 used, etc.). If not, this window will be blank. The text is read-only in that
    2500 anything you try to enter here is not saved.</span></span></p>
    2501 
    2502 <span style='mso-bookmark:Comments'></span>
    2503 
    2504 <h4><span style='mso-bookmark:Texture'><a name=Limits><u><span
    2505 style='mso-fareast-font-family:"Times New Roman"'>Limits</span></u></a></span><span
    2506 style='mso-bookmark:Texture'><u><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></u></span></h4>
    2507 
    2508 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2509 "Times New Roman"'>This window shows the limits in position to be used in any
    2510 fitting for this powder pattern. The &#8216;original&#8217; values are obtained
    2511 from the minimum &amp; maximum values in the powder pattern. You can modify
    2512 &#8216;changed&#8217; as needed.<o:p></o:p></span></span></p>
    2513 
    2514 <h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2515 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    2516 
    2517 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l19 level1 lfo8'><span
    2518 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2519 "Times New Roman"'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2520 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2521 can change <span class=SpellE>Tmin</span> and <span class=SpellE>Tmax</span> in
    2522 the &#8216;changed&#8217; row as needed. Use the mouse to select the value to
    2523 be changed (the background on the box will be blue or have a black border or a
    2524 vertical bar will appear in the value), then enter the new value and press
    2525 Enter or click the mouse elsewhere in the Background window. This will set the
    2526 new value.<o:p></o:p></span></span></p>
    2527 
    2528 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l19 level1 lfo8'><span
    2529 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2530 "Times New Roman"'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2531 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Modify
    2532 the values of &#8216;changed&#8217;; this can be done on the plot by dragging
    2533 the limit bars (left &#8211; vertical green dashed line, right &#8211; vertical
    2534 red dashed line) into position. A left or right mouse click on a data point on
    2535 the plot will set the associated limit. In either case the appropriate value on
    2536 the &#8216;changed&#8217; row will be updated immediately.<o:p></o:p></span></span></p>
    2537 
    2538 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l19 level1 lfo8'><span
    2539 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2540 "Times New Roman"'><span style='mso-list:Ignore'>3.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2541 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Menu
    2542 &#8216;<b style='mso-bidi-font-weight:normal'>File</b>&#8217; &#8211; <o:p></o:p></span></span></p>
    2543 
    2544 <p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto;
    2545 text-indent:-.25in;mso-list:l17 level1 lfo9'><span style='mso-bookmark:Texture'><![if !supportLists]><span
    2546 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    2547 style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    2548 style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span><span
    2549 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
    2550 &#8211; this copies the limits shown to other selected powder patterns. If
    2551 used, a dialog box (Copy Parameters) will appear showing the list of available
    2552 powder patterns, you can copy the limits parameters to any or all of them;
    2553 select &#8216;All&#8217; to copy them to all patterns. Then select
    2554 &#8216;OK&#8217; to do the copy; &#8216;Cancel&#8217; to cancel the operation.<o:p></o:p></span></span></p>
    2555 
    2556 <h4><span style='mso-bookmark:Texture'><a name=Background><u><span
    2557 style='mso-fareast-font-family:"Times New Roman"'>Background<o:p></o:p></span></u></a></span></h4>
    2558 
    2559 <span style='mso-bookmark:Background'></span>
    2560 
    2561 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2562 "Times New Roman"'>This window shows the choice of background functions and
    2563 coefficients to be used in fitting this powder pattern. There are three types
    2564 of contributions available for the background:<o:p></o:p></span></span></p>
    2565 
    2566 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2567 "Times New Roman"'>1). A continuous empirical function (&#8216;<span
    2568 class=SpellE>chebyschev</span>&#8217;, &#8216;cosine&#8217;, &#8216;<span
    2569 class=SpellE><span class=GramE>lin</span></span> interpolate&#8217;, &#8216;inv
    2570 interpolate&#8217; &amp; &#8216;log interpolate&#8217;). The latter three select
    2571 fixed points with spacing that is <span class=GramE>either equal</span>,
    2572 inversely equal or equal on a log scale of the x-coordinate. The set of magnitudes
    2573 at each point then comprise the background variables. All are refined when refine
    2574 is selected.<o:p></o:p></span></span></p>
    2575 
    2576 <p class=MsoNormal style='tab-stops:0in'><span style='mso-bookmark:Texture'><span
    2577 style='mso-fareast-font-family:"Times New Roman"'>2). A set of Debye diffuse scattering
    2578 equation terms of the form:<br>
    2579 </span></span><span style='mso-bookmark:Texture'></span><!--[if gte msEquation 12]><m:oMath><span
    2580  style='mso-bookmark:Texture'><m:r><i style='mso-bidi-font-style:normal'><span
    2581   style='font-family:"Cambria Math","serif";mso-fareast-font-family:"Times New Roman"'><span
    2582   style='mso-tab-count:2'> </span></span></i></m:r><m:r><i style='mso-bidi-font-style:
    2583   normal'><span style='font-family:"Cambria Math","serif";mso-fareast-font-family:
    2584   "Times New Roman"'>B</span></i></m:r><m:r><i style='mso-bidi-font-style:normal'><span
    2585   style='font-family:"Cambria Math","serif";mso-fareast-font-family:"Times New Roman"'>=</span></i></m:r><m:r><i
    2586   style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
    2587   mso-fareast-font-family:"Times New Roman"'>A</span></i></m:r></span><m:d><m:dPr><span
    2588    style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
    2589    mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:"Cambria Math";
    2590    font-style:italic;mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:dPr><m:e><span
    2591    style='mso-bookmark:Texture'></span><m:f><m:fPr><m:type m:val="skw"/><span
    2592      style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
    2593      mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:"Cambria Math";
    2594      font-style:italic;mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:fPr><m:num><span
    2595      style='mso-bookmark:Texture'><m:r><i style='mso-bidi-font-style:normal'><span
    2596       style='font-family:"Cambria Math","serif";mso-fareast-font-family:"Times New Roman"'>sinQR</span></i></m:r></span></m:num><m:den><span
    2597      style='mso-bookmark:Texture'><m:r><i style='mso-bidi-font-style:normal'><span
    2598       style='font-family:"Cambria Math","serif";mso-fareast-font-family:"Times New Roman"'>QR</span></i></m:r></span></m:den></m:f><span
    2599    style='mso-bookmark:Texture'></span></m:e></m:d><span style='mso-bookmark:
    2600  Texture'></span><m:sSup><m:sSupPr><span style='font-family:"Cambria Math","serif";
    2601    mso-ascii-font-family:"Cambria Math";mso-fareast-font-family:"Times New Roman";
    2602    mso-hansi-font-family:"Cambria Math";font-style:italic;mso-bidi-font-style:
    2603    normal'><m:ctrlPr></m:ctrlPr></span></m:sSupPr><m:e><span style='mso-bookmark:
    2604    Texture'><m:r><i style='mso-bidi-font-style:normal'><span style='font-family:
    2605     "Cambria Math","serif";mso-fareast-font-family:"Times New Roman"'>e</span></i></m:r></span></m:e><m:sup><span
    2606    style='mso-bookmark:Texture'><m:r><i style='mso-bidi-font-style:normal'><span
    2607     style='font-family:"Cambria Math","serif";mso-fareast-font-family:"Times New Roman"'>-</span></i></m:r><m:r><i
    2608     style='mso-bidi-font-style:normal'><span style='font-family:"Cambria Math","serif";
    2609     mso-fareast-font-family:"Times New Roman"'>U</span></i></m:r></span><m:sSup><m:sSupPr><span
    2610      style='font-family:"Cambria Math","serif";mso-ascii-font-family:"Cambria Math";
    2611      mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:"Cambria Math";
    2612      font-style:italic;mso-bidi-font-style:normal'><m:ctrlPr></m:ctrlPr></span></m:sSupPr><m:e><span
    2613      style='mso-bookmark:Texture'><m:r><i style='mso-bidi-font-style:normal'><span
    2614       style='font-family:"Cambria Math","serif";mso-fareast-font-family:"Times New Roman"'>Q</span></i></m:r></span></m:e><m:sup><span
    2615      style='mso-bookmark:Texture'><m:r><i style='mso-bidi-font-style:normal'><span
    2616       style='font-family:"Cambria Math","serif";mso-fareast-font-family:"Times New Roman"'>2</span></i></m:r></span></m:sup></m:sSup><span
    2617    style='mso-bookmark:Texture'></span></m:sup></m:sSup></m:oMath><![endif]--><![if !msEquation]><span
    2618 style='font-size:12.0pt;font-family:"Times New Roman","serif";mso-fareast-font-family:
    2619 "Times New Roman";mso-fareast-theme-font:minor-fareast;position:relative;
    2620 top:16.0pt;mso-text-raise:-16.0pt;mso-ansi-language:EN-US;mso-fareast-language:
    2621 EN-US;mso-bidi-language:AR-SA'><!--[if gte vml 1]><v:shape id="_x0000_i1025"
    2622  type="#_x0000_t75" style='width:133.5pt;height:38.25pt'>
    2623  <v:imagedata src="gsasII_files/image001.png" o:title="" chromakey="white"/>
    2624 </v:shape><![endif]--><![if !vml]><img width=178 height=51
    2625 src="gsasII_files/image003.gif" v:shapes="_x0000_i1025"><![endif]></span><![endif]><span
    2626 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><span
    2627 style='mso-tab-count:1'>&nbsp;&nbsp;&nbsp;&nbsp; </span><o:p></o:p></span></span></p>
    2628 
    2629 <p class=MsoNormal><span style='mso-bookmark:Texture'><span class=GramE><span
    2630 style='mso-fareast-font-family:"Times New Roman"'>where</span></span></span><span
    2631 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
    2632 A,R &amp; U are the possible variables and can be individually selected as desired;
    2633 Q = 2</span></span><span style='mso-bookmark:Texture'><span style='font-family:
    2634 Symbol;mso-fareast-font-family:"Times New Roman"'>p</span></span><span
    2635 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>/d.<o:p></o:p></span></span></p>
    2636 
    2637 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2638 "Times New Roman"'>3). A set of individual Bragg peaks using the pseudo-Voigt
    2639 profile function as their shapes. Their parameters are &#8216;pos&#8217;, &#8217;<span
    2640 class=SpellE>int</span>&#8217;, &#8216;sig&#8217; &amp; &#8216;<span
    2641 class=SpellE>gam</span>&#8217;; each can be selected for refinement. The
    2642 default values for sig &amp; <span class=SpellE>gam</span> (=0.10) are for very
    2643 sharp peaks, you may adjust them accordingly to the kind of peak you are trying
    2644 to fit before trying to refine them.<o:p></o:p></span></span></p>
    2645 
    2646 <h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2647 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    2648 
    2649 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    2650 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2651 "Times New Roman"'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2652 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Menu
    2653 &#8216;<b style='mso-bidi-font-weight:normal'>File</b>&#8217; &#8211; <o:p></o:p></span></span></p>
    2654 
    2655 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2656 auto;text-indent:-.25in;mso-list:l2 level1 lfo18'><span style='mso-bookmark:
    2657 Texture'><![if !supportLists]><span style='mso-fareast-font-family:"Times New Roman"'><span
    2658 style='mso-list:Ignore'>a.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2659 </span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
    2660 style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span><span
    2661 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
    2662 &#8211; this copies the background parameters shown to other selected powder patterns.
    2663 If used, a dialog box (Copy Parameters) will appear showing the list of
    2664 available powder patterns, you can copy the background parameters to any or all
    2665 of them; select &#8216;All&#8217; to copy them to all patterns. Then select
    2666 &#8216;OK&#8217; to do the copy; &#8216;Cancel&#8217; to cancel the operation.<o:p></o:p></span></span></p>
    2667 
    2668 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    2669 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2670 "Times New Roman"'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2671 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2672 can select a different Background function from the pull down tab.<o:p></o:p></span></span></p>
    2673 
    2674 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    2675 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2676 "Times New Roman"'><span style='mso-list:Ignore'>3.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2677 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2678 can choose to refine/not refine the background coefficients.<o:p></o:p></span></span></p>
    2679 
    2680 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    2681 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2682 "Times New Roman"'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2683 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2684 can select the number of background coefficients to be used (1-36).<o:p></o:p></span></span></p>
    2685 
    2686 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    2687 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2688 "Times New Roman"'><span style='mso-list:Ignore'>5.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2689 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2690 can change individual background coefficient values. Enter the value then press
    2691 Enter or click the mouse elsewhere in the Background window. This will set the
    2692 new value.<o:p></o:p></span></span></p>
    2693 
    2694 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    2695 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2696 "Times New Roman"'><span style='mso-list:Ignore'>6.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2697 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2698 can introduce one or more Debye scattering terms into the background. For each
    2699 one you should enter a sensible value for &#8216;R&#8217; &#8211; an expected <span
    2700 class=SpellE>interatomic</span> distance in an amorphous phase is appropriate.
    2701 Select parameters to refine; usually start with the &#8216;A&#8217;
    2702 coefficients.<o:p></o:p></span></span></p>
    2703 
    2704 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    2705 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2706 "Times New Roman"'><span style='mso-list:Ignore'>7.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2707 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2708 can introduce single Bragg peaks into the background. For each you should
    2709 specify at least the position. Select parameters to refine; usually start with
    2710 the &#8216;<span class=SpellE>int</span>&#8217; coefficients.<o:p></o:p></span></span></p>
    2711 
    2712 <h4><span style='mso-bookmark:Texture'><a name="Instrument_Parameters"><u><span
    2713 style='mso-fareast-font-family:"Times New Roman"'>Instrument Parameters</span></u></a></span><span
    2714 style='mso-bookmark:Texture'><u><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></u></span></h4>
    2715 
    2716 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2717 "Times New Roman"'>This window shows the instrument parameters for the selected
    2718 powder data set. <o:p></o:p></span></span></p>
    2719 
    2720 <h5><span style='mso-bookmark:Texture'><a name="Sample_Parameters"><span
    2721 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></a></span></h5>
    2722 
    2723 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span
    2724 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
     3064the table.</p>
     3065
     3066<div class=MsoNormal align=center style='text-align:center'><span
     3067style='mso-fareast-font-family:"Times New Roman"'>
     3068
     3069<hr size=2 width="100%" align=center>
     3070
     3071</span></div>
     3072
     3073<div class=MsoNormal align=center style='text-align:center'><span
     3074style='mso-fareast-font-family:"Times New Roman"'>
     3075
     3076<hr size=2 width="100%" align=center>
     3077
     3078</span></div>
     3079
     3080<h2><a name=Plots><span style='mso-fareast-font-family:"Times New Roman"'>3.
     3081GSAS-II Plots Window</span></a><span style='mso-bookmark:Plots'></span><span
     3082style='mso-fareast-font-family:"Times New Roman";font-weight:normal'> </span><span
     3083style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h2>
     3084
     3085<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     3086window presents all the graphical material as a multipage tabbed set of plots
     3087utilizing the <span class=SpellE>matplotlib</span> python package. Each page
     3088has a tool bar (at bottom in Windows) with the controls<o:p></o:p></span></p>
     3089
     3090<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman";
     3091mso-no-proof:yes'><img border=0 width=225 height=31 id="_x0000_i1032"
     3092src=graphbar.jpg></span><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></p>
     3093
     3094<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>These
     3095are Home, Back, Forward, Pan, Zoom, Save and Help, respectively. <o:p></o:p></span></p>
     3096
     3097<ul type=disc>
     3098 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     3099     mso-list:l1 level1 lfo17;tab-stops:list .5in'><span style='mso-fareast-font-family:
     3100     "Times New Roman"'>Home: returns the plot to the initial scaling <o:p></o:p></span></li>
     3101 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     3102     mso-list:l1 level1 lfo17;tab-stops:list .5in'><span style='mso-fareast-font-family:
     3103     "Times New Roman"'>Back: returns the plot to the previous scaling <o:p></o:p></span></li>
     3104 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     3105     mso-list:l1 level1 lfo17;tab-stops:list .5in'><span style='mso-fareast-font-family:
     3106     "Times New Roman"'>Forward: reverses the action in the previous press(es)
     3107     of the Back button <o:p></o:p></span></li>
     3108 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     3109     mso-list:l1 level1 lfo17;tab-stops:list .5in'><span style='mso-fareast-font-family:
     3110     "Times New Roman"'>Pan: allows you to control panning across the plot
     3111     (press left mouse button) and zooming (press right mouse button), <o:p></o:p></span></li>
     3112 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     3113     mso-list:l1 level1 lfo17;tab-stops:list .5in'><span style='mso-fareast-font-family:
     3114     "Times New Roman"'>Zoom: allows you to select a portion of the plot (press
     3115     right mouse button &amp; drag for zoom box) for the next plot. <o:p></o:p></span></li>
     3116 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     3117     mso-list:l1 level1 lfo17;tab-stops:list .5in'><span style='mso-fareast-font-family:
     3118     "Times New Roman"'>Save: allows you to save the currently displayed plot
     3119     in one of several graphical formats suitable for printing or insertion in
     3120     a document.<o:p></o:p></span></li>
     3121 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     3122     mso-list:l1 level1 lfo17;tab-stops:list .5in'><span style='mso-fareast-font-family:
     3123     "Times New Roman"'>Help: accesses GSASII help on the specific plot type. <o:p></o:p></span></li>
     3124</ul>
     3125
     3126<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'><o:p>&nbsp;</o:p></span></p>
     3127
     3128<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>Below
     3129the toolbar may be a status bar that on the left may show either an instruction
     3130for a keyed input or a pull down selection of keyed input; on the right may be
     3131displayed position dependent information that is updated as the mouse is moved
     3132over the plot region.<o:p></o:p></span></p>
     3133
     3134<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'><o:p>&nbsp;</o:p></span></p>
     3135
     3136<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>The
     3137specific types of plots that are pages in the GSASII Plots windows are next.<o:p></o:p></span></p>
     3138
     3139<h4><a name="Powder_Patterns"><span style='mso-fareast-font-family:"Times New Roman"'>Powder
     3140Patterns</span></a><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h4>
     3141
     3142<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>The
     3143powder patterns that are part of your project are shown on this page. They can
     3144be displayed as a stack of powder patterns, just a single pattern or as a
     3145contour image of the peak intensities. What can be done here will depend on
     3146which is displayed and on which item in the GSAS-II data tree you have
     3147selected.<o:p></o:p></span></p>
     3148
     3149<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     3150
     3151<p class=MsoListParagraph style='text-indent:-.25in;mso-list:l18 level1 lfo18'><![if !supportLists]><span
    27253152style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    27263153style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
    2727 style='mso-fareast-font-family:"Times New Roman"'>Menu &#8216;<b
    2728 style='mso-bidi-font-weight:normal'>Operations</b>&#8217; &#8211; <o:p></o:p></span></span></span></p>
    2729 
    2730 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2731 auto;text-indent:-.25in;mso-list:l15 level1 lfo11'><span style='mso-bookmark:
    2732 Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    2733 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    2734 style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    2735 style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Reset
    2736 profile </span></b></span></span><span style='mso-bookmark:Texture'><span
    2737 style='mso-bookmark:Sample_Parameters'><span style='mso-fareast-font-family:
    2738 "Times New Roman"'>&#8211; resets the values for the instrument parameters to
    2739 the default values shown in parentheses for each entry.<o:p></o:p></span></span></span></p>
    2740 
    2741 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2742 auto;text-indent:-.25in;mso-list:l15 level1 lfo11'><span style='mso-bookmark:
    2743 Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    2744 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    2745 style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    2746 style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span></span><span
    2747 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span
    2748 style='mso-fareast-font-family:"Times New Roman"'> &#8211; this copies the
    2749 instrument parameters shown to other selected powder patterns. If used, a
    2750 dialog box (Copy Parameters) will appear showing the list of available powder
    2751 patterns, you can copy the instrument parameters to any or all of them; select
    2752 &#8216;All&#8217; to copy them to all patterns. Then select &#8216;OK&#8217; to
    2753 do the copy; &#8216;Cancel&#8217; to cancel the operation.<o:p></o:p></span></span></span></p>
    2754 
    2755 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2756 auto;text-indent:-.25in;mso-list:l15 level1 lfo11'><span style='mso-bookmark:
    2757 Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    2758 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    2759 style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    2760 style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Change
    2761 radiation</span></b></span></span><span style='mso-bookmark:Texture'><span
    2762 style='mso-bookmark:Sample_Parameters'><span style='mso-fareast-font-family:
    2763 "Times New Roman"'> &#8211; this changes the radiation between single
    2764 wavelength (e.g. for synchrotron source) and K</span></span></span><span
    2765 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><sub><span
    2766 style='font-family:Symbol;mso-fareast-font-family:"Times New Roman"'>a</span></sub></span></span><span
    2767 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><sub><span
    2768 style='mso-fareast-font-family:"Times New Roman"'>1</span></sub></span></span><span
    2769 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span
    2770 style='mso-fareast-font-family:"Times New Roman"'>/K</span></span></span><span
    2771 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><sub><span
    2772 style='font-family:Symbol;mso-fareast-font-family:"Times New Roman"'>a</span></sub></span></span><span
    2773 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><sub><span
    2774 style='mso-fareast-font-family:"Times New Roman"'>2</span></sub></span></span><span
    2775 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span
    2776 style='mso-fareast-font-family:"Times New Roman"'> wavelength pairs (e.g. a
    2777 laboratory tube source).<o:p></o:p></span></span></span></p>
    2778 
    2779 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span
    2780 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
     3154style='mso-fareast-font-family:"Times New Roman"'>Move the mouse cursor across
     3155the plot. <o:p></o:p></span></p>
     3156
     3157<h4><a name=Covariance><span style='mso-fareast-font-family:"Times New Roman"'>Covariance</span></a><span
     3158style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h4>
     3159
     3160<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>The
     3161variance-covariance matrix as a color coded array is shown on this page. The
     3162color bar to the right shows the range of <span class=SpellE>covariances</span>
     3163(-1 to 1) and corresponding colors. The parameter names are to the right and
     3164the parameter numbers are below the plot.<o:p></o:p></span></p>
     3165
     3166<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     3167
     3168<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 level1 lfo19'><![if !supportLists]><span
     3169style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     3170style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Move
     3171the mouse cursor across the plot. If on a diagonal cell, the parameter name,
     3172value and <span class=SpellE>esd</span> is shown both as a tool tip and in the
     3173right hand portion of the status bar. If the cursor is off the diagonal, the
     3174two parameter names and their covariance are shown in the tool tip and the
     3175status bar.</p>
     3176
     3177<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l4 level1 lfo19'><![if !supportLists]><span
    27813178style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    27823179style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
    2783 style='mso-fareast-font-family:"Times New Roman"'>You can change any of the
    2784 profile coefficients<o:p></o:p></span></span></span></p>
    2785 
    2786 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span
    2787 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    2788 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
    2789 style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
    2790 style='mso-fareast-font-family:"Times New Roman"'>You can choose to refine any
    2791 profile coefficients. <b style='mso-bidi-font-weight:normal'>NB</b>: In certain
    2792 circumstances some choices are ignored e.g. Zero is not refined during peak
    2793 fitting. Also some choices may lead to unstable refinement, e.g. <span
    2794 class=GramE>Lam</span> refinement and lattice parameter refinement. Examine the
    2795 &#8216;</span></span></span><a href="#Covariance"><span style='mso-bookmark:
    2796 Texture'><span style='mso-bookmark:Sample_Parameters'><span style='mso-fareast-font-family:
    2797 "Times New Roman"'>Covariance&#8217;</span></span></span><span
    2798 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'></span></span></a><span
    2799 style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span
    2800 style='mso-fareast-font-family:"Times New Roman"'> display for highly
    2801 correlated parameters.<o:p></o:p></span></span></span></p>
    2802 
    2803 <h4><span style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span
    2804 style='mso-fareast-font-family:"Times New Roman"'>Sample Parameters</span></span></span><span
    2805 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
    2806 
    2807 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2808 "Times New Roman"'>This window... <o:p></o:p></span></span></p>
    2809 
    2810 <h4><span style='mso-bookmark:Texture'><a name="Powder_Peaks"></a><a
    2811 name="Peak_List"><span style='mso-bookmark:Powder_Peaks'><span
    2812 style='mso-fareast-font-family:"Times New Roman"'>Peak List</span></span></a></span><span
    2813 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
    2814 
    2815 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2816 "Times New Roman"'>This window shows the list of peaks that will be used by the
    2817 peak fitting refinement. It is filled by picking peaks in the powder pattern
    2818 displayed in the GSASII Plots window as a sequence of &#8216;+&#8217; marks.
    2819 See </span></span><a href="#Powder_Patterns"><span style='mso-bookmark:Texture'><span
    2820 style='mso-fareast-font-family:"Times New Roman"'>Powder Patterns</span></span><span
    2821 style='mso-bookmark:Texture'></span></a><span style='mso-bookmark:Texture'><span
    2822 style='mso-fareast-font-family:"Times New Roman"'> below for details for what
    2823 can be done on this plot.<o:p></o:p></span></span></p>
    2824 
    2825 <h4><span style='mso-bookmark:Texture'><a name="Index_Peaks"><span
    2826 style='mso-fareast-font-family:"Times New Roman"'>Index Peak List</span></a></span><span
    2827 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
    2828 
    2829 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2830 "Times New Roman"'>This window shows the list of peaks that will be used for
    2831 indexing (see </span></span><a href="#Unit_Cells_List"><span style='mso-bookmark:
    2832 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Unit Cells
    2833 List</span></span><span style='mso-bookmark:Texture'></span></a><span
    2834 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>).
    2835 It must be filled before indexing can proceed. When indexing is completed, this
    2836 display will show the resulting <span class=SpellE>hkl</span> values for every
    2837 indexed reflection along with the calculated d-spacing (&#8216;d-<span
    2838 class=SpellE>calc</span>&#8217;) for the selected unit cell in </span></span><a
    2839 href="#Unit_Cells_List"><span style='mso-bookmark:Texture'><span
    2840 style='mso-fareast-font-family:"Times New Roman"'>Unit Cells List</span></span><span
    2841 style='mso-bookmark:Texture'></span></a><span style='mso-bookmark:Texture'><span
    2842 style='mso-fareast-font-family:"Times New Roman"'>.<o:p></o:p></span></span></p>
    2843 
    2844 <h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2845 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    2846 
    2847 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span
    2848 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2849 "Times New Roman"'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2850 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Menu
    2851 &#8216;<b style='mso-bidi-font-weight:normal'>Operations</b>&#8217; &#8211; <b
    2852 style='mso-bidi-font-weight:normal'>Load/Reload</b> &#8211; loads the peak
    2853 positions &amp; intensities from the </span></span><a href="#Peak_List"><span
    2854 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Peak
    2855 List</span></span><span style='mso-bookmark:Texture'></span></a><span
    2856 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
    2857 to make them available for the indexing routine. The d-<span class=SpellE>obs</span>
    2858 is obtained from Bragg&#8217;s Law after applying the Zero correction shown on
    2859 the </span></span><a href="#Instrument_Parameters"><span style='mso-bookmark:
    2860 Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Instrument
    2861 Parameters</span></span><span style='mso-bookmark:Texture'></span></a><span
    2862 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
    2863 table to the position shown here.<o:p></o:p></span></span></p>
    2864 
    2865 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span
    2866 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2867 "Times New Roman"'><span style='mso-list:Ignore'>5.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2868 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2869 may deselect individual peaks from indexing by <span class=SpellE>unchecking</span>
    2870 the corresponding &#8216;use&#8217; box.<o:p></o:p></span></span></p>
    2871 
    2872 <h4><span style='mso-bookmark:Texture'><a name="Cell_Indexing_Refine"><span
    2873 style='mso-fareast-font-family:"Times New Roman"'>Unit Cells List</span></a></span><span
    2874 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
    2875 
    2876 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2877 "Times New Roman"'>This window... <o:p></o:p></span></span></p>
    2878 
    2879 <h4><span style='mso-bookmark:Texture'><a name="Reflection_List"><span
    2880 style='mso-fareast-font-family:"Times New Roman"'>Reflection List</span></a></span><span
    2881 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
    2882 
    2883 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2884 "Times New Roman"'>This window... <o:p></o:p></span></span></p>
    2885 
    2886 <h3><span style='mso-bookmark:Texture'>Single Crystal Histograms - HKLF</span></h3>
    2887 
    2888 <h3><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2889 "Times New Roman"'>Pair Distribution Functions - PDF<o:p></o:p></span></span></h3>
    2890 
    2891 <h4><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2892 "Times New Roman"'>PDF Controls<o:p></o:p></span></span></h4>
    2893 
    2894 <h4><span style='mso-bookmark:Texture'><span class=GramE><span
    2895 style='mso-fareast-font-family:"Times New Roman"'>I(</span></span></span><span
    2896 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Q),
    2897 S(Q), F(Q) &amp; G(R)<o:p></o:p></span></span></h4>
    2898 
    2899 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2900 "Times New Roman"'>This window... <o:p></o:p></span></span></p>
    2901 
    2902 <h3><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2903 "Times New Roman"'>2-D Images &#8211; IMG<o:p></o:p></span></span></h3>
    2904 
    2905 <h4><span style='mso-bookmark:Texture'><a name=Images>Image Controls</a></span></h4>
    2906 
    2907 <span style='mso-bookmark:Images'></span>
    2908 
    2909 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2910 "Times New Roman"'>This window... <o:p></o:p></span></span></p>
    2911 
    2912 <h4><span style='mso-bookmark:Texture'><a name="_Image_Masks"></a></span><a
    2913 href="#_Image_Masks"><span style='mso-bookmark:Texture'><span style='color:
    2914 #4F81BD;mso-themecolor:accent1;text-decoration:none;text-underline:none'>Image
    2915 Ma<span style='mso-bookmark:Image_Masks'></span>sks</span></span></a><![if !supportNestedAnchors]><a
    2916 name="Image_Masks"></a><![endif]><span style='mso-bookmark:Texture'></span></h4>
    2917 
    2918 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2919 "Times New Roman"'>This window... <o:p></o:p></span></span></p>
    2920 
    2921 <div class=MsoNormal align=center style='text-align:center'><span
    2922 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
    2923 
    2924 <hr size=2 width="100%" align=center>
    2925 
    2926 </span></span></div>
    2927 
    2928 <div class=MsoNormal align=center style='text-align:center'><span
    2929 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
    2930 
    2931 <hr size=2 width="100%" align=center>
    2932 
    2933 </span></span></div>
    2934 
    2935 <h2><span style='mso-bookmark:Texture'><a name=Plots><span style='mso-fareast-font-family:
    2936 "Times New Roman"'>3. GSAS-II Plots Window</span></a></span><span
    2937 style='mso-bookmark:Plots'></span><span style='mso-bookmark:Texture'><span
    2938 style='mso-fareast-font-family:"Times New Roman";font-weight:normal'> </span></span><span
    2939 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h2>
    2940 
    2941 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2942 "Times New Roman"'>This window presents all the graphical material as a
    2943 multipage tabbed set of plots utilizing the <span class=SpellE>matplotlib</span>
    2944 python package. Each page has a tool bar (at bottom in Windows) with the
    2945 controls<o:p></o:p></span></span></p>
    2946 
    2947 <p class=MsoNormal><span style='mso-bookmark:Texture'></span><span
    2948 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman";
    2949 mso-no-proof:yes'><img border=0 width=225 height=31 id="_x0000_i1032"
    2950 src=graphbar.jpg></span></span><span style='mso-bookmark:Texture'><span
    2951 style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></p>
    2952 
    2953 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2954 "Times New Roman"'>These are Home, Back, Forward, Pan, Zoom, Save and Help,
    2955 respectively. <o:p></o:p></span></span></p>
    2956 
    2957 <ul type=disc>
    2958  <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2959      mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    2960      Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Home:
    2961      returns the plot to the initial scaling <o:p></o:p></span></span></li>
    2962  <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2963      mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    2964      Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Back:
    2965      returns the plot to the previous scaling <o:p></o:p></span></span></li>
    2966  <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2967      mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    2968      Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Forward:
    2969      reverses the action in the previous press(es) of the Back button <o:p></o:p></span></span></li>
    2970  <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2971      mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    2972      Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Pan:
    2973      allows you to control panning across the plot (press left mouse button)
    2974      and zooming (press right mouse button), <o:p></o:p></span></span></li>
    2975  <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2976      mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    2977      Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Zoom:
    2978      allows you to select a portion of the plot (press right mouse button &amp;
    2979      drag for zoom box) for the next plot. <o:p></o:p></span></span></li>
    2980  <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2981      mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    2982      Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Save:
    2983      allows you to save the currently displayed plot in one of several
    2984      graphical formats suitable for printing or insertion in a document.<o:p></o:p></span></span></li>
    2985  <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2986      mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    2987      Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Help:
    2988      accesses GSASII help on the specific plot type. <o:p></o:p></span></span></li>
    2989 </ul>
    2990 
    2991 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2992 "Times New Roman"'><o:p>&nbsp;</o:p></span></span></p>
    2993 
    2994 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2995 "Times New Roman"'>Below the toolbar may be a status bar that on the left may
    2996 show either an instruction for a keyed input or a pull down selection of keyed
    2997 input; on the right may be displayed position dependent information that is
    2998 updated as the mouse is moved over the plot region.<o:p></o:p></span></span></p>
    2999 
    3000 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3001 "Times New Roman"'><o:p>&nbsp;</o:p></span></span></p>
    3002 
    3003 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3004 "Times New Roman"'>The specific types of plots that are pages in the GSASII
    3005 Plots windows are next.<o:p></o:p></span></span></p>
    3006 
    3007 <h4><span style='mso-bookmark:Texture'><a name="Powder_Patterns"><span
    3008 style='mso-fareast-font-family:"Times New Roman"'>Powder Patterns</span></a></span><span
    3009 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
    3010 
    3011 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3012 "Times New Roman"'>The powder patterns that are part of your project are shown
    3013 on this page. They can be displayed as a stack of powder patterns, just a
    3014 single pattern or as a contour image of the peak intensities. What can be done
    3015 here will depend on which is displayed and on which item in the GSAS-II data
    3016 tree you have selected.<o:p></o:p></span></span></p>
    3017 
    3018 <h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3019 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    3020 
    3021 <p class=MsoListParagraph style='text-indent:-.25in;mso-list:l20 level1 lfo22'><span
    3022 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    3023 "Times New Roman"'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    3024 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Move
    3025 the mouse cursor across the plot. <o:p></o:p></span></span></p>
    3026 
    3027 <h4><span style='mso-bookmark:Texture'><a name=Covariance><span
    3028 style='mso-fareast-font-family:"Times New Roman"'>Covariance</span></a></span><span
    3029 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
    3030 
    3031 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3032 "Times New Roman"'>The variance-covariance matrix as a color coded array is
    3033 shown on this page. The color bar to the right shows the range of <span
    3034 class=SpellE>covariances</span> (-1 to 1) and corresponding colors. The parameter
    3035 names are to the right and the parameter numbers are below the plot.<o:p></o:p></span></span></p>
    3036 
    3037 <h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3038 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    3039 
    3040 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l6 level1 lfo13'><span
    3041 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    3042 "Times New Roman"'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    3043 </span></span></span><![endif]>Move the mouse cursor across the plot. If on a
    3044 diagonal cell, the parameter name, value and <span class=SpellE>esd</span> is shown
    3045 both as a tool tip and in the right hand portion of the status bar. If the
    3046 cursor is off the diagonal, the two parameter names and their covariance are
    3047 shown in the tool tip and the status bar.</span></p>
    3048 
    3049 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l6 level1 lfo13'><span
    3050 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    3051 "Times New Roman"'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    3052 </span></span></span><![endif]><span class=GramE>Type &#8216;s&#8217;</span>
    3053 &#8211; A color scheme selection dialog is shown. Select a color scheme and
    3054 press <span class=GramE>OK,</span> the new color scheme will be plotted. The
    3055 default is &#8216;<span class=SpellE>RdYlGn</span>&#8217;.</span></p>
    3056 
    3057 <h4><span style='mso-bookmark:Texture'><a name="Structure_Factors"><span
    3058 style='mso-fareast-font-family:"Times New Roman"'>Structure Factors </span></a></span></h4>
    3059 
    3060 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3061 "Times New Roman"'>This plot shows... <o:p></o:p></span></span></p>
    3062 
    3063 <h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3064 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    3065 
    3066 <h4><span style='mso-bookmark:Texture'><a name="Powder_Lines"><span
    3067 style='mso-fareast-font-family:"Times New Roman"'>Powder Lines </span></a></span></h4>
    3068 
    3069 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3070 "Times New Roman"'>This plot shows... <o:p></o:p></span></span></p>
    3071 
    3072 <h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3073 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    3074 
    3075 <h4><span style='mso-bookmark:Texture'><a name="Peak_Widths"><span
    3076 style='mso-fareast-font-family:"Times New Roman"'>Peak Widths </span></a></span></h4>
    3077 
    3078 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3079 "Times New Roman"'>This plot shows... <o:p></o:p></span></span></p>
    3080 
    3081 <h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3082 "Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    3083 
    3084 <h4><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    3085 "Times New Roman"'>Texture </span></span></h4>
     3180class=GramE>Type &#8216;s&#8217;</span> &#8211; A color scheme selection dialog
     3181is shown. Select a color scheme and press <span class=GramE>OK,</span> the new
     3182color scheme will be plotted. The default is &#8216;<span class=SpellE>RdYlGn</span>&#8217;.</p>
     3183
     3184<h4><a name="Structure_Factors"><span style='mso-fareast-font-family:"Times New Roman"'>Structure
     3185Factors </span></a></h4>
    30863186
    30873187<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     
    30903190<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
    30913191
    3092 <h4><a name="Sequential_refinement"><span style='mso-fareast-font-family:"Times New Roman"'>Sequential
    3093 refinement </span></a></h4>
     3192<h4><a name="Powder_Lines"><span style='mso-fareast-font-family:"Times New Roman"'>Powder
     3193Lines </span></a></h4>
     3194
     3195<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     3196plot shows... <o:p></o:p></span></p>
     3197
     3198<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     3199
     3200<h4><a name="Peak_Widths"><span style='mso-fareast-font-family:"Times New Roman"'>Peak
     3201Widths </span></a></h4>
     3202
     3203<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     3204plot shows... <o:p></o:p></span></p>
     3205
     3206<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     3207
     3208<h4><span style='mso-fareast-font-family:"Times New Roman"'>Texture </span></h4>
     3209
     3210<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     3211plot shows... <o:p></o:p></span></p>
     3212
     3213<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     3214
     3215<h4><a name="Sequential_refinement"></a><span style='mso-fareast-font-family:
     3216"Times New Roman"'>Sequential refinement </span></h4>
    30943217
    30953218<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
Note: See TracChangeset for help on using the changeset viewer.