Changeset 486


Ignore:
Timestamp:
Feb 17, 2012 2:59:59 PM (12 years ago)
Author:
vondreele
Message:

edit help & fix references to it
begin implementation of Fourier calcs.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIgrid.py

    r484 r486  
    9393] = [wx.NewId() for _init_coll_Refl_Items in range(1)]
    9494
     95[ wxID_FOURCALC,
     96] = [wx.NewId() for _init_coll_Genrl_Items in range(1)]
     97
    9598[ wxID_CLEARTEXTURE,wxID_REFINETEXTURE,
    9699] = [wx.NewId() for _init_coll_Texture_Items in range(2)]
     
    119122            htmlFrame.Raise()
    120123        except:
    121             htmlFrame = wx.Frame(frame, -1, size=(610, 380))
     124            htmlFrame = wx.Frame(frame, -1, size=(610, 450))
    122125            htmlFrame.Show(True)
    123126            htmlFrame.SetTitle("HTML Window") # N.B. reset later in LoadFile
     
    190193
    191194        #self.htmlwin = wx.html.HtmlWindow(self, id, size=(602,310))
    192         self.htmlwin = G2HtmlWindow(self, id, size=(602,310))
     195        self.htmlwin = G2HtmlWindow(self, id, size=(602,450))
    193196        sizer.Add(self.htmlwin, 1, wx.GROW|wx.ALL, 0)
    194197        self.SetSizer(sizer)
     
    422425# Phase / General tab
    423426        self.DataGeneral = wx.MenuBar()
     427        self.GeneralCalc = wx.Menu(title='')
     428        self.DataGeneral.Append(menu=self.GeneralCalc,title='Compute')
    424429        self.DataGeneral.Append(menu=MyHelp(self,helpType='General'),title='&Help')
     430        self.GeneralCalc.Append(help='Compute Fourier maps',id=wxID_FOURCALC, kind=wx.ITEM_NORMAL,
     431            text='Fourier maps')
    425432       
    426433# Phase / Atoms tab
     
    485492        self.PawleyEdit.Append(id=wxID_PAWLEYDELETE, kind=wx.ITEM_NORMAL,text='Pawley delete',
    486493            help='Delete Pawley reflection list')
    487 #        self.PawleyEdit.Append(id=wxID_PAWLEYIMPORT, kind=wx.ITEM_NORMAL,text='Pawley import',
    488 #            help='Import Pawley reflection list')
    489494
    490495# Phase / Draw Options tab
  • trunk/GSASIImath.py

    r485 r486  
    133133    except LinAlgError:
    134134        psing = list(np.where(np.diag(nl.gr(Amat)[1]) < 1.e-14)[0])
    135         return [x0,None,{'num cyc':icycle,'fvec':M,'nfev':nfev,'lamMax':lamMax,'psing':psing}]
     135        return [x0,None,{'num cyc':icycle,'fvec':M,'nfev':nfev,'lamMax':lamMax,'psing':psing}]
     136
     137def calcFouriermap():
     138    print 'Calculate Fourier map'
     139
    136140   
    137141def getVCov(varyNames,varyList,covMatrix):
  • trunk/GSASIIphsGUI.py

    r485 r486  
    251251        if 'POhkl' not in generalData:
    252252            generalData['POhkl'] = [0,0,1]
     253        if 'Map' not in generalData:
     254            generalData['Map'] = {'MapType':'','RefList':'','Resolution':4.0}
    253255        generalData['NoAtoms'] = {}
    254256        generalData['BondRadii'] = []
     
    295297        'Drawing':{}
    296298        '''
    297         G2frame.dataFrame.SetMenuBar(G2frame.dataFrame.DataGeneral) # do this here, since this is called from all over
    298299       
    299300        phaseTypes = ['nuclear','modulated','magnetic','macromolecular','Pawley']
    300301        SetupGeneral()
    301302        generalData = data['General']
    302        
    303         def OnPhaseName(event):
    304             oldName = generalData['Name']
    305             generalData['Name'] = NameTxt.GetValue()
    306             G2frame.G2plotNB.Rename(oldName,generalData['Name'])
    307             G2frame.dataFrame.SetLabel('Phase Data for '+generalData['Name'])
    308             G2frame.PatternTree.SetItemText(Item,generalData['Name'])
    309             #Hmm, need to change phase name key in Reflection Lists for each histogram
    310                        
    311         def OnPhaseType(event):
    312             if not generalData['AtomTypes']:             #can change only if no atoms!
    313                 generalData['Type'] = TypeTxt.GetValue()
     303        Map = generalData['Map']  # {'MapType':'','RefList':'','Resolution':4.0}
     304       
     305        def NameSizer():
     306                   
     307            def OnPhaseName(event):
     308                oldName = generalData['Name']
     309                generalData['Name'] = NameTxt.GetValue()
     310                G2frame.G2plotNB.Rename(oldName,generalData['Name'])
     311                G2frame.dataFrame.SetLabel('Phase Data for '+generalData['Name'])
     312                G2frame.PatternTree.SetItemText(Item,generalData['Name'])
     313                #Hmm, need to change phase name key in Reflection Lists for each histogram
     314                           
     315            def OnPhaseType(event):
     316                if not generalData['AtomTypes']:             #can change only if no atoms!
     317                    generalData['Type'] = TypeTxt.GetValue()
     318                    dataDisplay.DestroyChildren()           #needed to clear away bad cellSizer, etc.
     319                    UpdateGeneral()         #must use this way!
     320                    if generalData['Type'] == 'Pawley':
     321                        if G2frame.dataDisplay.FindPage('Atoms'):
     322                            G2frame.dataDisplay.DeletePage(G2frame.dataDisplay.FindPage('Atoms'))
     323                            G2frame.dataDisplay.DeletePage(G2frame.dataDisplay.FindPage('Draw Options'))
     324                            G2frame.dataDisplay.DeletePage(G2frame.dataDisplay.FindPage('Draw Atoms'))
     325                        if not G2frame.dataDisplay.FindPage('Pawley reflections'):
     326                            G2frame.PawleyRefl = G2gd.GSGrid(G2frame.dataDisplay)     
     327                            G2frame.dataDisplay.AddPage(G2frame.PawleyRefl,'Pawley reflections')
     328                else:
     329                    TypeTxt.SetValue(generalData['Type'])               
     330               
     331            def OnSpaceGroup(event):
     332                SpcGp = SGTxt.GetValue()
     333                SGErr,SGData = G2spc.SpcGroup(SpcGp)
     334                if SGErr:
     335                    text = [G2spc.SGErrors(SGErr)+'\nSpace Group set to previous']
     336                    SGTxt.SetValue(generalData['SGData']['SpGrp'])
     337                    msg = 'Space Group Error'
     338                    Style = wx.ICON_EXCLAMATION
     339                else:
     340                    text = G2spc.SGPrint(SGData)
     341                    generalData['SGData'] = SGData
     342                    msg = 'Space Group Information'
     343                    Style = wx.ICON_INFORMATION
     344                Text = ''
     345                for line in text:
     346                    Text += line+'\n'
     347                wx.MessageBox(Text,caption=msg,style=Style)
    314348                dataDisplay.DestroyChildren()           #needed to clear away bad cellSizer, etc.
    315                 UpdateGeneral()         #must use this way!
    316                 if generalData['Type'] == 'Pawley':
    317                     if G2frame.dataDisplay.FindPage('Atoms'):
    318                         G2frame.dataDisplay.DeletePage(G2frame.dataDisplay.FindPage('Atoms'))
    319                         G2frame.dataDisplay.DeletePage(G2frame.dataDisplay.FindPage('Draw Options'))
    320                         G2frame.dataDisplay.DeletePage(G2frame.dataDisplay.FindPage('Draw Atoms'))
    321                     if not G2frame.dataDisplay.FindPage('Pawley reflections'):
    322                         G2frame.PawleyRefl = G2gd.GSGrid(G2frame.dataDisplay)     
    323                         G2frame.dataDisplay.AddPage(G2frame.PawleyRefl,'Pawley reflections')
     349                UpdateGeneral()
     350               
     351            nameSizer = wx.BoxSizer(wx.HORIZONTAL)
     352            nameSizer.Add(wx.StaticText(dataDisplay,-1,' Phase name: '),0,wx.ALIGN_CENTER_VERTICAL)
     353            NameTxt = wx.TextCtrl(dataDisplay,-1,value=generalData['Name'],style=wx.TE_PROCESS_ENTER)
     354            NameTxt.Bind(wx.EVT_TEXT_ENTER,OnPhaseName)
     355            NameTxt.Bind(wx.EVT_KILL_FOCUS,OnPhaseName)
     356            nameSizer.Add(NameTxt,0,wx.ALIGN_CENTER_VERTICAL)
     357            nameSizer.Add(wx.StaticText(dataDisplay,-1,'  Phase type: '),0,wx.ALIGN_CENTER_VERTICAL)
     358            if len(data['Atoms']):
     359                choices = phaseTypes[:-1]
    324360            else:
    325                 TypeTxt.SetValue(generalData['Type'])               
     361                choices = phaseTypes           
     362            TypeTxt = wx.ComboBox(dataDisplay,-1,value=generalData['Type'],choices=choices,
     363                style=wx.CB_READONLY|wx.CB_DROPDOWN)
     364            TypeTxt.Bind(wx.EVT_COMBOBOX, OnPhaseType)
     365            nameSizer.Add(TypeTxt,0,wx.ALIGN_CENTER_VERTICAL)
     366            nameSizer.Add(wx.StaticText(dataDisplay,-1,'  Space group: '),0,wx.ALIGN_CENTER_VERTICAL)
     367            SGTxt = wx.TextCtrl(dataDisplay,-1,value=generalData['SGData']['SpGrp'],style=wx.TE_PROCESS_ENTER)
     368            SGTxt.Bind(wx.EVT_TEXT_ENTER,OnSpaceGroup)
     369            nameSizer.Add(SGTxt,0,wx.ALIGN_CENTER_VERTICAL)
     370            return nameSizer
     371           
     372        def CellSizer():
     373           
     374            cellGUIlist = [[['m3','m3m'],4,zip([" Unit cell: a = "," Vol = "],["%.5f","%.3f"],[True,False],[0,0])],
     375            [['3R','3mR'],6,zip([" a = "," alpha = "," Vol = "],["%.5f","%.3f","%.3f"],[True,True,False],[0,2,0])],
     376            [['3','3m1','31m','6/m','6/mmm','4/m','4/mmm'],6,zip([" a = "," c = "," Vol = "],["%.5f","%.5f","%.3f"],[True,True,False],[0,2,0])],
     377            [['mmm'],8,zip([" a = "," b = "," c = "," Vol = "],["%.5f","%.5f","%.5f","%.3f"],
     378                [True,True,True,False],[0,1,2,0])],
     379            [['2/m'+'a'],10,zip([" a = "," b = "," c = "," alpha = "," Vol = "],
     380                ["%.5f","%.5f","%.5f","%.3f","%.3f"],[True,True,True,True,False],[0,1,2,4,0])],
     381            [['2/m'+'b'],10,zip([" a = "," b = "," c = "," beta = "," Vol = "],
     382                ["%.5f","%.5f","%.5f","%.3f","%.3f"],[True,True,True,True,False],[0,1,2,4,0])],
     383            [['2/m'+'c'],10,zip([" a = "," b = "," c = "," gamma = "," Vol = "],
     384                ["%.5f","%.5f","%.5f","%.3f","%.3f"],[True,True,True,True,False],[0,1,2,4,0])],
     385            [['-1'],8,zip([" a = "," b = "," c = "," Vol = "," alpha = "," beta = "," gamma = "],
     386                ["%.5f","%.5f","%.5f","%.3f","%.3f","%.3f","%.3f"],
     387                [True,True,True,False,True,True,True],[0,1,2,0,3,4,5])]]
    326388               
    327         def OnSpaceGroup(event):
    328             SpcGp = SGTxt.GetValue()
    329             SGErr,SGData = G2spc.SpcGroup(SpcGp)
    330             if SGErr:
    331                 text = [G2spc.SGErrors(SGErr)+'\nSpace Group set to previous']
    332                 SGTxt.SetValue(generalData['SGData']['SpGrp'])
    333                 msg = 'Space Group Error'
    334                 Style = wx.ICON_EXCLAMATION
    335             else:
    336                 text = G2spc.SGPrint(SGData)
    337                 generalData['SGData'] = SGData
    338                 msg = 'Space Group Information'
    339                 Style = wx.ICON_INFORMATION
    340             Text = ''
    341             for line in text:
    342                 Text += line+'\n'
    343             wx.MessageBox(Text,caption=msg,style=Style)
    344             dataDisplay.DestroyChildren()           #needed to clear away bad cellSizer, etc.
    345             UpdateGeneral()
    346            
    347         def OnCellRef(event):
    348             generalData['Cell'][0] = cellRef.GetValue()
    349            
    350         def OnCellChange(event):
    351             SGData = generalData['SGData']
    352             laue = SGData['SGLaue']
     389            def OnCellRef(event):
     390                generalData['Cell'][0] = cellRef.GetValue()
     391               
     392            def OnCellChange(event):
     393                SGData = generalData['SGData']
     394                laue = SGData['SGLaue']
     395                if laue == '2/m':
     396                    laue += SGData['SGUniq']
     397                cell = generalData['Cell']
     398                Obj = event.GetEventObject()
     399                ObjId = cellList.index(Obj.GetId())
     400                try:
     401                    value = max(1.0,float(Obj.GetValue()))
     402                except ValueError:
     403                    if ObjId < 3:               #bad cell edge - reset
     404                        value = controls[6+ObjId]
     405                    else:                       #bad angle
     406                        value = 90.
     407                if laue in ['m3','m3m']:
     408                    cell[1] = cell[2] = cell[3] = value
     409                    cell[4] = cell[5] = cell[6] = 90.0
     410                    Obj.SetValue("%.5f"%(cell[1]))
     411                elif laue in ['3R','3mR']:
     412                    if ObjId == 0:
     413                        cell[1] = cell[2] = cell[3] = value
     414                        Obj.SetValue("%.5f"%(cell[1]))
     415                    else:
     416                        cell[4] = cell[5] = cell[6] = value
     417                        Obj.SetValue("%.5f"%(cell[4]))
     418                elif laue in ['3','3m1','31m','6/m','6/mmm','4/m','4/mmm']:                   
     419                    cell[4] = cell[5] = 90.
     420                    cell[6] = 120.
     421                    if laue in ['4/m','4/mmm']:
     422                        cell[6] = 90.
     423                    if ObjId == 0:
     424                        cell[1] = cell[2] = value
     425                        Obj.SetValue("%.5f"%(cell[1]))
     426                    else:
     427                        cell[3] = value
     428                        Obj.SetValue("%.5f"%(cell[3]))
     429                elif laue in ['mmm']:
     430                    cell[ObjId+1] = value
     431                    cell[4] = cell[5] = cell[6] = 90.
     432                    Obj.SetValue("%.5f"%(cell[ObjId+1]))
     433                elif laue in ['2/m'+'a']:
     434                    cell[5] = cell[6] = 90.
     435                    if ObjId != 3:
     436                        cell[ObjId+1] = value
     437                        Obj.SetValue("%.5f"%(cell[ObjId+1]))
     438                    else:
     439                        cell[4] = value
     440                        Obj.SetValue("%.3f"%(cell[4]))
     441                elif laue in ['2/m'+'b']:
     442                    cell[4] = cell[6] = 90.
     443                    if ObjId != 3:
     444                        cell[ObjId+1] = value
     445                        Obj.SetValue("%.5f"%(cell[ObjId+1]))
     446                    else:
     447                        cell[5] = value
     448                        Obj.SetValue("%.3f"%(cell[5]))
     449                elif laue in ['2/m'+'c']:
     450                    cell[5] = cell[6] = 90.
     451                    if ObjId != 3:
     452                        cell[ObjId+1] = value
     453                        Obj.SetValue("%.5f"%(cell[ObjId+1]))
     454                    else:
     455                        cell[6] = value
     456                        Obj.SetValue("%.3f"%(cell[6]))
     457                else:
     458                    cell[ObjId+1] = value
     459                    if ObjId < 3:
     460                        Obj.SetValue("%.5f"%(cell[1+ObjId]))
     461                    else:
     462                        Obj.SetValue("%.3f"%(cell[1+ObjId]))                       
     463                cell[7] = G2lat.calc_V(G2lat.cell2A(cell[1:7]))
     464                volVal.SetValue("%.3f"%(cell[7]))
     465                generalData['Cell'] = cell
     466                dataDisplay.DestroyChildren()           #needed to clear away bad cellSizer, etc.
     467                UpdateGeneral()
     468           
     469            cell = generalData['Cell']
     470            laue = generalData['SGData']['SGLaue']
    353471            if laue == '2/m':
    354                 laue += SGData['SGUniq']
    355             cell = generalData['Cell']
    356             Obj = event.GetEventObject()
    357             ObjId = cellList.index(Obj.GetId())
    358             try:
    359                 value = max(1.0,float(Obj.GetValue()))
    360             except ValueError:
    361                 if ObjId < 3:               #bad cell edge - reset
    362                     value = controls[6+ObjId]
    363                 else:                       #bad angle
    364                     value = 90.
    365             if laue in ['m3','m3m']:
    366                 cell[1] = cell[2] = cell[3] = value
    367                 cell[4] = cell[5] = cell[6] = 90.0
    368                 Obj.SetValue("%.5f"%(cell[1]))
    369             elif laue in ['3R','3mR']:
    370                 if ObjId == 0:
    371                     cell[1] = cell[2] = cell[3] = value
    372                     Obj.SetValue("%.5f"%(cell[1]))
    373                 else:
    374                     cell[4] = cell[5] = cell[6] = value
    375                     Obj.SetValue("%.5f"%(cell[4]))
    376             elif laue in ['3','3m1','31m','6/m','6/mmm','4/m','4/mmm']:                   
    377                 cell[4] = cell[5] = 90.
    378                 cell[6] = 120.
    379                 if laue in ['4/m','4/mmm']:
    380                     cell[6] = 90.
    381                 if ObjId == 0:
    382                     cell[1] = cell[2] = value
    383                     Obj.SetValue("%.5f"%(cell[1]))
    384                 else:
    385                     cell[3] = value
    386                     Obj.SetValue("%.5f"%(cell[3]))
    387             elif laue in ['mmm']:
    388                 cell[ObjId+1] = value
    389                 cell[4] = cell[5] = cell[6] = 90.
    390                 Obj.SetValue("%.5f"%(cell[ObjId+1]))
    391             elif laue in ['2/m'+'a']:
    392                 cell[5] = cell[6] = 90.
    393                 if ObjId != 3:
    394                     cell[ObjId+1] = value
    395                     Obj.SetValue("%.5f"%(cell[ObjId+1]))
    396                 else:
    397                     cell[4] = value
    398                     Obj.SetValue("%.3f"%(cell[4]))
    399             elif laue in ['2/m'+'b']:
    400                 cell[4] = cell[6] = 90.
    401                 if ObjId != 3:
    402                     cell[ObjId+1] = value
    403                     Obj.SetValue("%.5f"%(cell[ObjId+1]))
    404                 else:
    405                     cell[5] = value
    406                     Obj.SetValue("%.3f"%(cell[5]))
    407             elif laue in ['2/m'+'c']:
    408                 cell[5] = cell[6] = 90.
    409                 if ObjId != 3:
    410                     cell[ObjId+1] = value
    411                     Obj.SetValue("%.5f"%(cell[ObjId+1]))
    412                 else:
    413                     cell[6] = value
    414                     Obj.SetValue("%.3f"%(cell[6]))
    415             else:
    416                 cell[ObjId+1] = value
    417                 if ObjId < 3:
    418                     Obj.SetValue("%.5f"%(cell[1+ObjId]))
    419                 else:
    420                     Obj.SetValue("%.3f"%(cell[1+ObjId]))
    421             cell[7] = G2lat.calc_V(G2lat.cell2A(cell[1:7]))
    422             volVal.SetValue("%.3f"%(cell[7]))
    423             generalData['Cell'] = cell
    424             dataDisplay.DestroyChildren()           #needed to clear away bad cellSizer, etc.
    425             UpdateGeneral()
    426                        
    427         def OnPawleyVal(event):
    428             try:
    429                 dmin = float(pawlVal.GetValue())
    430                 if 0.25 <= dmin <= 20.:
    431                     generalData['Pawley dmin'] = dmin
    432             except ValueError:
    433                 pass
    434             pawlVal.SetValue("%.3f"%(generalData['Pawley dmin']))          #reset in case of error       
    435            
    436         def OnIsotope(event):
    437             Obj = event.GetEventObject()
    438             item = Indx[Obj.GetId()]
    439             isotope = Obj.GetValue()
    440             generalData['Isotope'][item] = isotope
    441             indx = generalData['AtomTypes'].index(item)
    442             data['General']['AtomMass'][indx] = generalData['Isotopes'][item][isotope][0]
    443             dataDisplay.DestroyChildren()           #needed to clear away bad cellSizer, etc.
    444             UpdateGeneral()
    445                                                
    446         cellGUIlist = [[['m3','m3m'],4,zip([" Unit cell: a = "," Vol = "],["%.5f","%.3f"],[True,False],[0,0])],
    447         [['3R','3mR'],6,zip([" a = "," alpha = "," Vol = "],["%.5f","%.3f","%.3f"],[True,True,False],[0,2,0])],
    448         [['3','3m1','31m','6/m','6/mmm','4/m','4/mmm'],6,zip([" a = "," c = "," Vol = "],["%.5f","%.5f","%.3f"],[True,True,False],[0,2,0])],
    449         [['mmm'],8,zip([" a = "," b = "," c = "," Vol = "],["%.5f","%.5f","%.5f","%.3f"],
    450             [True,True,True,False],[0,1,2,0])],
    451         [['2/m'+'a'],10,zip([" a = "," b = "," c = "," alpha = "," Vol = "],
    452             ["%.5f","%.5f","%.5f","%.3f","%.3f"],[True,True,True,True,False],[0,1,2,4,0])],
    453         [['2/m'+'b'],10,zip([" a = "," b = "," c = "," beta = "," Vol = "],
    454             ["%.5f","%.5f","%.5f","%.3f","%.3f"],[True,True,True,True,False],[0,1,2,4,0])],
    455         [['2/m'+'c'],10,zip([" a = "," b = "," c = "," gamma = "," Vol = "],
    456             ["%.5f","%.5f","%.5f","%.3f","%.3f"],[True,True,True,True,False],[0,1,2,4,0])],
    457         [['-1'],8,zip([" a = "," b = "," c = "," Vol = "," alpha = "," beta = "," gamma = "],
    458             ["%.5f","%.5f","%.5f","%.3f","%.3f","%.3f","%.3f"],
    459             [True,True,True,False,True,True,True],[0,1,2,0,3,4,5])]]
    460        
    461         General.DestroyChildren()
    462         dataDisplay = wx.Panel(General)
    463         mainSizer = wx.BoxSizer(wx.VERTICAL)
    464         mainSizer.Add((5,5),0)
    465         mainSizer.Add(wx.StaticText(dataDisplay,-1,'General phase data:'),0,wx.ALIGN_CENTER_VERTICAL)
    466         mainSizer.Add((5,5),0)
    467         nameSizer = wx.BoxSizer(wx.HORIZONTAL)
    468         nameSizer.Add(wx.StaticText(dataDisplay,-1,' Phase name: '),0,wx.ALIGN_CENTER_VERTICAL)
    469         NameTxt = wx.TextCtrl(dataDisplay,-1,value=generalData['Name'],style=wx.TE_PROCESS_ENTER)
    470         NameTxt.Bind(wx.EVT_TEXT_ENTER,OnPhaseName)
    471         NameTxt.Bind(wx.EVT_KILL_FOCUS,OnPhaseName)
    472         nameSizer.Add(NameTxt,0,wx.ALIGN_CENTER_VERTICAL)
    473         nameSizer.Add(wx.StaticText(dataDisplay,-1,'  Phase type: '),0,wx.ALIGN_CENTER_VERTICAL)
    474         if len(data['Atoms']):
    475             choices = phaseTypes[:-1]
    476         else:
    477             choices = phaseTypes           
    478         TypeTxt = wx.ComboBox(dataDisplay,-1,value=generalData['Type'],choices=choices,
    479             style=wx.CB_READONLY|wx.CB_DROPDOWN)
    480         TypeTxt.Bind(wx.EVT_COMBOBOX, OnPhaseType)
    481         nameSizer.Add(TypeTxt,0,wx.ALIGN_CENTER_VERTICAL)
    482         nameSizer.Add(wx.StaticText(dataDisplay,-1,'  Space group: '),0,wx.ALIGN_CENTER_VERTICAL)
    483         SGTxt = wx.TextCtrl(dataDisplay,-1,value=generalData['SGData']['SpGrp'],style=wx.TE_PROCESS_ENTER)
    484         SGTxt.Bind(wx.EVT_TEXT_ENTER,OnSpaceGroup)
    485         nameSizer.Add(SGTxt,0,wx.ALIGN_CENTER_VERTICAL)
    486         mainSizer.Add(nameSizer,0)
    487         mainSizer.Add((5,5),0)
    488         cell = generalData['Cell']
    489         laue = generalData['SGData']['SGLaue']
    490         if laue == '2/m':
    491             laue += generalData['SGData']['SGUniq']
    492         for cellGUI in cellGUIlist:
    493             if laue in cellGUI[0]:
    494                 useGUI = cellGUI
    495         cellList = []
    496         cellSizer = wx.FlexGridSizer(2,useGUI[1]+1,5,5)
    497         cellRef = wx.CheckBox(dataDisplay,-1,label='Refine unit cell:')
    498         cellSizer.Add(cellRef,0,wx.ALIGN_CENTER_VERTICAL)
    499         cellRef.Bind(wx.EVT_CHECKBOX, OnCellRef)
    500         cellRef.SetValue(cell[0])
    501         for txt,fmt,ifEdit,Id in useGUI[2]:
    502             cellSizer.Add(wx.StaticText(dataDisplay,label=txt),0,wx.ALIGN_CENTER_VERTICAL)
    503             if ifEdit:          #a,b,c,etc.
    504                 cellVal = wx.TextCtrl(dataDisplay,value=(fmt%(cell[Id+1])),
    505                     style=wx.TE_PROCESS_ENTER)
    506                 cellVal.Bind(wx.EVT_TEXT_ENTER,OnCellChange)       
    507                 cellVal.Bind(wx.EVT_KILL_FOCUS,OnCellChange)
    508                 cellSizer.Add(cellVal,0,wx.ALIGN_CENTER_VERTICAL)
    509                 cellList.append(cellVal.GetId())
    510             else:               #volume
    511                 volVal = wx.TextCtrl(dataDisplay,value=(fmt%(cell[7])),style=wx.TE_READONLY)
    512                 volVal.SetBackgroundColour(VERY_LIGHT_GREY)
    513                 cellSizer.Add(volVal,0,wx.ALIGN_CENTER_VERTICAL)
    514         mainSizer.Add(cellSizer,0)
    515         mainSizer.Add((5,5),0)
    516        
    517         Indx = {}
    518         if len(generalData['AtomTypes']):
     472                laue += generalData['SGData']['SGUniq']
     473            for cellGUI in cellGUIlist:
     474                if laue in cellGUI[0]:
     475                    useGUI = cellGUI
     476            cellSizer = wx.FlexGridSizer(2,useGUI[1]+1,5,5)
     477            cellRef = wx.CheckBox(dataDisplay,-1,label='Refine unit cell:')
     478            cellSizer.Add(cellRef,0,wx.ALIGN_CENTER_VERTICAL)
     479            cellRef.Bind(wx.EVT_CHECKBOX, OnCellRef)
     480            cellRef.SetValue(cell[0])
     481            cellList = []
     482            for txt,fmt,ifEdit,Id in useGUI[2]:
     483                cellSizer.Add(wx.StaticText(dataDisplay,label=txt),0,wx.ALIGN_CENTER_VERTICAL)
     484                if ifEdit:          #a,b,c,etc.
     485                    cellVal = wx.TextCtrl(dataDisplay,value=(fmt%(cell[Id+1])),
     486                        style=wx.TE_PROCESS_ENTER)
     487                    cellVal.Bind(wx.EVT_TEXT_ENTER,OnCellChange)       
     488                    cellVal.Bind(wx.EVT_KILL_FOCUS,OnCellChange)
     489                    cellSizer.Add(cellVal,0,wx.ALIGN_CENTER_VERTICAL)
     490                    cellList.append(cellVal.GetId())
     491                else:               #volume
     492                    volVal = wx.TextCtrl(dataDisplay,value=(fmt%(cell[7])),style=wx.TE_READONLY)
     493                    volVal.SetBackgroundColour(VERY_LIGHT_GREY)
     494                    cellSizer.Add(volVal,0,wx.ALIGN_CENTER_VERTICAL)
     495            return cellSizer
     496           
     497        def ElemSizer():
     498           
     499            def OnIsotope(event):
     500                Obj = event.GetEventObject()
     501                item = Indx[Obj.GetId()]
     502                isotope = Obj.GetValue()
     503                generalData['Isotope'][item] = isotope
     504                indx = generalData['AtomTypes'].index(item)
     505                data['General']['AtomMass'][indx] = generalData['Isotopes'][item][isotope][0]
     506                dataDisplay.DestroyChildren()           #needed to clear away bad cellSizer, etc.
     507                UpdateGeneral()
     508               
     509            elemSizer = wx.FlexGridSizer(8,len(generalData['AtomTypes'])+1,1,1)
     510            elemSizer.Add(wx.StaticText(dataDisplay,label=' Elements'),0,wx.ALIGN_CENTER_VERTICAL)
     511            for elem in generalData['AtomTypes']:
     512                typTxt = wx.TextCtrl(dataDisplay,value=elem,style=wx.TE_READONLY)
     513                typTxt.SetBackgroundColour(VERY_LIGHT_GREY)
     514                elemSizer.Add(typTxt,0,wx.ALIGN_CENTER_VERTICAL)
     515            elemSizer.Add(wx.StaticText(dataDisplay,label=' Isotope'),0,wx.ALIGN_CENTER_VERTICAL)
     516            for elem in generalData['AtomTypes']:
     517                choices = generalData['Isotopes'][elem].keys()
     518                if elem not in generalData['Isotope']:
     519                    generalData['Isotope'][elem] = 'Nat. Abund.'
     520                isoSel = wx.ComboBox(dataDisplay,-1,value=generalData['Isotope'][elem],choices=choices,
     521                    style=wx.CB_READONLY|wx.CB_DROPDOWN)
     522                isoSel.Bind(wx.EVT_COMBOBOX,OnIsotope)
     523                Indx[isoSel.GetId()] = elem
     524                elemSizer.Add(isoSel,1,wx.ALIGN_CENTER_VERTICAL|wx.EXPAND)
     525            elemSizer.Add(wx.StaticText(dataDisplay,label=' No. per cell'),0,wx.ALIGN_CENTER_VERTICAL)
     526            for elem in generalData['AtomTypes']:
     527                numbTxt = wx.TextCtrl(dataDisplay,value='%.1f'%(generalData['NoAtoms'][elem]),
     528                    style=wx.TE_READONLY)
     529                numbTxt.SetBackgroundColour(VERY_LIGHT_GREY)
     530                elemSizer.Add(numbTxt,0,wx.ALIGN_CENTER_VERTICAL)
     531            elemSizer.Add(wx.StaticText(dataDisplay,label=' Atom weight'),0,wx.ALIGN_CENTER_VERTICAL)
     532            for wt in generalData['AtomMass']:
     533                wtTxt = wx.TextCtrl(dataDisplay,value='%.3f'%(wt),style=wx.TE_READONLY)
     534                wtTxt.SetBackgroundColour(VERY_LIGHT_GREY)
     535                elemSizer.Add(wtTxt,0,wx.ALIGN_CENTER_VERTICAL)
     536            elemSizer.Add(wx.StaticText(dataDisplay,label=' Bond radii'),0,wx.ALIGN_CENTER_VERTICAL)
     537            for rad in generalData['BondRadii']:
     538                bondRadii = wx.TextCtrl(dataDisplay,value='%.2f'%(rad),style=wx.TE_READONLY)
     539                bondRadii.SetBackgroundColour(VERY_LIGHT_GREY)
     540                elemSizer.Add(bondRadii,0,wx.ALIGN_CENTER_VERTICAL)
     541            elemSizer.Add(wx.StaticText(dataDisplay,label=' Angle radii'),0,wx.ALIGN_CENTER_VERTICAL)
     542            for rad in generalData['AngleRadii']:
     543                elemTxt = wx.TextCtrl(dataDisplay,value='%.2f'%(rad),style=wx.TE_READONLY)
     544                elemTxt.SetBackgroundColour(VERY_LIGHT_GREY)
     545                elemSizer.Add(elemTxt,0,wx.ALIGN_CENTER_VERTICAL)
     546            elemSizer.Add(wx.StaticText(dataDisplay,label=' van der Waals radii'),0,wx.ALIGN_CENTER_VERTICAL)
     547            for rad in generalData['vdWRadii']:
     548                elemTxt = wx.TextCtrl(dataDisplay,value='%.2f'%(rad),style=wx.TE_READONLY)
     549                elemTxt.SetBackgroundColour(VERY_LIGHT_GREY)
     550                elemSizer.Add(elemTxt,0,wx.ALIGN_CENTER_VERTICAL)
     551            elemSizer.Add(wx.StaticText(dataDisplay,label=' Default color'),0,wx.ALIGN_CENTER_VERTICAL)
     552            for R,G,B in generalData['Color']:
     553                colorTxt = wx.TextCtrl(dataDisplay,value='',style=wx.TE_READONLY)
     554                colorTxt.SetBackgroundColour(wx.Colour(R,G,B))
     555                elemSizer.Add(colorTxt,0,wx.ALIGN_CENTER_VERTICAL)
     556            return elemSizer
     557           
     558        def DenSizer():
    519559            mass = 0.
    520560            for i,elem in enumerate(generalData['AtomTypes']):
     
    533573                mattTxt.SetBackgroundColour(VERY_LIGHT_GREY)
    534574                denSizer.Add(mattTxt,0,wx.ALIGN_CENTER_VERTICAL)
    535             mainSizer.Add(denSizer)
    536             mainSizer.Add((5,5),0)
    537            
    538             elemSizer = wx.FlexGridSizer(8,len(generalData['AtomTypes'])+1,1,1)
    539             elemSizer.Add(wx.StaticText(dataDisplay,label='Elements'),0,wx.ALIGN_CENTER_VERTICAL)
    540             for elem in generalData['AtomTypes']:
    541                 typTxt = wx.TextCtrl(dataDisplay,value=elem,style=wx.TE_READONLY)
    542                 typTxt.SetBackgroundColour(VERY_LIGHT_GREY)
    543                 elemSizer.Add(typTxt,0,wx.ALIGN_CENTER_VERTICAL)
    544             elemSizer.Add(wx.StaticText(dataDisplay,label='Isotope'),0,wx.ALIGN_CENTER_VERTICAL)
    545             for elem in generalData['AtomTypes']:
    546                 choices = generalData['Isotopes'][elem].keys()
    547                 if elem not in generalData['Isotope']:
    548                     generalData['Isotope'][elem] = 'Nat. Abund.'
    549                 isoSel = wx.ComboBox(dataDisplay,-1,value=generalData['Isotope'][elem],choices=choices,
    550                     style=wx.CB_READONLY|wx.CB_DROPDOWN)
    551                 isoSel.Bind(wx.EVT_COMBOBOX,OnIsotope)
    552                 Indx[isoSel.GetId()] = elem
    553                 elemSizer.Add(isoSel,1,wx.ALIGN_CENTER_VERTICAL|wx.EXPAND)
    554             elemSizer.Add(wx.StaticText(dataDisplay,label='No. per cell'),0,wx.ALIGN_CENTER_VERTICAL)
    555             for elem in generalData['AtomTypes']:
    556                 numbTxt = wx.TextCtrl(dataDisplay,value='%.1f'%(generalData['NoAtoms'][elem]),
    557                     style=wx.TE_READONLY)
    558                 numbTxt.SetBackgroundColour(VERY_LIGHT_GREY)
    559                 elemSizer.Add(numbTxt,0,wx.ALIGN_CENTER_VERTICAL)
    560             elemSizer.Add(wx.StaticText(dataDisplay,label='Atom weight'),0,wx.ALIGN_CENTER_VERTICAL)
    561             for wt in generalData['AtomMass']:
    562                 wtTxt = wx.TextCtrl(dataDisplay,value='%.3f'%(wt),style=wx.TE_READONLY)
    563                 wtTxt.SetBackgroundColour(VERY_LIGHT_GREY)
    564                 elemSizer.Add(wtTxt,0,wx.ALIGN_CENTER_VERTICAL)
    565             elemSizer.Add(wx.StaticText(dataDisplay,label='Bond radii'),0,wx.ALIGN_CENTER_VERTICAL)
    566             for rad in generalData['BondRadii']:
    567                 bondRadii = wx.TextCtrl(dataDisplay,value='%.2f'%(rad),style=wx.TE_READONLY)
    568                 bondRadii.SetBackgroundColour(VERY_LIGHT_GREY)
    569                 elemSizer.Add(bondRadii,0,wx.ALIGN_CENTER_VERTICAL)
    570             elemSizer.Add(wx.StaticText(dataDisplay,label='Angle radii'),0,wx.ALIGN_CENTER_VERTICAL)
    571             for rad in generalData['AngleRadii']:
    572                 elemTxt = wx.TextCtrl(dataDisplay,value='%.2f'%(rad),style=wx.TE_READONLY)
    573                 elemTxt.SetBackgroundColour(VERY_LIGHT_GREY)
    574                 elemSizer.Add(elemTxt,0,wx.ALIGN_CENTER_VERTICAL)
    575             elemSizer.Add(wx.StaticText(dataDisplay,label='van der Waals radii'),0,wx.ALIGN_CENTER_VERTICAL)
    576             for rad in generalData['vdWRadii']:
    577                 elemTxt = wx.TextCtrl(dataDisplay,value='%.2f'%(rad),style=wx.TE_READONLY)
    578                 elemTxt.SetBackgroundColour(VERY_LIGHT_GREY)
    579                 elemSizer.Add(elemTxt,0,wx.ALIGN_CENTER_VERTICAL)
    580             elemSizer.Add(wx.StaticText(dataDisplay,label='Default color'),0,wx.ALIGN_CENTER_VERTICAL)
    581             for R,G,B in generalData['Color']:
    582                 colorTxt = wx.TextCtrl(dataDisplay,value='',style=wx.TE_READONLY)
    583                 colorTxt.SetBackgroundColour(wx.Colour(R,G,B))
    584                 elemSizer.Add(colorTxt,0,wx.ALIGN_CENTER_VERTICAL)
    585             mainSizer.Add(elemSizer)
    586            
    587         elif generalData['Type'] == 'Pawley':
     575            return denSizer
     576           
     577        def PawlSizer():
     578                       
     579            def OnPawleyVal(event):
     580                try:
     581                    dmin = float(pawlVal.GetValue())
     582                    if 0.25 <= dmin <= 20.:
     583                        generalData['Pawley dmin'] = dmin
     584                except ValueError:
     585                    pass
     586                pawlVal.SetValue("%.3f"%(generalData['Pawley dmin']))          #reset in case of error
     587           
    588588            pawlSizer = wx.BoxSizer(wx.HORIZONTAL)
    589589            pawlSizer.Add(wx.StaticText(dataDisplay,label=' Pawley dmin: '),0,wx.ALIGN_CENTER_VERTICAL)
     
    592592            pawlVal.Bind(wx.EVT_KILL_FOCUS,OnPawleyVal)
    593593            pawlSizer.Add(pawlVal,0,wx.ALIGN_CENTER_VERTICAL)
    594             mainSizer.Add(pawlSizer)
     594            return pawlSizer
     595           
     596        def MapSizer():
     597           
     598            def OnMapType(event):
     599                Map['MapType'] = mapType.GetValue()
     600               
     601            def OnRefList(event):
     602                Map['RefList'] = refList.GetValue()
     603               
     604            def OnResVal(event):
     605                try:
     606                    res = float(mapRes.GetValue())
     607                    if 0.25 <= res <= 20.:
     608                        Map['Resolution'] = res
     609                except ValueError:
     610                    pass
     611                mapRes.SetValue("%.1f"%(Map['Resolution']))          #reset in case of error
     612           
     613            mapTypes = ['Fobs','Fcalc','delt-F','2*Fo-Fc','Patterson']
     614            refList = data['Histograms'].keys()
     615            if generalData['Type'] == 'Pawley':
     616                 mapTypes = ['Patterson',]
     617                 Map['MapType'] = 'Patterson'
     618            mapSizer = wx.BoxSizer(wx.HORIZONTAL)
     619            mapSizer.Add(wx.StaticText(dataDisplay,label=' Fourier map controls: Map type: '),0,wx.ALIGN_CENTER_VERTICAL)
     620            mapType = wx.ComboBox(dataDisplay,-1,value=Map['MapType'],choices=mapTypes,
     621                style=wx.CB_READONLY|wx.CB_DROPDOWN)
     622            mapType.Bind(wx.EVT_COMBOBOX,OnMapType)
     623            mapSizer.Add(mapType,0,wx.ALIGN_CENTER_VERTICAL)
     624            mapSizer.Add(wx.StaticText(dataDisplay,label=' Reflection set from: '),0,wx.ALIGN_CENTER_VERTICAL)
     625            refList = wx.ComboBox(dataDisplay,-1,value=Map['RefList'],choices=refList,
     626                style=wx.CB_READONLY|wx.CB_DROPDOWN)
     627            refList.Bind(wx.EVT_COMBOBOX,OnRefList)
     628            mapSizer.Add(refList,0,wx.ALIGN_CENTER_VERTICAL)
     629            mapSizer.Add(wx.StaticText(dataDisplay,label=' Resolution: '),0,wx.ALIGN_CENTER_VERTICAL)
     630            mapRes =  wx.TextCtrl(dataDisplay,value='%.1f'%(Map['Resolution']),style=wx.TE_PROCESS_ENTER)
     631            mapRes.Bind(wx.EVT_TEXT_ENTER,OnResVal)       
     632            mapRes.Bind(wx.EVT_KILL_FOCUS,OnResVal)
     633            mapSizer.Add(mapRes,0,wx.ALIGN_CENTER_VERTICAL)
     634            return mapSizer
     635               
     636        General.DestroyChildren()
     637        dataDisplay = wx.Panel(General)
     638        mainSizer = wx.BoxSizer(wx.VERTICAL)
     639        mainSizer.Add((5,5),0)
     640        mainSizer.Add(NameSizer(),0)
     641        mainSizer.Add((5,5),0)       
     642        mainSizer.Add(CellSizer(),0)
     643        mainSizer.Add((5,5),0)
     644       
     645        Indx = {}
     646        if len(generalData['AtomTypes']):
     647            mainSizer.Add(DenSizer())
     648            mainSizer.Add((5,5),0)           
     649            mainSizer.Add(ElemSizer())
     650           
     651        elif generalData['Type'] == 'Pawley':
     652            mainSizer.Add(PawlSizer())
     653           
     654        mainSizer.Add((5,5),0)
     655        mainSizer.Add(MapSizer())
    595656
    596657        dataDisplay.SetSizer(mainSizer)
     
    18981959            pickChoice = ['Atoms','Residues','Chains','Bonds','Torsions','Planes','phi/psi']
    18991960
    1900         def OnZclip(event):
    1901             drawingData['Zclip'] = Zclip.GetValue()
    1902             ZclipTxt.SetLabel('Z clipping: '+'%.2fA'%(drawingData['Zclip']*drawingData['cameraPos']/100.))
    1903             G2plt.PlotStructure(G2frame,data)
    1904            
    1905         def OnCameraPos(event):
    1906             drawingData['cameraPos'] = cameraPos.GetValue()
    1907             cameraPosTxt.SetLabel('Camera Distance: '+'%.2f'%(drawingData['cameraPos']))
    1908             ZclipTxt.SetLabel('Z clipping: '+'%.2fA'%(drawingData['Zclip']*drawingData['cameraPos']/100.))
    1909             G2plt.PlotStructure(G2frame,data)
    1910 
    1911         def OnBackColor(event):
    1912             drawingData['backColor'] = event.GetValue()
    1913             G2plt.PlotStructure(G2frame,data)
    1914 
    1915         def OnBallScale(event):
    1916             drawingData['ballScale'] = ballScale.GetValue()/100.
    1917             ballScaleTxt.SetLabel('Ball scale: '+'%.2f'%(drawingData['ballScale']))
    1918             G2plt.PlotStructure(G2frame,data)
    1919 
    1920         def OnVdWScale(event):
    1921             drawingData['vdwScale'] = vdwScale.GetValue()/100.
    1922             vdwScaleTxt.SetLabel('van der Waals scale: '+'%.2f'%(drawingData['vdwScale']))
    1923             G2plt.PlotStructure(G2frame,data)
    1924 
    1925         def OnEllipseProb(event):
    1926             drawingData['ellipseProb'] = ellipseProb.GetValue()
    1927             ellipseProbTxt.SetLabel('Ellipsoid probability: '+'%d%%'%(drawingData['ellipseProb']))
    1928             G2plt.PlotStructure(G2frame,data)
    1929 
    1930         def OnBondRadius(event):
    1931             drawingData['bondRadius'] = bondRadius.GetValue()/100.
    1932             bondRadiusTxt.SetLabel('Bond radius, A: '+'%.2f'%(drawingData['bondRadius']))
    1933             G2plt.PlotStructure(G2frame,data)
    1934 
    1935         def OnShowABC(event):
    1936             drawingData['showABC'] = showABC.GetValue()
    1937             G2plt.PlotStructure(G2frame,data)
    1938 
    1939         def OnShowUnitCell(event):
    1940             drawingData['unitCellBox'] = unitCellBox.GetValue()
    1941             G2plt.PlotStructure(G2frame,data)
    1942 
    1943         def OnShowHyd(event):
    1944             drawingData['showHydrogen'] = showHydrogen.GetValue()
    1945             FindBondsDraw()
    1946             G2plt.PlotStructure(G2frame,data)
    1947 
    1948         def OnSizeHatoms(event):
    1949             try:
    1950                 value = max(0.1,min(1.2,float(sizeH.GetValue())))
    1951             except ValueError:
    1952                 value = 0.5
    1953             drawingData['sizeH'] = value
    1954             sizeH.SetValue("%.2f"%(value))
    1955             G2plt.PlotStructure(G2frame,data)
    1956            
    1957         def OnRadFactor(event):
    1958             try:
    1959                 value = max(0.1,min(1.2,float(radFactor.GetValue())))
    1960             except ValueError:
    1961                 value = 0.85
    1962             drawingData['radiusFactor'] = value
    1963             radFactor.SetValue("%.2f"%(value))
    1964             FindBondsDraw()
    1965             G2plt.PlotStructure(G2frame,data)
     1961        def SlopSizer():
     1962           
     1963            def OnCameraPos(event):
     1964                drawingData['cameraPos'] = cameraPos.GetValue()
     1965                cameraPosTxt.SetLabel('Camera Distance: '+'%.2f'%(drawingData['cameraPos']))
     1966                ZclipTxt.SetLabel('Z clipping: '+'%.2fA'%(drawingData['Zclip']*drawingData['cameraPos']/100.))
     1967                G2plt.PlotStructure(G2frame,data)
     1968
     1969            def OnZclip(event):
     1970                drawingData['Zclip'] = Zclip.GetValue()
     1971                ZclipTxt.SetLabel('Z clipping: '+'%.2fA'%(drawingData['Zclip']*drawingData['cameraPos']/100.))
     1972                G2plt.PlotStructure(G2frame,data)
     1973               
     1974            def OnVdWScale(event):
     1975                drawingData['vdwScale'] = vdwScale.GetValue()/100.
     1976                vdwScaleTxt.SetLabel('van der Waals scale: '+'%.2f'%(drawingData['vdwScale']))
     1977                G2plt.PlotStructure(G2frame,data)
     1978   
     1979            def OnEllipseProb(event):
     1980                drawingData['ellipseProb'] = ellipseProb.GetValue()
     1981                ellipseProbTxt.SetLabel('Ellipsoid probability: '+'%d%%'%(drawingData['ellipseProb']))
     1982                G2plt.PlotStructure(G2frame,data)
     1983   
     1984            def OnBallScale(event):
     1985                drawingData['ballScale'] = ballScale.GetValue()/100.
     1986                ballScaleTxt.SetLabel('Ball scale: '+'%.2f'%(drawingData['ballScale']))
     1987                G2plt.PlotStructure(G2frame,data)
     1988
     1989            def OnBondRadius(event):
     1990                drawingData['bondRadius'] = bondRadius.GetValue()/100.
     1991                bondRadiusTxt.SetLabel('Bond radius, A: '+'%.2f'%(drawingData['bondRadius']))
     1992                G2plt.PlotStructure(G2frame,data)
     1993           
     1994            slopSizer = wx.BoxSizer(wx.HORIZONTAL)
     1995            slideSizer = wx.FlexGridSizer(6,2)
     1996            slideSizer.AddGrowableCol(1,1)
     1997   
     1998            cameraPosTxt = wx.StaticText(dataDisplay,-1,
     1999                ' Camera Distance: '+'%.2f'%(drawingData['cameraPos']),name='cameraPos')
     2000            slideSizer.Add(cameraPosTxt,0,wx.ALIGN_CENTER_VERTICAL)
     2001            cameraPos = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=drawingData['cameraPos'],name='cameraSlider')
     2002            cameraPos.SetRange(10,500)
     2003            cameraPos.Bind(wx.EVT_SLIDER, OnCameraPos)
     2004            slideSizer.Add(cameraPos,1,wx.EXPAND|wx.RIGHT)
     2005           
     2006            ZclipTxt = wx.StaticText(dataDisplay,-1,' Z clipping: '+'%.2fA'%(drawingData['Zclip']*drawingData['cameraPos']/100.))
     2007            slideSizer.Add(ZclipTxt,0,wx.ALIGN_CENTER_VERTICAL)
     2008            Zclip = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=drawingData['Zclip'])
     2009            Zclip.SetRange(1,99)
     2010            Zclip.Bind(wx.EVT_SLIDER, OnZclip)
     2011            slideSizer.Add(Zclip,1,wx.EXPAND|wx.RIGHT)
     2012           
     2013            vdwScaleTxt = wx.StaticText(dataDisplay,-1,' van der Waals scale: '+'%.2f'%(drawingData['vdwScale']))
     2014            slideSizer.Add(vdwScaleTxt,0,wx.ALIGN_CENTER_VERTICAL)
     2015            vdwScale = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=int(100*drawingData['vdwScale']))
     2016            vdwScale.Bind(wx.EVT_SLIDER, OnVdWScale)
     2017            slideSizer.Add(vdwScale,1,wx.EXPAND|wx.RIGHT)
     2018   
     2019            ellipseProbTxt = wx.StaticText(dataDisplay,-1,' Ellipsoid probability: '+'%d%%'%(drawingData['ellipseProb']))
     2020            slideSizer.Add(ellipseProbTxt,0,wx.ALIGN_CENTER_VERTICAL)
     2021            ellipseProb = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=drawingData['ellipseProb'])
     2022            ellipseProb.SetRange(1,99)
     2023            ellipseProb.Bind(wx.EVT_SLIDER, OnEllipseProb)
     2024            slideSizer.Add(ellipseProb,1,wx.EXPAND|wx.RIGHT)
     2025   
     2026            ballScaleTxt = wx.StaticText(dataDisplay,-1,' Ball scale: '+'%.2f'%(drawingData['ballScale']))
     2027            slideSizer.Add(ballScaleTxt,0,wx.ALIGN_CENTER_VERTICAL)
     2028            ballScale = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=int(100*drawingData['ballScale']))
     2029            ballScale.Bind(wx.EVT_SLIDER, OnBallScale)
     2030            slideSizer.Add(ballScale,1,wx.EXPAND|wx.RIGHT)
     2031   
     2032            bondRadiusTxt = wx.StaticText(dataDisplay,-1,' Bond radius, A: '+'%.2f'%(drawingData['bondRadius']))
     2033            slideSizer.Add(bondRadiusTxt,0,wx.ALIGN_CENTER_VERTICAL)
     2034            bondRadius = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=int(100*drawingData['bondRadius']))
     2035            bondRadius.SetRange(1,25)
     2036            bondRadius.Bind(wx.EVT_SLIDER, OnBondRadius)
     2037            slideSizer.Add(bondRadius,1,wx.EXPAND|wx.RIGHT)
     2038           
     2039            slopSizer.Add(slideSizer,1,wx.EXPAND|wx.RIGHT)
     2040            slopSizer.Add((10,5),0)
     2041            slopSizer.SetMinSize(wx.Size(350,10))
     2042            return slopSizer
     2043           
     2044        def ShowSizer():
     2045           
     2046            def OnBackColor(event):
     2047                drawingData['backColor'] = event.GetValue()
     2048                G2plt.PlotStructure(G2frame,data)
     2049   
     2050            def OnShowABC(event):
     2051                drawingData['showABC'] = showABC.GetValue()
     2052                G2plt.PlotStructure(G2frame,data)
     2053   
     2054            def OnShowUnitCell(event):
     2055                drawingData['unitCellBox'] = unitCellBox.GetValue()
     2056                G2plt.PlotStructure(G2frame,data)
     2057   
     2058            def OnShowHyd(event):
     2059                drawingData['showHydrogen'] = showHydrogen.GetValue()
     2060                FindBondsDraw()
     2061                G2plt.PlotStructure(G2frame,data)
     2062               
     2063            showSizer = wx.FlexGridSizer(5,3,5,0)           
     2064            lineSizer = wx.BoxSizer(wx.HORIZONTAL)
     2065            lineSizer.Add(wx.StaticText(dataDisplay,-1,' Background color:'),0,wx.ALIGN_CENTER_VERTICAL)
     2066            backColor = wcs.ColourSelect(dataDisplay, -1,colour=drawingData['backColor'],size=wx.Size(25,25))
     2067            backColor.Bind(wcs.EVT_COLOURSELECT, OnBackColor)
     2068            lineSizer.Add(backColor,0,wx.ALIGN_CENTER_VERTICAL)
     2069            showSizer.Add(lineSizer,0,)
     2070           
     2071            showSizer.Add(wx.StaticText(dataDisplay,-1,' View Point:  '),0,wx.ALIGN_CENTER_VERTICAL)
     2072            VP = drawingData['viewPoint'][0]
     2073            viewPoint = wx.TextCtrl(dataDisplay,value='%.3f, %.3f, %.3f'%(VP[0],VP[1],VP[2]),
     2074                style=wx.TE_READONLY,size=wx.Size(120,20),name='viewPoint')
     2075            viewPoint.SetBackgroundColour(VERY_LIGHT_GREY)
     2076            showSizer.Add(viewPoint,0,wx.ALIGN_CENTER_VERTICAL)
     2077           
     2078            showABC = wx.CheckBox(dataDisplay,-1,label=' Show test point?')
     2079            showABC.Bind(wx.EVT_CHECKBOX, OnShowABC)
     2080            showABC.SetValue(drawingData['showABC'])
     2081            showSizer.Add(showABC,0,wx.ALIGN_CENTER_VERTICAL)
     2082   
     2083            unitCellBox = wx.CheckBox(dataDisplay,-1,label=' Show unit cell?')
     2084            unitCellBox.Bind(wx.EVT_CHECKBOX, OnShowUnitCell)
     2085            unitCellBox.SetValue(drawingData['unitCellBox'])
     2086            showSizer.Add(unitCellBox,0,wx.ALIGN_CENTER_VERTICAL)
     2087   
     2088            showHydrogen = wx.CheckBox(dataDisplay,-1,label=' Show hydrogens?')
     2089            showHydrogen.Bind(wx.EVT_CHECKBOX, OnShowHyd)
     2090            showHydrogen.SetValue(drawingData['showHydrogen'])
     2091            showSizer.Add(showHydrogen,0,wx.ALIGN_CENTER_VERTICAL)
     2092            return showSizer
     2093           
     2094        def RadSizer():
     2095           
     2096            def OnSizeHatoms(event):
     2097                try:
     2098                    value = max(0.1,min(1.2,float(sizeH.GetValue())))
     2099                except ValueError:
     2100                    value = 0.5
     2101                drawingData['sizeH'] = value
     2102                sizeH.SetValue("%.2f"%(value))
     2103                G2plt.PlotStructure(G2frame,data)
     2104               
     2105            def OnRadFactor(event):
     2106                try:
     2107                    value = max(0.1,min(1.2,float(radFactor.GetValue())))
     2108                except ValueError:
     2109                    value = 0.85
     2110                drawingData['radiusFactor'] = value
     2111                radFactor.SetValue("%.2f"%(value))
     2112                FindBondsDraw()
     2113                G2plt.PlotStructure(G2frame,data)
     2114           
     2115            radSizer = wx.BoxSizer(wx.HORIZONTAL)
     2116            radSizer.Add(wx.StaticText(dataDisplay,-1,' Hydrogen radius, A:  '),0,wx.ALIGN_CENTER_VERTICAL)
     2117            sizeH = wx.TextCtrl(dataDisplay,-1,value='%.2f'%(drawingData['sizeH']),size=wx.Size(60,20),style=wx.TE_PROCESS_ENTER)
     2118            sizeH.Bind(wx.EVT_TEXT_ENTER,OnSizeHatoms)
     2119            sizeH.Bind(wx.EVT_KILL_FOCUS,OnSizeHatoms)
     2120            radSizer.Add(sizeH,0,wx.ALIGN_CENTER_VERTICAL)
     2121   
     2122            radSizer.Add(wx.StaticText(dataDisplay,-1,' Bond search factor:  '),0,wx.ALIGN_CENTER_VERTICAL)
     2123            radFactor = wx.TextCtrl(dataDisplay,value='%.2f'%(drawingData['radiusFactor']),size=wx.Size(60,20),style=wx.TE_PROCESS_ENTER)
     2124            radFactor.Bind(wx.EVT_TEXT_ENTER,OnRadFactor)
     2125            radFactor.Bind(wx.EVT_KILL_FOCUS,OnRadFactor)
     2126            radSizer.Add(radFactor,0,wx.ALIGN_CENTER_VERTICAL)
     2127            return radSizer
    19662128
    19672129        dataDisplay = wx.Panel(drawOptions)
    19682130        mainSizer = wx.BoxSizer(wx.VERTICAL)
    19692131        mainSizer.Add((5,5),0)
    1970         mainSizer.Add(wx.StaticText(dataDisplay,-1,'Drawing controls:'),0,wx.ALIGN_CENTER_VERTICAL)
     2132        mainSizer.Add(wx.StaticText(dataDisplay,-1,' Drawing controls:'),0,wx.ALIGN_CENTER_VERTICAL)
     2133        mainSizer.Add((5,5),0)       
     2134        mainSizer.Add(SlopSizer(),0)
    19712135        mainSizer.Add((5,5),0)
    1972        
    1973         slopSizer = wx.BoxSizer(wx.HORIZONTAL)
    1974         slideSizer = wx.FlexGridSizer(6,2)
    1975         slideSizer.AddGrowableCol(1,1)
    1976 
    1977         cameraPosTxt = wx.StaticText(dataDisplay,-1,
    1978             'Camera Distance: '+'%.2f'%(drawingData['cameraPos']),name='cameraPos')
    1979         slideSizer.Add(cameraPosTxt,0,wx.ALIGN_CENTER_VERTICAL)
    1980         cameraPos = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=drawingData['cameraPos'],name='cameraSlider')
    1981         cameraPos.SetRange(10,500)
    1982         cameraPos.Bind(wx.EVT_SLIDER, OnCameraPos)
    1983         slideSizer.Add(cameraPos,1,wx.EXPAND|wx.RIGHT)
    1984        
    1985         ZclipTxt = wx.StaticText(dataDisplay,-1,'Z clipping: '+'%.2fA'%(drawingData['Zclip']*drawingData['cameraPos']/100.))
    1986         slideSizer.Add(ZclipTxt,0,wx.ALIGN_CENTER_VERTICAL)
    1987         Zclip = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=drawingData['Zclip'])
    1988         Zclip.SetRange(1,99)
    1989         Zclip.Bind(wx.EVT_SLIDER, OnZclip)
    1990         slideSizer.Add(Zclip,1,wx.EXPAND|wx.RIGHT)
    1991        
    1992         vdwScaleTxt = wx.StaticText(dataDisplay,-1,'van der Waals scale: '+'%.2f'%(drawingData['vdwScale']))
    1993         slideSizer.Add(vdwScaleTxt,0,wx.ALIGN_CENTER_VERTICAL)
    1994         vdwScale = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=int(100*drawingData['vdwScale']))
    1995         vdwScale.Bind(wx.EVT_SLIDER, OnVdWScale)
    1996         slideSizer.Add(vdwScale,1,wx.EXPAND|wx.RIGHT)
    1997 
    1998         ellipseProbTxt = wx.StaticText(dataDisplay,-1,'Ellipsoid probability: '+'%d%%'%(drawingData['ellipseProb']))
    1999         slideSizer.Add(ellipseProbTxt,0,wx.ALIGN_CENTER_VERTICAL)
    2000         ellipseProb = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=drawingData['ellipseProb'])
    2001         ellipseProb.SetRange(1,99)
    2002         ellipseProb.Bind(wx.EVT_SLIDER, OnEllipseProb)
    2003         slideSizer.Add(ellipseProb,1,wx.EXPAND|wx.RIGHT)
    2004 
    2005         ballScaleTxt = wx.StaticText(dataDisplay,-1,'Ball scale: '+'%.2f'%(drawingData['ballScale']))
    2006         slideSizer.Add(ballScaleTxt,0,wx.ALIGN_CENTER_VERTICAL)
    2007         ballScale = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=int(100*drawingData['ballScale']))
    2008         ballScale.Bind(wx.EVT_SLIDER, OnBallScale)
    2009         slideSizer.Add(ballScale,1,wx.EXPAND|wx.RIGHT)
    2010 
    2011         bondRadiusTxt = wx.StaticText(dataDisplay,-1,'Bond radius, A: '+'%.2f'%(drawingData['bondRadius']))
    2012         slideSizer.Add(bondRadiusTxt,0,wx.ALIGN_CENTER_VERTICAL)
    2013         bondRadius = wx.Slider(dataDisplay,style=wx.SL_HORIZONTAL,value=int(100*drawingData['bondRadius']))
    2014         bondRadius.SetRange(1,25)
    2015         bondRadius.Bind(wx.EVT_SLIDER, OnBondRadius)
    2016         slideSizer.Add(bondRadius,1,wx.EXPAND|wx.RIGHT)
    2017        
    2018         slopSizer.Add(slideSizer,1,wx.EXPAND|wx.RIGHT)
    2019         slopSizer.Add((10,5),0)
    2020         slopSizer.SetMinSize(wx.Size(300,10))
    2021         mainSizer.Add(slopSizer,0)
     2136        mainSizer.Add(ShowSizer(),0,)
    20222137        mainSizer.Add((5,5),0)
    2023 
    2024         flexSizer = wx.FlexGridSizer(5,2,5,0)
    2025         flexSizer.Add(wx.StaticText(dataDisplay,-1,'View Point:  '),0,wx.ALIGN_CENTER_VERTICAL)
    2026         VP = drawingData['viewPoint'][0]
    2027         viewPoint = wx.TextCtrl(dataDisplay,value='%.3f, %.3f, %.3f'%(VP[0],VP[1],VP[2]),
    2028             style=wx.TE_READONLY,size=wx.Size(120,20),name='viewPoint')
    2029         viewPoint.SetBackgroundColour(VERY_LIGHT_GREY)
    2030         flexSizer.Add(viewPoint,0,wx.ALIGN_CENTER_VERTICAL)
    2031        
    2032         showABC = wx.CheckBox(dataDisplay,-1,label='Show test point?')
    2033         showABC.Bind(wx.EVT_CHECKBOX, OnShowABC)
    2034         showABC.SetValue(drawingData['showABC'])
    2035         flexSizer.Add(showABC,0,wx.ALIGN_CENTER_VERTICAL)
    2036 
    2037         unitCellBox = wx.CheckBox(dataDisplay,-1,label='Show unit cell?')
    2038         unitCellBox.Bind(wx.EVT_CHECKBOX, OnShowUnitCell)
    2039         unitCellBox.SetValue(drawingData['unitCellBox'])
    2040         flexSizer.Add(unitCellBox,0,wx.ALIGN_CENTER_VERTICAL)
    2041 
    2042         showHydrogen = wx.CheckBox(dataDisplay,-1,label='Show hydrogens?')
    2043         showHydrogen.Bind(wx.EVT_CHECKBOX, OnShowHyd)
    2044         showHydrogen.SetValue(drawingData['showHydrogen'])
    2045         flexSizer.Add(showHydrogen,0,wx.ALIGN_CENTER_VERTICAL)
    2046 
    2047         lineSizer = wx.BoxSizer(wx.HORIZONTAL)
    2048         lineSizer.Add(wx.StaticText(dataDisplay,-1,'Background color:'),0,wx.ALIGN_CENTER_VERTICAL)
    2049         backColor = wcs.ColourSelect(dataDisplay, -1,colour=drawingData['backColor'],size=wx.Size(25,25))
    2050         backColor.Bind(wcs.EVT_COLOURSELECT, OnBackColor)
    2051         lineSizer.Add(backColor,0,wx.ALIGN_CENTER_VERTICAL)
    2052         flexSizer.Add(lineSizer,0,)
    2053 
    2054         flexSizer.Add(wx.StaticText(dataDisplay,-1,'Hydrogen radius, A:  '),0,wx.ALIGN_CENTER_VERTICAL)
    2055         sizeH = wx.TextCtrl(dataDisplay,-1,value='%.2f'%(drawingData['sizeH']),style=wx.TE_PROCESS_ENTER)
    2056         sizeH.Bind(wx.EVT_TEXT_ENTER,OnSizeHatoms)
    2057         sizeH.Bind(wx.EVT_KILL_FOCUS,OnSizeHatoms)
    2058         flexSizer.Add(sizeH,0,wx.ALIGN_CENTER_VERTICAL)
    2059 
    2060         flexSizer.Add(wx.StaticText(dataDisplay,-1,'Bond search factor:  '),0,wx.ALIGN_CENTER_VERTICAL)
    2061         radFactor = wx.TextCtrl(dataDisplay,value='%.2f'%(drawingData['radiusFactor']),style=wx.TE_PROCESS_ENTER)
    2062         radFactor.Bind(wx.EVT_TEXT_ENTER,OnRadFactor)
    2063         radFactor.Bind(wx.EVT_KILL_FOCUS,OnRadFactor)
    2064         flexSizer.Add(radFactor,0,wx.ALIGN_CENTER_VERTICAL)
    2065         mainSizer.Add(flexSizer,0,)
     2138        mainSizer.Add(RadSizer(),0,)
    20662139
    20672140        dataDisplay.SetSizer(mainSizer)
     
    30273100            G2frame.PawleyRefl.SetTable(PawleyTable, True)
    30283101            G2frame.PawleyRefl.Bind(wx.EVT_KEY_DOWN, KeyEditPawleyGrid)                 
     3102            for r in range(G2frame.PawleyRefl.GetNumberRows()):
     3103                for c in range(G2frame.PawleyRefl.GetNumberCols()):
     3104                    if c in [5,6]:
     3105                        G2frame.PawleyRefl.SetReadOnly(r,c,isReadOnly=False)
     3106                    else:
     3107                        G2frame.PawleyRefl.SetCellStyle(r,c,VERY_LIGHT_GREY,True)
    30293108            G2frame.PawleyRefl.SetMargins(0,0)
    30303109            G2frame.PawleyRefl.AutoSizeColumns(False)
     
    30963175            FillPawleyReflectionsGrid()
    30973176   
     3177    def OnFourierMaps(event):
     3178        generalData = data['General']
     3179        if not generalData['Map']['MapType']:
     3180            print '**** ERROR - Fourier map not defined'
     3181            return
     3182        print 'Calculate Fourier maps'
     3183        print generalData['Map']
     3184       
    30983185    def OnTextureRefine(event):
     3186        print 'refine texture?'
    30993187        event.Skip()       
    31003188           
    31013189    def OnTextureClear(event):
     3190        print 'clear texture?'
    31023191        event.Skip()
    31033192
     
    31193208            FillAtomsGrid()
    31203209        elif text == 'General':
     3210            G2frame.dataFrame.SetMenuBar(G2frame.dataFrame.DataGeneral)
     3211            G2frame.dataFrame.Bind(wx.EVT_MENU, OnFourierMaps, id=G2gd.wxID_FOURCALC)
    31213212            UpdateGeneral()
    31223213        elif text == 'Data':
     
    31653256    General = wx.Window(G2frame.dataDisplay)
    31663257    G2frame.dataDisplay.AddPage(General,'General')
     3258    G2frame.dataFrame.SetMenuBar(G2frame.dataFrame.DataGeneral)
     3259    G2frame.dataFrame.Bind(wx.EVT_MENU, OnFourierMaps, id=G2gd.wxID_FOURCALC)
    31673260    SetupGeneral()
    31683261    GeneralData = data['General']
     
    31743267        G2frame.PawleyRefl = G2gd.GSGrid(G2frame.dataDisplay)
    31753268        G2frame.dataDisplay.AddPage(G2frame.PawleyRefl,'Pawley reflections')
    3176         Texture = wx.ScrolledWindow(G2frame.dataDisplay)
    3177         G2frame.dataDisplay.AddPage(Texture,'Texture')
     3269#        Texture = wx.ScrolledWindow(G2frame.dataDisplay)
     3270#        G2frame.dataDisplay.AddPage(Texture,'Texture')
    31783271    else:
    31793272        DData = wx.ScrolledWindow(G2frame.dataDisplay)
  • trunk/help/gsasII.html

    r460 r486  
    2525  <o:Author>Von Dreele</o:Author>
    2626  <o:LastAuthor>Von Dreele</o:LastAuthor>
    27   <o:Revision>28</o:Revision>
    28   <o:TotalTime>1786</o:TotalTime>
     27  <o:Revision>40</o:Revision>
     28  <o:TotalTime>2050</o:TotalTime>
    2929  <o:Created>2011-11-28T16:49:00Z</o:Created>
    30   <o:LastSaved>2012-01-31T21:14:00Z</o:LastSaved>
     30  <o:LastSaved>2012-02-17T20:15:00Z</o:LastSaved>
    3131  <o:Pages>6</o:Pages>
    32   <o:Words>3855</o:Words>
    33   <o:Characters>21980</o:Characters>
     32  <o:Words>4349</o:Words>
     33  <o:Characters>24791</o:Characters>
    3434  <o:Company>Argonne National Laboratory</o:Company>
    35   <o:Lines>183</o:Lines>
    36   <o:Paragraphs>51</o:Paragraphs>
    37   <o:CharactersWithSpaces>25784</o:CharactersWithSpaces>
     35  <o:Lines>206</o:Lines>
     36  <o:Paragraphs>58</o:Paragraphs>
     37  <o:CharactersWithSpaces>29082</o:CharactersWithSpaces>
    3838  <o:Version>12.00</o:Version>
    3939 </o:DocumentProperties>
    4040</xml><![endif]-->
    41 <link rel=dataStoreItem href="gsasII_files/item0006.xml"
    42 target="gsasII_files/props0007.xml">
     41<link rel=dataStoreItem href="gsasII_files/item0008.xml"
     42target="gsasII_files/props0009.xml">
    4343<link rel=themeData href="gsasII_files/themedata.thmx">
    4444<link rel=colorSchemeMapping href="gsasII_files/colorschememapping.xml">
     
    429429        font-weight:bold;}
    430430h4
    431         {mso-style-noshow:yes;
    432         mso-style-priority:9;
     431        {mso-style-priority:9;
    433432        mso-style-qformat:yes;
    434433        mso-style-link:"Heading 4 Char";
     
    457456        font-style:italic;}
    458457h5
    459         {mso-style-noshow:yes;
    460         mso-style-priority:9;
     458        {mso-style-priority:9;
    461459        mso-style-qformat:yes;
    462460        mso-style-link:"Heading 5 Char";
     
    474472        font-weight:bold;}
    475473a:link, span.MsoHyperlink
    476         {mso-style-noshow:yes;
    477         mso-style-priority:99;
     474        {mso-style-priority:99;
    478475        color:blue;
    479476        text-decoration:underline;
     
    485482        text-decoration:underline;
    486483        text-underline:single;}
     484p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
     485        {mso-style-noshow:yes;
     486        mso-style-priority:99;
     487        mso-style-link:"Document Map Char";
     488        margin:0in;
     489        margin-bottom:.0001pt;
     490        mso-pagination:widow-orphan;
     491        font-size:8.0pt;
     492        font-family:"Tahoma","sans-serif";
     493        mso-fareast-font-family:"Times New Roman";
     494        mso-fareast-theme-font:minor-fareast;}
    487495p
    488496        {mso-style-noshow:yes;
     
    669677span.Heading4Char
    670678        {mso-style-name:"Heading 4 Char";
    671         mso-style-noshow:yes;
    672679        mso-style-priority:9;
    673680        mso-style-unhide:no;
     
    691698span.Heading5Char
    692699        {mso-style-name:"Heading 5 Char";
    693         mso-style-noshow:yes;
    694700        mso-style-priority:9;
    695701        mso-style-unhide:no;
     
    736742        mso-hansi-font-family:Tahoma;
    737743        mso-bidi-font-family:Tahoma;}
     744span.DocumentMapChar
     745        {mso-style-name:"Document Map Char";
     746        mso-style-noshow:yes;
     747        mso-style-priority:99;
     748        mso-style-unhide:no;
     749        mso-style-locked:yes;
     750        mso-style-link:"Document Map";
     751        mso-ansi-font-size:8.0pt;
     752        mso-bidi-font-size:8.0pt;
     753        font-family:"Tahoma","sans-serif";
     754        mso-ascii-font-family:Tahoma;
     755        mso-fareast-font-family:"Times New Roman";
     756        mso-fareast-theme-font:minor-fareast;
     757        mso-hansi-font-family:Tahoma;
     758        mso-bidi-font-family:Tahoma;}
    738759span.SpellE
    739760        {mso-style-name:"";
     
    758779 /* List Definitions */
    759780 @list l0
     781        {mso-list-id:30500769;
     782        mso-list-type:hybrid;
     783        mso-list-template-ids:833496520 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     784@list l0:level1
     785        {mso-level-number-format:alpha-lower;
     786        mso-level-tab-stop:none;
     787        mso-level-number-position:left;
     788        text-indent:-.25in;
     789        mso-ansi-font-weight:normal;}
     790@list l1
    760791        {mso-list-id:203979460;
    761792        mso-list-template-ids:88359672;}
    762 @list l0:level1
     793@list l1:level1
    763794        {mso-level-number-format:bullet;
    764795        mso-level-text:\F0B7;
     
    768799        mso-ansi-font-size:10.0pt;
    769800        font-family:Symbol;}
    770 @list l0:level2
     801@list l1:level2
    771802        {mso-level-tab-stop:1.0in;
    772803        mso-level-number-position:left;
    773804        text-indent:-.25in;}
    774 @list l0:level3
     805@list l1:level3
    775806        {mso-level-tab-stop:1.5in;
    776807        mso-level-number-position:left;
    777808        text-indent:-.25in;}
    778 @list l0:level4
     809@list l1:level4
    779810        {mso-level-tab-stop:2.0in;
    780811        mso-level-number-position:left;
    781812        text-indent:-.25in;}
    782 @list l0:level5
     813@list l1:level5
    783814        {mso-level-tab-stop:2.5in;
    784815        mso-level-number-position:left;
    785816        text-indent:-.25in;}
    786 @list l0:level6
     817@list l1:level6
    787818        {mso-level-tab-stop:3.0in;
    788819        mso-level-number-position:left;
    789820        text-indent:-.25in;}
    790 @list l0:level7
     821@list l1:level7
    791822        {mso-level-tab-stop:3.5in;
    792823        mso-level-number-position:left;
    793824        text-indent:-.25in;}
    794 @list l0:level8
     825@list l1:level8
    795826        {mso-level-tab-stop:4.0in;
    796827        mso-level-number-position:left;
    797828        text-indent:-.25in;}
    798 @list l0:level9
     829@list l1:level9
    799830        {mso-level-tab-stop:4.5in;
    800831        mso-level-number-position:left;
    801832        text-indent:-.25in;}
    802 @list l1
     833@list l2
     834        {mso-list-id:268514595;
     835        mso-list-type:hybrid;
     836        mso-list-template-ids:-1814001090 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     837@list l2:level1
     838        {mso-level-number-format:alpha-lower;
     839        mso-level-tab-stop:none;
     840        mso-level-number-position:left;
     841        margin-left:1.0in;
     842        text-indent:-.25in;
     843        mso-ansi-font-weight:normal;}
     844@list l2:level2
     845        {mso-level-tab-stop:1.0in;
     846        mso-level-number-position:left;
     847        text-indent:-.25in;}
     848@list l2:level3
     849        {mso-level-tab-stop:112.5pt;
     850        mso-level-number-position:left;
     851        margin-left:112.5pt;
     852        text-indent:-.25in;}
     853@list l2:level4
     854        {mso-level-tab-stop:2.0in;
     855        mso-level-number-position:left;
     856        text-indent:-.25in;}
     857@list l2:level5
     858        {mso-level-tab-stop:2.5in;
     859        mso-level-number-position:left;
     860        text-indent:-.25in;}
     861@list l2:level6
     862        {mso-level-tab-stop:3.0in;
     863        mso-level-number-position:left;
     864        text-indent:-.25in;}
     865@list l2:level7
     866        {mso-level-tab-stop:3.5in;
     867        mso-level-number-position:left;
     868        text-indent:-.25in;}
     869@list l2:level8
     870        {mso-level-tab-stop:4.0in;
     871        mso-level-number-position:left;
     872        text-indent:-.25in;}
     873@list l2:level9
     874        {mso-level-tab-stop:4.5in;
     875        mso-level-number-position:left;
     876        text-indent:-.25in;}
     877@list l3
    803878        {mso-list-id:359092647;
    804879        mso-list-type:hybrid;
    805880        mso-list-template-ids:1777530928 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    806 @list l1:level1
     881@list l3:level1
    807882        {mso-level-tab-stop:none;
    808883        mso-level-number-position:left;
    809884        text-indent:-.25in;}
    810 @list l1:level2
     885@list l3:level2
    811886        {mso-level-tab-stop:1.0in;
    812887        mso-level-number-position:left;
    813888        text-indent:-.25in;}
    814 @list l1:level3
     889@list l3:level3
    815890        {mso-level-tab-stop:1.5in;
    816891        mso-level-number-position:left;
    817892        text-indent:-.25in;}
    818 @list l1:level4
     893@list l3:level4
    819894        {mso-level-tab-stop:2.0in;
    820895        mso-level-number-position:left;
    821896        text-indent:-.25in;}
    822 @list l1:level5
     897@list l3:level5
    823898        {mso-level-tab-stop:2.5in;
    824899        mso-level-number-position:left;
    825900        text-indent:-.25in;}
    826 @list l1:level6
     901@list l3:level6
    827902        {mso-level-tab-stop:3.0in;
    828903        mso-level-number-position:left;
    829904        text-indent:-.25in;}
    830 @list l1:level7
     905@list l3:level7
    831906        {mso-level-tab-stop:3.5in;
    832907        mso-level-number-position:left;
    833908        text-indent:-.25in;}
    834 @list l1:level8
     909@list l3:level8
    835910        {mso-level-tab-stop:4.0in;
    836911        mso-level-number-position:left;
    837912        text-indent:-.25in;}
    838 @list l1:level9
     913@list l3:level9
    839914        {mso-level-tab-stop:4.5in;
    840915        mso-level-number-position:left;
    841916        text-indent:-.25in;}
    842 @list l2
    843         {mso-list-id:374699300;
     917@list l4
     918        {mso-list-id:385565967;
    844919        mso-list-type:hybrid;
    845         mso-list-template-ids:1881540156 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    846 @list l2:level1
     920        mso-list-template-ids:1718093518 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     921@list l4:level1
     922        {mso-level-number-format:alpha-lower;
     923        mso-level-tab-stop:none;
     924        mso-level-number-position:left;
     925        margin-left:1.0in;
     926        text-indent:-.25in;
     927        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
    847965        {mso-level-tab-stop:none;
    848966        mso-level-number-position:left;
    849967        text-indent:-.25in;}
    850 @list l3
     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
    8511001        {mso-list-id:656106218;
    8521002        mso-list-type:hybrid;
    8531003        mso-list-template-ids:185874704 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    854 @list l3:level1
     1004@list l6:level1
    8551005        {mso-level-tab-stop:none;
    8561006        mso-level-number-position:left;
    8571007        text-indent:-.25in;}
    858 @list l3:level2
     1008@list l6:level2
    8591009        {mso-level-tab-stop:1.0in;
    8601010        mso-level-number-position:left;
    8611011        text-indent:-.25in;}
    862 @list l3:level3
     1012@list l6:level3
    8631013        {mso-level-tab-stop:1.5in;
    8641014        mso-level-number-position:left;
    8651015        text-indent:-.25in;}
    866 @list l3:level4
     1016@list l6:level4
    8671017        {mso-level-tab-stop:2.0in;
    8681018        mso-level-number-position:left;
    8691019        text-indent:-.25in;}
    870 @list l3:level5
     1020@list l6:level5
    8711021        {mso-level-tab-stop:2.5in;
    8721022        mso-level-number-position:left;
    8731023        text-indent:-.25in;}
    874 @list l3:level6
     1024@list l6:level6
    8751025        {mso-level-tab-stop:3.0in;
    8761026        mso-level-number-position:left;
    8771027        text-indent:-.25in;}
    878 @list l3:level7
     1028@list l6:level7
    8791029        {mso-level-tab-stop:3.5in;
    8801030        mso-level-number-position:left;
    8811031        text-indent:-.25in;}
    882 @list l3:level8
     1032@list l6:level8
    8831033        {mso-level-tab-stop:4.0in;
    8841034        mso-level-number-position:left;
    8851035        text-indent:-.25in;}
    886 @list l3:level9
     1036@list l6:level9
    8871037        {mso-level-tab-stop:4.5in;
    8881038        mso-level-number-position:left;
    8891039        text-indent:-.25in;}
    890 @list l4
     1040@list l7
    8911041        {mso-list-id:734669460;
    8921042        mso-list-type:hybrid;
    8931043        mso-list-template-ids:1215081880 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    894 @list l4:level1
     1044@list l7:level1
    8951045        {mso-level-tab-stop:none;
    8961046        mso-level-number-position:left;
    8971047        text-indent:-.25in;}
    898 @list l4:level2
     1048@list l7:level2
    8991049        {mso-level-tab-stop:1.0in;
    9001050        mso-level-number-position:left;
    9011051        text-indent:-.25in;}
    902 @list l4:level3
     1052@list l7:level3
    9031053        {mso-level-tab-stop:1.5in;
    9041054        mso-level-number-position:left;
    9051055        text-indent:-.25in;}
    906 @list l4:level4
     1056@list l7:level4
    9071057        {mso-level-tab-stop:2.0in;
    9081058        mso-level-number-position:left;
    9091059        text-indent:-.25in;}
    910 @list l4:level5
     1060@list l7:level5
    9111061        {mso-level-tab-stop:2.5in;
    9121062        mso-level-number-position:left;
    9131063        text-indent:-.25in;}
    914 @list l4:level6
     1064@list l7:level6
    9151065        {mso-level-tab-stop:3.0in;
    9161066        mso-level-number-position:left;
    9171067        text-indent:-.25in;}
    918 @list l4:level7
     1068@list l7:level7
    9191069        {mso-level-tab-stop:3.5in;
    9201070        mso-level-number-position:left;
    9211071        text-indent:-.25in;}
    922 @list l4:level8
     1072@list l7:level8
    9231073        {mso-level-tab-stop:4.0in;
    9241074        mso-level-number-position:left;
    9251075        text-indent:-.25in;}
    926 @list l4:level9
     1076@list l7:level9
    9271077        {mso-level-tab-stop:4.5in;
    9281078        mso-level-number-position:left;
    9291079        text-indent:-.25in;}
    930 @list l5
     1080@list l8
    9311081        {mso-list-id:919948450;
    9321082        mso-list-type:hybrid;
    933         mso-list-template-ids:-1587136908 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    934 @list l5:level1
     1083        mso-list-template-ids:-1980985146 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1084@list l8:level1
    9351085        {mso-level-tab-stop:none;
    9361086        mso-level-number-position:left;
    9371087        text-indent:-.25in;}
    938 @list l5:level2
     1088@list l8:level2
    9391089        {mso-level-tab-stop:1.0in;
    9401090        mso-level-number-position:left;
    9411091        text-indent:-.25in;}
    942 @list l5:level3
     1092@list l8:level3
    9431093        {mso-level-tab-stop:1.5in;
    9441094        mso-level-number-position:left;
    9451095        text-indent:-.25in;}
    946 @list l5:level4
     1096@list l8:level4
    9471097        {mso-level-tab-stop:2.0in;
    9481098        mso-level-number-position:left;
    9491099        text-indent:-.25in;}
    950 @list l5:level5
     1100@list l8:level5
    9511101        {mso-level-tab-stop:2.5in;
    9521102        mso-level-number-position:left;
    9531103        text-indent:-.25in;}
    954 @list l5:level6
     1104@list l8:level6
    9551105        {mso-level-tab-stop:3.0in;
    9561106        mso-level-number-position:left;
    9571107        text-indent:-.25in;}
    958 @list l5:level7
     1108@list l8:level7
    9591109        {mso-level-tab-stop:3.5in;
    9601110        mso-level-number-position:left;
    9611111        text-indent:-.25in;}
    962 @list l5:level8
     1112@list l8:level8
    9631113        {mso-level-tab-stop:4.0in;
    9641114        mso-level-number-position:left;
    9651115        text-indent:-.25in;}
    966 @list l5:level9
     1116@list l8:level9
    9671117        {mso-level-tab-stop:4.5in;
    9681118        mso-level-number-position:left;
    9691119        text-indent:-.25in;}
    970 @list l6
     1120@list l9
    9711121        {mso-list-id:1035230400;
    9721122        mso-list-type:hybrid;
    973         mso-list-template-ids:-191352120 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    974 @list l6:level1
     1123        mso-list-template-ids:-2012591744 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1124@list l9:level1
    9751125        {mso-level-tab-stop:none;
    9761126        mso-level-number-position:left;
    9771127        text-indent:-.25in;}
    978 @list l6:level2
     1128@list l9:level2
    9791129        {mso-level-number-format:alpha-lower;
    9801130        mso-level-tab-stop:none;
    9811131        mso-level-number-position:left;
    9821132        text-indent:-.25in;}
    983 @list l6:level3
     1133@list l9:level3
    9841134        {mso-level-tab-stop:1.5in;
    9851135        mso-level-number-position:left;
    9861136        text-indent:-.25in;}
    987 @list l6:level4
     1137@list l9:level4
    9881138        {mso-level-tab-stop:2.0in;
    9891139        mso-level-number-position:left;
    9901140        text-indent:-.25in;}
    991 @list l6:level5
     1141@list l9:level5
    9921142        {mso-level-tab-stop:2.5in;
    9931143        mso-level-number-position:left;
    9941144        text-indent:-.25in;}
    995 @list l6:level6
     1145@list l9:level6
    9961146        {mso-level-tab-stop:3.0in;
    9971147        mso-level-number-position:left;
    9981148        text-indent:-.25in;}
    999 @list l6:level7
     1149@list l9:level7
    10001150        {mso-level-tab-stop:3.5in;
    10011151        mso-level-number-position:left;
    10021152        text-indent:-.25in;}
    1003 @list l6:level8
     1153@list l9:level8
    10041154        {mso-level-tab-stop:4.0in;
    10051155        mso-level-number-position:left;
    10061156        text-indent:-.25in;}
    1007 @list l6:level9
     1157@list l9:level9
    10081158        {mso-level-tab-stop:4.5in;
    10091159        mso-level-number-position:left;
    10101160        text-indent:-.25in;}
    1011 @list l7
    1012         {mso-list-id:1092893336;
     1161@list l10
     1162        {mso-list-id:1074664733;
    10131163        mso-list-type:hybrid;
    1014         mso-list-template-ids:678328898 1814840374 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1015 @list l7:level1
     1164        mso-list-template-ids:2033622918 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1165@list l10:level1
    10161166        {mso-level-number-format:alpha-lower;
    10171167        mso-level-tab-stop:none;
    10181168        mso-level-number-position:left;
    10191169        margin-left:1.0in;
    1020         text-indent:-.25in;}
    1021 @list l8
    1022         {mso-list-id:1115830170;
    1023         mso-list-type:hybrid;
    1024         mso-list-template-ids:1445361610 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1025 @list l8:level1
    1026         {mso-level-tab-stop:none;
    1027         mso-level-number-position:left;
    1028         text-indent:-.25in;}
    1029 @list l8:level2
    1030         {mso-level-tab-stop:1.0in;
    1031         mso-level-number-position:left;
    1032         text-indent:-.25in;}
    1033 @list l8:level3
    1034         {mso-level-tab-stop:1.5in;
    1035         mso-level-number-position:left;
    1036         text-indent:-.25in;}
    1037 @list l8:level4
    1038         {mso-level-tab-stop:2.0in;
    1039         mso-level-number-position:left;
    1040         text-indent:-.25in;}
    1041 @list l8:level5
    1042         {mso-level-tab-stop:2.5in;
    1043         mso-level-number-position:left;
    1044         text-indent:-.25in;}
    1045 @list l8:level6
    1046         {mso-level-tab-stop:3.0in;
    1047         mso-level-number-position:left;
    1048         text-indent:-.25in;}
    1049 @list l8:level7
    1050         {mso-level-tab-stop:3.5in;
    1051         mso-level-number-position:left;
    1052         text-indent:-.25in;}
    1053 @list l8:level8
    1054         {mso-level-tab-stop:4.0in;
    1055         mso-level-number-position:left;
    1056         text-indent:-.25in;}
    1057 @list l8:level9
    1058         {mso-level-tab-stop:4.5in;
    1059         mso-level-number-position:left;
    1060         text-indent:-.25in;}
    1061 @list l9
     1170        text-indent:-.25in;
     1171        mso-ansi-font-weight:normal;}
     1172@list l10:level2
     1173        {mso-level-number-format:alpha-lower;
     1174        mso-level-tab-stop:none;
     1175        mso-level-number-position:left;
     1176        text-indent:-.25in;}
     1177@list l11
    10621178        {mso-list-id:1162892763;
    10631179        mso-list-type:hybrid;
    10641180        mso-list-template-ids:2091276960 -1984140816 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1065 @list l9:level1
     1181@list l11:level1
    10661182        {mso-level-number-format:alpha-lower;
    10671183        mso-level-tab-stop:none;
     
    10691185        margin-left:1.0in;
    10701186        text-indent:-.25in;}
    1071 @list l10
     1187@list l11:level2
     1188        {mso-level-tab-stop:1.0in;
     1189        mso-level-number-position:left;
     1190        text-indent:-.25in;}
     1191@list l11:level3
     1192        {mso-level-tab-stop:1.5in;
     1193        mso-level-number-position:left;
     1194        text-indent:-.25in;}
     1195@list l11:level4
     1196        {mso-level-tab-stop:2.0in;
     1197        mso-level-number-position:left;
     1198        text-indent:-.25in;}
     1199@list l11:level5
     1200        {mso-level-tab-stop:2.5in;
     1201        mso-level-number-position:left;
     1202        text-indent:-.25in;}
     1203@list l11:level6
     1204        {mso-level-tab-stop:3.0in;
     1205        mso-level-number-position:left;
     1206        text-indent:-.25in;}
     1207@list l11:level7
     1208        {mso-level-tab-stop:3.5in;
     1209        mso-level-number-position:left;
     1210        text-indent:-.25in;}
     1211@list l11:level8
     1212        {mso-level-tab-stop:4.0in;
     1213        mso-level-number-position:left;
     1214        text-indent:-.25in;}
     1215@list l11:level9
     1216        {mso-level-tab-stop:4.5in;
     1217        mso-level-number-position:left;
     1218        text-indent:-.25in;}
     1219@list l12
    10721220        {mso-list-id:1323200535;
    10731221        mso-list-type:hybrid;
    10741222        mso-list-template-ids:-720724778 859726762 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1075 @list l10:level1
     1223@list l12:level1
    10761224        {mso-level-number-format:alpha-lower;
    10771225        mso-level-tab-stop:none;
     
    10791227        margin-left:1.0in;
    10801228        text-indent:-.25in;}
    1081 @list l11
     1229@list l12:level2
     1230        {mso-level-tab-stop:1.0in;
     1231        mso-level-number-position:left;
     1232        text-indent:-.25in;}
     1233@list l12:level3
     1234        {mso-level-tab-stop:1.5in;
     1235        mso-level-number-position:left;
     1236        text-indent:-.25in;}
     1237@list l12:level4
     1238        {mso-level-tab-stop:2.0in;
     1239        mso-level-number-position:left;
     1240        text-indent:-.25in;}
     1241@list l12:level5
     1242        {mso-level-tab-stop:2.5in;
     1243        mso-level-number-position:left;
     1244        text-indent:-.25in;}
     1245@list l12:level6
     1246        {mso-level-tab-stop:3.0in;
     1247        mso-level-number-position:left;
     1248        text-indent:-.25in;}
     1249@list l12:level7
     1250        {mso-level-tab-stop:3.5in;
     1251        mso-level-number-position:left;
     1252        text-indent:-.25in;}
     1253@list l12:level8
     1254        {mso-level-tab-stop:4.0in;
     1255        mso-level-number-position:left;
     1256        text-indent:-.25in;}
     1257@list l12:level9
     1258        {mso-level-tab-stop:4.5in;
     1259        mso-level-number-position:left;
     1260        text-indent:-.25in;}
     1261@list l13
    10821262        {mso-list-id:1326516832;
    10831263        mso-list-type:hybrid;
    10841264        mso-list-template-ids:1433942448 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1085 @list l11:level1
     1265@list l13:level1
    10861266        {mso-level-tab-stop:none;
    10871267        mso-level-number-position:left;
    10881268        text-indent:-.25in;}
    1089 @list l11:level2
     1269@list l13:level2
    10901270        {mso-level-tab-stop:1.0in;
    10911271        mso-level-number-position:left;
    10921272        text-indent:-.25in;}
    1093 @list l11:level3
     1273@list l13:level3
    10941274        {mso-level-tab-stop:1.5in;
    10951275        mso-level-number-position:left;
    10961276        text-indent:-.25in;}
    1097 @list l11:level4
     1277@list l13:level4
    10981278        {mso-level-tab-stop:2.0in;
    10991279        mso-level-number-position:left;
    11001280        text-indent:-.25in;}
    1101 @list l11:level5
     1281@list l13:level5
    11021282        {mso-level-tab-stop:2.5in;
    11031283        mso-level-number-position:left;
    11041284        text-indent:-.25in;}
    1105 @list l11:level6
     1285@list l13:level6
    11061286        {mso-level-tab-stop:3.0in;
    11071287        mso-level-number-position:left;
    11081288        text-indent:-.25in;}
    1109 @list l11:level7
     1289@list l13:level7
    11101290        {mso-level-tab-stop:3.5in;
    11111291        mso-level-number-position:left;
    11121292        text-indent:-.25in;}
    1113 @list l11:level8
     1293@list l13:level8
    11141294        {mso-level-tab-stop:4.0in;
    11151295        mso-level-number-position:left;
    11161296        text-indent:-.25in;}
    1117 @list l11:level9
     1297@list l13:level9
    11181298        {mso-level-tab-stop:4.5in;
    11191299        mso-level-number-position:left;
    11201300        text-indent:-.25in;}
    1121 @list l12
     1301@list l14
     1302        {mso-list-id:1399133343;
     1303        mso-list-type:hybrid;
     1304        mso-list-template-ids:-1609646662 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1305@list l14:level1
     1306        {mso-level-tab-stop:none;
     1307        mso-level-number-position:left;
     1308        text-indent:-.25in;}
     1309@list l15
    11221310        {mso-list-id:1453328047;
    11231311        mso-list-type:hybrid;
    11241312        mso-list-template-ids:768896778 -756651182 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1125 @list l12:level1
     1313@list l15:level1
    11261314        {mso-level-number-format:alpha-lower;
    11271315        mso-level-tab-stop:none;
     
    11301318        text-indent:-.25in;
    11311319        mso-ansi-font-weight:normal;}
    1132 @list l13
     1320@list l15:level2
     1321        {mso-level-tab-stop:1.0in;
     1322        mso-level-number-position:left;
     1323        text-indent:-.25in;}
     1324@list l15:level3
     1325        {mso-level-tab-stop:1.5in;
     1326        mso-level-number-position:left;
     1327        text-indent:-.25in;}
     1328@list l15:level4
     1329        {mso-level-tab-stop:2.0in;
     1330        mso-level-number-position:left;
     1331        text-indent:-.25in;}
     1332@list l15:level5
     1333        {mso-level-tab-stop:2.5in;
     1334        mso-level-number-position:left;
     1335        text-indent:-.25in;}
     1336@list l15:level6
     1337        {mso-level-tab-stop:3.0in;
     1338        mso-level-number-position:left;
     1339        text-indent:-.25in;}
     1340@list l15:level7
     1341        {mso-level-tab-stop:3.5in;
     1342        mso-level-number-position:left;
     1343        text-indent:-.25in;}
     1344@list l15:level8
     1345        {mso-level-tab-stop:4.0in;
     1346        mso-level-number-position:left;
     1347        text-indent:-.25in;}
     1348@list l15:level9
     1349        {mso-level-tab-stop:4.5in;
     1350        mso-level-number-position:left;
     1351        text-indent:-.25in;}
     1352@list l16
    11331353        {mso-list-id:1602683002;
    11341354        mso-list-type:hybrid;
    11351355        mso-list-template-ids:120980256 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1136 @list l13:level1
     1356@list l16:level1
    11371357        {mso-level-tab-stop:none;
    11381358        mso-level-number-position:left;
    11391359        text-indent:-.25in;}
    1140 @list l13:level2
     1360@list l16:level2
    11411361        {mso-level-number-format:alpha-lower;
    11421362        mso-level-tab-stop:none;
    11431363        mso-level-number-position:left;
    11441364        text-indent:-.25in;}
    1145 @list l13:level3
     1365@list l16:level3
    11461366        {mso-level-tab-stop:1.5in;
    11471367        mso-level-number-position:left;
    11481368        text-indent:-.25in;}
    1149 @list l13:level4
     1369@list l16:level4
    11501370        {mso-level-tab-stop:2.0in;
    11511371        mso-level-number-position:left;
    11521372        text-indent:-.25in;}
    1153 @list l13:level5
     1373@list l16:level5
    11541374        {mso-level-tab-stop:2.5in;
    11551375        mso-level-number-position:left;
    11561376        text-indent:-.25in;}
    1157 @list l13:level6
     1377@list l16:level6
    11581378        {mso-level-tab-stop:3.0in;
    11591379        mso-level-number-position:left;
    11601380        text-indent:-.25in;}
    1161 @list l13:level7
     1381@list l16:level7
    11621382        {mso-level-tab-stop:3.5in;
    11631383        mso-level-number-position:left;
    11641384        text-indent:-.25in;}
    1165 @list l13:level8
     1385@list l16:level8
    11661386        {mso-level-tab-stop:4.0in;
    11671387        mso-level-number-position:left;
    11681388        text-indent:-.25in;}
    1169 @list l13:level9
     1389@list l16:level9
    11701390        {mso-level-tab-stop:4.5in;
    11711391        mso-level-number-position:left;
    11721392        text-indent:-.25in;}
    1173 @list l14
     1393@list l17
    11741394        {mso-list-id:1669404025;
    11751395        mso-list-type:hybrid;
    1176         mso-list-template-ids:-879317700 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1177 @list l14:level1
     1396        mso-list-template-ids:-1814001090 1141245230 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1397@list l17:level1
    11781398        {mso-level-number-format:alpha-lower;
    11791399        mso-level-tab-stop:none;
     
    11821402        text-indent:-.25in;
    11831403        mso-ansi-font-weight:normal;}
    1184 @list l15
    1185         {mso-list-id:1988123269;
     1404@list l17:level2
     1405        {mso-level-tab-stop:1.0in;
     1406        mso-level-number-position:left;
     1407        text-indent:-.25in;}
     1408@list l17:level3
     1409        {mso-level-tab-stop:112.5pt;
     1410        mso-level-number-position:left;
     1411        margin-left:112.5pt;
     1412        text-indent:-.25in;}
     1413@list l17:level4
     1414        {mso-level-tab-stop:2.0in;
     1415        mso-level-number-position:left;
     1416        text-indent:-.25in;}
     1417@list l17:level5
     1418        {mso-level-tab-stop:2.5in;
     1419        mso-level-number-position:left;
     1420        text-indent:-.25in;}
     1421@list l17:level6
     1422        {mso-level-tab-stop:3.0in;
     1423        mso-level-number-position:left;
     1424        text-indent:-.25in;}
     1425@list l17:level7
     1426        {mso-level-tab-stop:3.5in;
     1427        mso-level-number-position:left;
     1428        text-indent:-.25in;}
     1429@list l17:level8
     1430        {mso-level-tab-stop:4.0in;
     1431        mso-level-number-position:left;
     1432        text-indent:-.25in;}
     1433@list l17:level9
     1434        {mso-level-tab-stop:4.5in;
     1435        mso-level-number-position:left;
     1436        text-indent:-.25in;}
     1437@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
     1516        {mso-list-id:2096583681;
    11861517        mso-list-type:hybrid;
    1187         mso-list-template-ids:176320334 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1188 @list l15:level1
     1518        mso-list-template-ids:-393712734 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
     1519@list l20:level1
    11891520        {mso-level-tab-stop:none;
    1190         mso-level-number-position:left;
    1191         text-indent:-.25in;}
    1192 @list l15:level2
    1193         {mso-level-tab-stop:1.0in;
    1194         mso-level-number-position:left;
    1195         text-indent:-.25in;}
    1196 @list l15:level3
    1197         {mso-level-tab-stop:1.5in;
    1198         mso-level-number-position:left;
    1199         text-indent:-.25in;}
    1200 @list l15:level4
    1201         {mso-level-tab-stop:2.0in;
    1202         mso-level-number-position:left;
    1203         text-indent:-.25in;}
    1204 @list l15:level5
    1205         {mso-level-tab-stop:2.5in;
    1206         mso-level-number-position:left;
    1207         text-indent:-.25in;}
    1208 @list l15:level6
    1209         {mso-level-tab-stop:3.0in;
    1210         mso-level-number-position:left;
    1211         text-indent:-.25in;}
    1212 @list l15:level7
    1213         {mso-level-tab-stop:3.5in;
    1214         mso-level-number-position:left;
    1215         text-indent:-.25in;}
    1216 @list l15:level8
    1217         {mso-level-tab-stop:4.0in;
    1218         mso-level-number-position:left;
    1219         text-indent:-.25in;}
    1220 @list l15:level9
    1221         {mso-level-tab-stop:4.5in;
    1222         mso-level-number-position:left;
    1223         text-indent:-.25in;}
    1224 @list l16
    1225         {mso-list-id:2029942403;
    1226         mso-list-type:hybrid;
    1227         mso-list-template-ids:-1051437922 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
    1228 @list l16:level1
    1229         {mso-level-tab-stop:none;
    1230         mso-level-number-position:left;
    1231         text-indent:-.25in;}
    1232 @list l16:level2
    1233         {mso-level-tab-stop:1.0in;
    1234         mso-level-number-position:left;
    1235         text-indent:-.25in;}
    1236 @list l16:level3
    1237         {mso-level-tab-stop:1.5in;
    1238         mso-level-number-position:left;
    1239         text-indent:-.25in;}
    1240 @list l16:level4
    1241         {mso-level-tab-stop:2.0in;
    1242         mso-level-number-position:left;
    1243         text-indent:-.25in;}
    1244 @list l16:level5
    1245         {mso-level-tab-stop:2.5in;
    1246         mso-level-number-position:left;
    1247         text-indent:-.25in;}
    1248 @list l16:level6
    1249         {mso-level-tab-stop:3.0in;
    1250         mso-level-number-position:left;
    1251         text-indent:-.25in;}
    1252 @list l16:level7
    1253         {mso-level-tab-stop:3.5in;
    1254         mso-level-number-position:left;
    1255         text-indent:-.25in;}
    1256 @list l16:level8
    1257         {mso-level-tab-stop:4.0in;
    1258         mso-level-number-position:left;
    1259         text-indent:-.25in;}
    1260 @list l16:level9
    1261         {mso-level-tab-stop:4.5in;
    12621521        mso-level-number-position:left;
    12631522        text-indent:-.25in;}
     
    12891548<link href=gsasIIfav.png rel="SHORTCUT ICON">
    12901549<!--[if gte mso 9]><xml>
    1291  <o:shapedefaults v:ext="edit" spidmax="9218"/>
     1550 <o:shapedefaults v:ext="edit" spidmax="10242"/>
    12921551</xml><![endif]--><!--[if gte mso 9]><xml>
    12931552 <o:shapelayout v:ext="edit">
     
    13201579 <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
    13211580 <o:lock v:ext="edit" aspectratio="t"/>
    1322 </v:shapetype><v:shape id="Picture_x0020_2" o:spid="_x0000_s1038" type="#_x0000_t75"
     1581</v:shapetype><v:shape id="Picture_x0020_2" o:spid="_x0000_s1039" type="#_x0000_t75"
    13231582 alt="GSAS-II logo" style='position:absolute;margin-left:56pt;margin-top:0;
    13241583 width:96pt;height:96pt;z-index:1;visibility:visible;mso-wrap-style:square;
     
    13661625such as the sample temperature <a href="#Sample_Parameters">(see below)</a>. <o:p></o:p></span></p>
    13671626
    1368 <h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
     1627<h4><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h4>
    13691628
    13701629<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>The
     
    13721631as outlined below: <o:p></o:p></span></p>
    13731632
    1374 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span
     1633<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
    13751634style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    13761635style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
    1377 &#8216;<b style='mso-bidi-font-weight:normal'>File</b>&#8217; &#8211;</p>
    1378 
    1379 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1380 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1636&#8216;<b style='mso-bidi-font-weight:normal'>File</b>&#8217; &#8211; </p>
     1637
     1638<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     1639auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    13811640style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    13821641style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    13911650
    13921651<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1393 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1652auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    13941653style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    13951654style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14031662
    14041663<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1405 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1664auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14061665style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    14071666style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14131672
    14141673<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1415 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1674auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14161675style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    14171676style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14221681
    14231682<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1424 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1683auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14251684style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
    14261685style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14311690option) GSAS-II; useful for escaping from GSAS-II if needed.</span></p>
    14321691
    1433 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span
     1692<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
    14341693style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    14351694style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
     
    14371696
    14381697<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1439 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1698auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14401699style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    14411700style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14511710
    14521711<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1453 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1712auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14541713style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    14551714style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14641723
    14651724<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1466 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1725auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14671726style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    14681727style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14731732
    14741733<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1475 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1734auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14761735style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    14771736style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14791738
    14801739<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1481 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1740auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14821741style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
    14831742style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14851744
    14861745<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1487 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1746auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14881747style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>f.<span
    14891748style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14911750
    14921751<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1493 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1752auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    14941753style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>g.<span
    14951754style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    14971756
    14981757<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1499 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1758auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15001759style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>h.<span
    15011760style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    15031762
    15041763<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1505 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1764auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15061765style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>i.<span
    15071766style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    15101769
    15111770<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1512 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1771auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15131772style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>j.<span
    15141773style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    15161775data</b> - </p>
    15171776
    1518 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span
     1777<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
    15191778style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
    15201779style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
     
    15221781
    15231782<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1524 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1783auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15251784style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    15261785style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    15281787
    15291788<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1530 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1789auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15311790style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    15321791style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    15351794
    15361795<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1537 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1796auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15381797style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    15391798style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    15411800
    15421801<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1543 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1802auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15441803style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    15451804style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    15471806
    15481807<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1549 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1808auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15501809style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
    15511810style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    15521811style='mso-bidi-font-weight:normal'>Solve</b> - </p>
    15531812
    1554 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span
     1813<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
    15551814style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
    15561815style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
     
    15581817
    15591818<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1560 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1819auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15611820style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    15621821style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    1563 style='mso-bidi-font-weight:normal'>Import GSAS Exp phase&#8230;</b> - </p>
    1564 
    1565 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1566 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1822style='mso-bidi-font-weight:normal'>Import Phase (generic)&#8230;</b> - </p>
     1823
     1824<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     1825auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15671826style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    15681827style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    1569 style='mso-bidi-font-weight:normal'>Import PDB phase&#8230;</b> - </p>
    1570 
    1571 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1572 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1828style='mso-bidi-font-weight:normal'>Import Phase (specific)</b></p>
     1829
     1830<p class=MsoListParagraphCxSpMiddle style='margin-left:1.5in;mso-add-space:
     1831auto;text-indent:-.25in;mso-list:l9 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
     1832style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     1833style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     1834style='mso-bidi-font-weight:normal'>Import Phase GSAS.EXP&#8230;</b></p>
     1835
     1836<p class=MsoListParagraphCxSpMiddle style='margin-left:1.5in;mso-add-space:
     1837auto;text-indent:-.25in;mso-list:l9 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
     1838style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
     1839style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     1840style='mso-bidi-font-weight:normal'>Import Phase PDB&#8230;</b></p>
     1841
     1842<p class=MsoListParagraphCxSpMiddle style='margin-left:1.5in;mso-add-space:
     1843auto;text-indent:-.25in;mso-list:l9 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
     1844style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
     1845style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     1846style='mso-bidi-font-weight:normal'>Import Phase CIF&#8230;</b></p>
     1847
     1848<p class=MsoListParagraphCxSpMiddle style='margin-left:1.5in;mso-add-space:
     1849auto;text-indent:-.25in;mso-list:l9 level3 lfo1;tab-stops:list 1.5in'><![if !supportLists]><span
     1850style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
     1851style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     1852style='mso-bidi-font-weight:normal'>Import Phase GSAS-II <span class=SpellE>gpx</span>&#8230;</b></p>
     1853
     1854<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     1855auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15731856style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    15741857style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    1575 style='mso-bidi-font-weight:normal'>Import CIF phase&#8230;</b> - </p>
    1576 
    1577 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1578 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1858style='mso-bidi-font-weight:normal'>Import Powder Pattern&#8230;</b> - </p>
     1859
     1860<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     1861auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15791862style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    15801863style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    15811864style='mso-bidi-font-weight:normal'>Import HKLs&#8230;</b> - </p>
    15821865
    1583 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l6 level1 lfo1'><![if !supportLists]><span
     1866<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l9 level1 lfo1'><![if !supportLists]><span
    15841867style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
    15851868style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Menu
     
    15871870
    15881871<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1589 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1872auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15901873style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    15911874style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    15931876
    15941877<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1595 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1878auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    15961879style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    15971880style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    15991882
    16001883<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1601 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1884auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    16021885style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    16031886style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    16051888
    16061889<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1607 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1890auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    16081891style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    16091892style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    16111894
    16121895<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1613 auto;text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1896auto;text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    16141897style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
    16151898style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    16171900
    16181901<p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto;
    1619 text-indent:-.25in;mso-list:l6 level2 lfo1'><![if !supportLists]><span
     1902text-indent:-.25in;mso-list:l9 level2 lfo1'><![if !supportLists]><span
    16201903style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>f.<span
    16211904style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    16831966<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
    16841967
    1685 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
     1968<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
    16861969style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    16871970style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    16951978Hessian&#8217; for routine work.<o:p></o:p></span></p>
    16961979
    1697 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
     1980<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
    16981981style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    16991982style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
    17001983style='mso-fareast-font-family:"Times New Roman"'>Select &#8216;Min
    1701 delta-M/M&#8217; for convergence; the refinement will stop when the change in
    1702 the minimization function is less than this value. Set Min delta-M/M = 1.0 to
    1703 force just a single cycle to be performed. A value less than 10<sup>-4</sup>
    1704 (the default) generally gives no better result. The allowed range is 10<sup>-9</sup>
     1984delta-M/M&#8217; for convergence; the refinement will stop when the change in the
     1985minimization function is less than this value. Set Min delta-M/M = 1.0 to force
     1986just a single cycle to be performed. A value less than 10<sup>-4</sup> (the
     1987default) generally gives no better result. The allowed range is 10<sup>-9</sup>
    17051988to 1.0.<o:p></o:p></span></p>
    17061989
    1707 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
     1990<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
    17081991style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
    17091992style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    17172000performance.<o:p></o:p></span></p>
    17182001
    1719 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
     2002<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
    17202003style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
    17212004style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
    17222005style='mso-fareast-font-family:"Times New Roman"'>If &#8216;analytic
    17232006Hessian&#8217; is chosen then select &#8216;Max cycles&#8217;, the maximum
    1724 number of least squares cycles to be performed. Choices are given in the pull
    1725 down selection; the default is 3 cycles.<o:p></o:p></span></p>
    1726 
    1727 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l11 level1 lfo2'><![if !supportLists]><span
     2007number of least squares cycles to be performed. Least squares cycles are
     2008determined by the number of times a new Hessian matrix is computes; the <span
     2009class=SpellE>Levenberg</span>-Marquardt algorithm may compute the function
     2010several times between cycles as it finds the optimal value of the Marquardt
     2011coefficient. Choices are given in the pull down selection; the default is 3
     2012cycles.<o:p></o:p></span></p>
     2013
     2014<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l13 level1 lfo2'><![if !supportLists]><span
    17282015style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
    17292016style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    17312018refinement; the data sets may be done in &#8216;reverse order&#8217;. <o:p></o:p></span></p>
    17322019
    1733 <h4><span style='mso-fareast-font-family:"Times New Roman"'>Covariance<o:p></o:p></span></h4>
     2020<h4>Covariance<span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></h4>
    17342021
    17352022<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
     
    17562043<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
    17572044
    1758 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l13 level1 lfo3'><![if !supportLists]><span
     2045<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l16 level1 lfo3'><![if !supportLists]><span
    17592046style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    17602047style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    17632050the &#8216;Edit menu.<o:p></o:p></span></p>
    17642051
    1765 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l13 level1 lfo3'><![if !supportLists]><span
     2052<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo3'><![if !supportLists]><span
    17662053style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    17672054style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    17702057
    17712058<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1772 auto;text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span
     2059auto;text-indent:-.25in;mso-list:l16 level2 lfo3'><![if !supportLists]><span
    17732060style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    17742061style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
     
    17882075
    17892076<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1790 auto;text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span
     2077auto;text-indent:-.25in;mso-list:l16 level2 lfo3'><![if !supportLists]><span
    17912078style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    17922079style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18072094
    18082095<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    1809 auto;text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span
     2096auto;text-indent:-.25in;mso-list:l16 level2 lfo3'><![if !supportLists]><span
    18102097style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
    18112098style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18252112
    18262113<p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto;
    1827 text-indent:-.25in;mso-list:l13 level2 lfo3'><![if !supportLists]><span
     2114text-indent:-.25in;mso-list:l16 level2 lfo3'><![if !supportLists]><span
    18282115style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
    18292116style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     
    18442131<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
    18452132
    1846 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l1 level1 lfo4'><![if !supportLists]><span
    1847 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    1848 style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
    1849 style='mso-fareast-font-family:"Times New Roman"'>Menu &#8216;<b
    1850 style='mso-bidi-font-weight:normal'>File</b>&#8217; &#8211; <b
    1851 style='mso-bidi-font-weight:normal'>Copy</b> - this copies the limits shown to
    1852 other selected powder patterns. If used, a dialog box (Copy Limits) will appear
    1853 showing the list of available powder patterns, you can copy the limits to any
    1854 or all of them; select &#8216;All&#8217; to copy them to all patterns. Then
    1855 select &#8216;OK&#8217; to do the copy; &#8216;Cancel&#8217; to cancel the
    1856 operation.<o:p></o:p></span></p>
    1857 
    1858 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l1 level1 lfo4'><![if !supportLists]><span
    1859 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    1860 style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
    1861 style='mso-fareast-font-family:"Times New Roman"'>You can change <span
    1862 class=SpellE>Tmin</span> and <span class=SpellE>Tmax</span> in the
    1863 &#8216;changed&#8217; row as needed. Use the mouse to select the value to be
    1864 changed (the background on the box will be blue or have a black border or a
    1865 vertical bar will appear in the value), then enter the new value and press
    1866 Enter or click the mouse elsewhere in the Background window. This will set the
    1867 new value.<o:p></o:p></span></p>
    1868 
    1869 <h4><span style='mso-fareast-font-family:"Times New Roman"'>Texture Control
    1870 Window<o:p></o:p></span></h4>
    1871 
    1872 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    1873 window... <o:p></o:p></span></p>
    1874 
    1875 <h4><span style='mso-fareast-font-family:"Times New Roman"'>Image Masks<o:p></o:p></span></h4>
    1876 
    1877 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    1878 window... <o:p></o:p></span></p>
    1879 
    1880 <h4><span style='mso-fareast-font-family:"Times New Roman"'>Atoms Control
    1881 Window<o:p></o:p></span></h4>
    1882 
    1883 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    1884 window... <o:p></o:p></span></p>
    1885 
    1886 <h3><span style='mso-fareast-font-family:"Times New Roman"'>Diffraction Data
    1887 Control Window<o:p></o:p></span></h3>
    1888 
    1889 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    1890 window... <o:p></o:p></span></p>
    1891 
    1892 <h3><span style='mso-fareast-font-family:"Times New Roman"'>Draw Atoms Control
    1893 Window<o:p></o:p></span></h3>
    1894 
    1895 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    1896 window... <o:p></o:p></span></p>
    1897 
    1898 <h3><span style='mso-fareast-font-family:"Times New Roman"'>Pawley Control
    1899 Window<o:p></o:p></span></h3>
    1900 
    1901 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    1902 window... <o:p></o:p></span></p>
    1903 
    1904 <h3><a name=Images><span style='mso-fareast-font-family:"Times New Roman"'>Images
    1905 Control<o:p></o:p></span></a></h3>
    1906 
    1907 <span style='mso-bookmark:Images'></span>
    1908 
    1909 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    1910 window... <o:p></o:p></span></p>
    1911 
    1912 <h3><span style='mso-fareast-font-family:"Times New Roman"'>PDF Controls
    1913 Control Window<o:p></o:p></span></h3>
    1914 
    1915 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    1916 window... <o:p></o:p></span></p>
    1917 
    1918 <p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'><o:p>&nbsp;</o:p></span></p>
    1919 
    19202133<h3>Phase Windows</h3>
    19212134
    19222135<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>When
    19232136a phase is selected from the <a href="#Data_tree">data tree</a>, parameters are
    1924 shown for that selected phase in a tabbed window. Clicking on the tab raises
     2137shown for that selected phase in a tabbed window. Clicking on each tab raises
    19252138the windows listed below. Each tab is identified by the underlined phrase in
    19262139the following:<o:p></o:p></span></p>
    19272140
    1928 <h4><a name=General><u>General</u> Phase Parameters</a></h4>
     2141<h4><a name=General></a><a name="_Ref317241833"><span style='mso-bookmark:General'><u>General</u>
     2142Phase Parameters</span></a><span style='mso-bookmark:General'></span></h4>
    19292143
    19302144<span style='mso-bookmark:General'></span>
     
    19332147gives overall parameters describing the phase such as the name, space group,
    19342148the unit cell parameters and overall parameters for the atom present in the
    1935 phase. <a name=Data><o:p></o:p></a></span></p>
    1936 
    1937 <h4><span style='mso-bookmark:Data'>Sample <u>Data</u></span></h4>
     2149phase. <a name=Data>It also has the controls for computing Fourier maps for
     2150this 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
     2153can 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>
    19382157
    19392158<span style='mso-bookmark:Data'></span>
    19402159
    1941 <h4><a name=Texture><u>Texture</u> Parameters</a></h4>
    1942 
    1943 <h4><span style='mso-bookmark:Texture'><a name=Atoms><u>Atom</u> Parameter<u>s</u></a></span></h4>
     2160<h5><a name=Texture></a><a name=Atoms><span style='mso-bookmark:Texture'><span
     2161style='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>
     2164Parameter<u>s</u></span></span></h4>
    19442165
    19452166<span style='mso-bookmark:Atoms'></span>
    19462167
    1947 <h4><span style='mso-bookmark:Texture'><a name="Draw_Options"><u>Draw Options</u></a></span></h4>
     2168<h5><span style='mso-bookmark:Texture'><a name="Draw_Options"><span
     2169style='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>
     2172Parameters</span></span></h4>
     2173
     2174<h5><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Options'><span
     2175style='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
     2178Options</u></span></span></h4>
    19482179
    19492180<span style='mso-bookmark:Draw_Options'></span>
    19502181
    1951 <h4><span style='mso-bookmark:Texture'><a name="Draw_Atoms"><u>Draw Atoms<o:p></o:p></u></a></span></h4>
     2182<h5><span style='mso-bookmark:Texture'><a name="Draw_Atoms"><span
     2183style='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
     2186Atoms<o:p></o:p></u></span></span></h4>
    19522187
    19532188<p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-bookmark:
     
    19622197style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></span></span></h5>
    19632198
    1964 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span
     2199<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    19652200style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    19662201style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     
    19742209deselect all atoms.</span></span></p>
    19752210
    1976 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span
     2211<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    19772212style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    19782213style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
    19792214style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>Atom
    1980 Selection from plot: select an atom by a left click of the mouse when pointed
    1981 at the center of the displayed atom, it will turn green if successful and the
    1982 corresponding entry in the table will be highlighted (in grey); any previous
    1983 selections will be cleared. To add to .your selection use the right mouse
    1984 button; if a previously selection is reselected it is removed from the
    1985 selection list. <b style='mso-bidi-font-weight:normal'>NB</b>: beware of atoms
    1986 that are hiding behind the one you are trying to select, they may be selected inadvertently.
    1987 You can rotate the structure anytime during the selection process.</span></span></p>
    1988 
    1989 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span
     2215Selection from plot: select an atom by a left click of the mouse while holding
     2216down the Shift key and pointed at the center of the displayed atom, it will
     2217turn green if successful and the corresponding entry in the table will be
     2218highlighted (in grey); any previous selections will be cleared. To add to .your
     2219selection use the right mouse button (Shift down); if a previously selection is
     2220reselected it is removed from the selection list. <b style='mso-bidi-font-weight:
     2221normal'>NB</b>: beware of atoms that are hiding behind the one you are trying
     2222to select, they may be selected inadvertently. You can rotate the structure
     2223anytime during the selection process.</span></span></p>
     2224
     2225<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    19902226style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    19912227style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
     
    19962232those atoms to be selected.</span></span></p>
    19972233
    1998 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span
     2234<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    19992235style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20002236style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>4.<span
     
    20092245aren&#8217;t rendered and thus the plot will not show any atoms or bonds!</span></span></p>
    20102246
    2011 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span
     2247<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    20122248style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20132249style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>5.<span
     
    20182254
    20192255<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2020 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2256auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    20212257Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20222258style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
     
    20262262
    20272263<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2028 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2264auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    20292265Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20302266style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    20312267style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    2032 style='mso-bidi-font-weight:normal'>Atom label</b> &#8211; select the item to
    2033 be shown as a label for each atom in selection. The choices are: none, type,
    2034 name or number.</span></span></p>
    2035 
    2036 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2037 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2268style='mso-bidi-font-weight:normal'>Atom label</b> &#8211; select the item to be
     2269shown as a label for each atom in selection. The choices are: none, type, name
     2270or number.</span></span></p>
     2271
     2272<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2273auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    20382274Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20392275style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
     
    20462282
    20472283<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2048 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2284auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    20492285Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20502286style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>d.<span
     
    20542290
    20552291<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2056 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2292auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    20572293Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20582294style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>e.<span
     
    20622298
    20632299<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2064 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2300auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    20652301Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20662302style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>f.<span
     
    20732309
    20742310<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2075 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2311auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    20762312Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20772313style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>g.<span
    20782314style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    20792315style='mso-bidi-font-weight:normal'>Transform atoms</b> &#8211; apply a
    2080 symmetry operator and unit cell translation to the set of selected atoms; they
    2081 will be changed in place. Any anisotropic thermal displacement parameters (<span
     2316symmetry operator and unit cell translation to the set of selected atoms; they will
     2317be changed in place. Any anisotropic thermal displacement parameters (<span
    20822318class=SpellE>Uij</span>) will be transformed as appropriate.</span></span></p>
    20832319
    20842320<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2085 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2321auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    20862322Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20872323style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>h.<span
     
    20932329
    20942330<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2095 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2331auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    20962332Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    20972333style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>i.<span
    20982334style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    20992335</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Fill unit
    2100 cell</b> - using the atoms currently in the draw atom table, find all atoms
    2101 that fall inside or on the edge/surface/corners of the unit cell. This
    2102 operation is frequently performed before Fill CN-sphere.</span></span></p>
    2103 
    2104 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2105 auto;text-indent:-.25in;mso-list:l10 level1 lfo14'><span style='mso-bookmark:
     2336cell</b> - using the atoms currently selected from the draw atom table, find
     2337all atoms that fall inside or on the edge/surface/corners of the unit cell.
     2338This operation is frequently performed before Fill CN-sphere.</span></span></p>
     2339
     2340<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2341auto;text-indent:-.25in;mso-list:l12 level1 lfo6'><span style='mso-bookmark:
    21062342Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    21072343style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>j.<span
     
    21122348table, e.g. by a structure refinement.</span></span></p>
    21132349
    2114 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo5'><span
     2350<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l8 level1 lfo5'><span
    21152351style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    21162352style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>6.<span
     
    21182354&#8216;<b style='mso-bidi-font-weight:normal'>Compute&#8217;</b> - The compute
    21192355menu gives a choice of geometric calculations to be performed with the selected
    2120 atoms. You must select the appropriate number of atoms for these to work.</span></span></p>
    2121 
    2122 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2123 auto;text-indent:-.25in;mso-list:l9 level1 lfo16'><span style='mso-bookmark:
     2356atoms. You must select the appropriate number of atoms for these to work and the
     2357computation is done for the atoms in selection order.</span></span></p>
     2358
     2359<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2360auto;text-indent:-.25in;mso-list:l11 level1 lfo7'><span style='mso-bookmark:
    21242361Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    21252362style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    21262363style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    2127 style='mso-bidi-font-weight:normal'>Distance Angles</b> &#8211; not developed
    2128 yet&#8230;</span></span></p>
    2129 
    2130 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2131 auto;text-indent:-.25in;mso-list:l9 level1 lfo16'><span style='mso-bookmark:
    2132 Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
    2133 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
    2134 style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    2135 style='mso-bidi-font-weight:normal'>Torsion angle</b> &#8211; when 4 atoms are
    2136 selected, a torsion angle will be found for them. The atoms in the selection
    2137 are then reordered so that the A1-A4 distance is longest with the other two in
    2138 distance order between; the torsion angle is a right hand angle about the A2-A3
    2139 vector for the sequence of atoms A1-A2-A3-A4. An estimated standard deviation
    2140 is given for the torsion angle if a current variance-covariance matrix is
    2141 available. The result is shown on the console window; it may be cut &amp;
    2142 pasted to another application (e.g. Microsoft Word).</span></span></p>
     2364style='mso-bidi-font-weight:normal'>Dist. Ang.</b> <span class=SpellE><b
     2365style='mso-bidi-font-weight:normal'>Tors</b></span><b style='mso-bidi-font-weight:
     2366normal'>. </b>&#8211; <span class=GramE>when</span> 2-4 atoms are selected, a distance,
     2367angle or torsion angle will be found for them. The angles are computed for the
     2368atoms in their selection order. The torsion angle is a right hand angle about
     2369the A2-A3 vector for the sequence of atoms A1-A2-A3-A4. An estimated standard
     2370deviation is given for the calculated value if a current variance-covariance
     2371matrix 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>
    21432373
    21442374<p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto;
    2145 text-indent:-.25in;mso-list:l9 level1 lfo16'><span style='mso-bookmark:Texture'><span
     2375text-indent:-.25in;mso-list:l11 level1 lfo7'><span style='mso-bookmark:Texture'><span
    21462376style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span style='mso-fareast-font-family:
    2147 "Times New Roman"'><span style='mso-list:Ignore'>c.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     2377"Times New Roman"'><span style='mso-list:Ignore'>b.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    21482378</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'>Best
    2149 plane</b> &#8211; when 3 or more atoms are selected, a best plane is determined
     2379plane</b> &#8211; when 4 or more atoms are selected, a best plane is determined
    21502380for them. The result is shown on the console window; it may be cut &amp; pasted
    21512381to another application (e.g. Microsoft Word). Shown are the atom coordinates
     
    21552385displacements along each axis for the best plane are also listed. The Z-axis
    21562386RMS value indicates the flatness of the proposed plane. <b style='mso-bidi-font-weight:
    2157 normal'>NB</b>: if you select e.g. all atoms then Best plane will give
     2387normal'>NB</b>: if you select (e.g. all) atoms then Best plane will give
    21582388Cartesian coordinates for these atoms with respect to a coordinate system where
    21592389the X-axis is along the longest axis of the atom grouping and the Z-axis is
     
    21612391center of the selected atoms.</span></span></p>
    21622392
     2393<h4><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><a
     2394name=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:
     2397Draw_Atoms'>This gives the list of reflections used in a Pawley refinement and
     2398can only be seen if the phase type is &#8216;Pawley&#8217; (see<span
     2399style='color:#00B0F0'> </span></span></span><a href="#General"><span
     2400style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'>General</span></span><span
     2401style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'></span></span></a><span
     2402style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'>)<span
     2403style='color:#00B0F0'>.</span></span></span></p>
     2404
     2405<h5><span style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'>What
     2406can I do here?</span></span></h5>
     2407
     2408<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l5 level1 lfo20'><span
     2409style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2410style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     2411style='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:
     2415auto;text-indent:-.25in;mso-list:l10 level2 lfo19'><span style='mso-bookmark:
     2416Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2417style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
     2418style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2419style='mso-bidi-font-weight:normal'>Pawley create</b> &#8211; this creates a
     2420new set of Pawley reflections, over writing any preexisting Pawley set. They
     2421are generated with d-<span class=SpellE>spacings</span> larger than the limit
     2422set as &#8216;Pawley <span class=SpellE>dmin</span>&#8217; in the General tab
     2423for this phase. By default the refine flags are not set and the <span
     2424class=SpellE><span class=GramE>Fsq</span></span><span class=GramE>(</span><span
     2425class=SpellE>hkl</span>) = 100.0.</span></span></p>
     2426
     2427<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
     2428auto;text-indent:-.25in;mso-list:l10 level2 lfo19'><span style='mso-bookmark:
     2429Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2430style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
     2431style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
     2432style='mso-bidi-font-weight:normal'>Pawley estimate</b> &#8211; this attempts
     2433an estimate of <span class=SpellE><span class=GramE>Fsq</span></span><span
     2434class=GramE>(</span><span class=SpellE>hkl</span>) from the peak heights of the
     2435reflection as seen in the 1<sup>st</sup> powder pattern of those selected in
     2436the </span></span><a href="#Data"><span style='mso-bookmark:Texture'><span
     2437style='mso-bookmark:Draw_Atoms'>Data</span></span><span style='mso-bookmark:
     2438Texture'><span style='mso-bookmark:Draw_Atoms'></span></span></a><span
     2439style='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:
     2442auto;text-indent:-.25in;mso-list:l10 level2 lfo19'><span style='mso-bookmark:
     2443Texture'><span style='mso-bookmark:Draw_Atoms'><![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'>Pawley delete </b>&#8211; this clears the
     2447set of Pawley reflections.</span></span></p>
     2448
     2449<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l5 level1 lfo20'><span
     2450style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2451style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
     2452style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>You
     2453can change the refine flags either by clicking on the box or by selecting one
     2454and then selecting the column (a single click on the column heading). Then type
     2455&#8216;y&#8217; to set the refine flags or &#8216;n&#8217; to clear the flags.
     2456You should deselect those reflections that fall below the lower limit or above
     2457the upper limit of the powder pattern otherwise you may have a singular matrix
     2458error in your Pawley refinement.</span></span></p>
     2459
     2460<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l5 level1 lfo20'><span
     2461style='mso-bookmark:Texture'><span style='mso-bookmark:Draw_Atoms'><![if !supportLists]><span
     2462style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
     2463style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]>You
     2464can change the individual <span class=SpellE><span class=GramE>Fsq</span></span><span
     2465class=GramE>(</span><span class=SpellE>hkl</span>) values by selecting it,
     2466typing in the new value and then pressing enter or selecting somewhere else in
     2467the table.</span></span></p>
     2468
    21632469<span style='mso-bookmark:Draw_Atoms'></span>
    21642470
    2165 <h3><span style='mso-bookmark:Texture'>Powder Histogram Windows</span></h3>
     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
     2474data 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
     2476a file name. These constitute the data sets (&#8216;Histograms&#8217;) to be
     2477used by GSAS-II for analysis. Selection of these items does not produce any
     2478information in the data window but does display the data in the Plots Window.
     2479They are described below.</span></p>
     2480
     2481<h3><span style='mso-bookmark:Texture'>Powder Histograms - PWDR</span></h3>
    21662482
    21672483<p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2168 "Times New Roman"'>When a powder diffraction data set (histogram) is selected
    2169 from the </span></span><a href="#Data_tree"><span style='mso-bookmark:Texture'><span
    2170 style='mso-fareast-font-family:"Times New Roman"'>data tree</span></span><span
     2484"Times New Roman"'>When a powder diffraction data set (prefix &#8216;PWDR&#8217;)
     2485is selected from the </span></span><a href="#Data_tree"><span style='mso-bookmark:
     2486Texture'><span style='mso-fareast-font-family:"Times New Roman"'>data tree</span></span><span
    21712487style='mso-bookmark:Texture'></span></a><span style='mso-bookmark:Texture'><span
    21722488style='mso-fareast-font-family:"Times New Roman"'>, a variety of subcategories
     
    21752491
    21762492<h4><span style='mso-bookmark:Texture'><a name=Comments></a><a name=""></a><span
    2177 style='mso-bookmark:Comments'><u>Comments</u></span></span></h4>
     2493style='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:
     2496Comments'>This window shows whatever comment lines (preceded by &#8220;#&#8221;)
     2497found when the powder data file was read by GSAS-II. If you are lucky, there
     2498will be useful information here (e.g. sample name, date collected, wavelength
     2499used, etc.). If not, this window will be blank. The text is read-only in that
     2500anything you try to enter here is not saved.</span></span></p>
    21782501
    21792502<span style='mso-bookmark:Comments'></span>
    21802503
    2181 <h4><span style='mso-bookmark:Texture'><a name=Background></a><a name=Limits><span
    2182 style='mso-bookmark:Background'><span style='mso-fareast-font-family:"Times New Roman"'>Limits</span></span></a></span><span
    2183 style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><span
    2184 style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></span></h4>
    2185 
    2186 <p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-bookmark:
    2187 Background'><span style='mso-fareast-font-family:"Times New Roman"'>This window
    2188 shows the limits in position to be used in any fitting for this powder pattern.
    2189 The &#8216;original&#8217; values are obtained from the minimum &amp; maximum
    2190 values in the powder pattern. You can modify &#8216;changed&#8217; as needed.<o:p></o:p></span></span></span></p>
    2191 
    2192 <h5><span style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><span
    2193 style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></span></span></h5>
    2194 
    2195 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span
    2196 style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><![if !supportLists]><span
    2197 style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
    2198 style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
    2199 style='mso-fareast-font-family:"Times New Roman"'>Menu &#8216;<b
    2200 style='mso-bidi-font-weight:normal'>File</b>&#8217; &#8211; <o:p></o:p></span></span></span></p>
    2201 
    2202 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2203 auto;text-indent:-.25in;mso-list:l14 level1 lfo17'><span style='mso-bookmark:
    2204 Texture'><span style='mso-bookmark:Background'><![if !supportLists]><span
     2504<h4><span style='mso-bookmark:Texture'><a name=Limits><u><span
     2505style='mso-fareast-font-family:"Times New Roman"'>Limits</span></u></a></span><span
     2506style='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
     2510fitting for this powder pattern. The &#8216;original&#8217; values are obtained
     2511from 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
     2518style='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
     2521can change <span class=SpellE>Tmin</span> and <span class=SpellE>Tmax</span> in
     2522the &#8216;changed&#8217; row as needed. Use the mouse to select the value to
     2523be changed (the background on the box will be blue or have a black border or a
     2524vertical bar will appear in the value), then enter the new value and press
     2525Enter or click the mouse elsewhere in the Background window. This will set the
     2526new value.<o:p></o:p></span></span></p>
     2527
     2528<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l19 level1 lfo8'><span
     2529style='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
     2532the values of &#8216;changed&#8217;; this can be done on the plot by dragging
     2533the limit bars (left &#8211; vertical green dashed line, right &#8211; vertical
     2534red dashed line) into position. A left or right mouse click on a data point on
     2535the plot will set the associated limit. In either case the appropriate value on
     2536the &#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
     2539style='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;
     2545text-indent:-.25in;mso-list:l17 level1 lfo9'><span style='mso-bookmark:Texture'><![if !supportLists]><span
    22052546style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
    22062547style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><b
    2207 style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span></span><span
    2208 style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><span
    2209 style='mso-fareast-font-family:"Times New Roman"'> &#8211; this copies the limits
    2210 shown to other selected powder patterns. If used, a dialog box (Copy Parameters)
    2211 will appear showing the list of available powder patterns, you can copy the limits
    2212 parameters to any or all of them; select &#8216;All&#8217; to copy them to all
    2213 patterns. Then select &#8216;OK&#8217; to do the copy; &#8216;Cancel&#8217; to
    2214 cancel the operation.<o:p></o:p></span></span></span></p>
    2215 
    2216 <p class=MsoListParagraphCxSpLast style='margin-left:1.0in;mso-add-space:auto;
    2217 text-indent:-.25in;mso-list:l14 level1 lfo17'><span style='mso-bookmark:Texture'><span
    2218 style='mso-bookmark:Background'><![if !supportLists]><span style='mso-fareast-font-family:
    2219 "Times New Roman"'><span style='mso-list:Ignore'>b.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2220 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Modify
    2221 the values of &#8216;changed&#8217;; this can be done by entering the desired
    2222 value into the appropriate boxes or by dragging the limit bars (left &#8211; vertical
    2223 green dashed line, right &#8211; vertical red dashed line) into position. A
    2224 left or right mouse click on a data point on the plot will set the associated
    2225 limit.<o:p></o:p></span></span></span></p>
    2226 
    2227 <h4><span style='mso-bookmark:Texture'><span style='mso-bookmark:Background'><span
    2228 style='mso-fareast-font-family:"Times New Roman"'>Background</span></span></span><span
    2229 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
     2548style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span><span
     2549style='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
     2551used, a dialog box (Copy Parameters) will appear showing the list of available
     2552powder patterns, you can copy the limits parameters to any or all of them;
     2553select &#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
     2557style='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>
    22302560
    22312561<p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    2232 "Times New Roman"'>This window shows the choice of background function and
    2233 coefficients to be used in fitting this powder pattern.<o:p></o:p></span></span></p>
     2562"Times New Roman"'>This window shows the choice of background functions and
     2563coefficients to be used in fitting this powder pattern. There are three types
     2564of 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
     2568class=SpellE>chebyschev</span>&#8217;, &#8216;cosine&#8217;, &#8216;<span
     2569class=SpellE><span class=GramE>lin</span></span> interpolate&#8217;, &#8216;inv
     2570interpolate&#8217; &amp; &#8216;log interpolate&#8217;). The latter three select
     2571fixed points with spacing that is <span class=GramE>either equal</span>,
     2572inversely equal or equal on a log scale of the x-coordinate. The set of magnitudes
     2573at each point then comprise the background variables. All are refined when refine
     2574is selected.<o:p></o:p></span></span></p>
     2575
     2576<p class=MsoNormal style='tab-stops:0in'><span style='mso-bookmark:Texture'><span
     2577style='mso-fareast-font-family:"Times New Roman"'>2). A set of Debye diffuse scattering
     2578equation 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
     2618style='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;
     2620top:16.0pt;mso-text-raise:-16.0pt;mso-ansi-language:EN-US;mso-fareast-language:
     2621EN-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
     2625src="gsasII_files/image003.gif" v:shapes="_x0000_i1025"><![endif]></span><![endif]><span
     2626style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><span
     2627style='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
     2630style='mso-fareast-font-family:"Times New Roman"'>where</span></span></span><span
     2631style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
     2632A,R &amp; U are the possible variables and can be individually selected as desired;
     2633Q = 2</span></span><span style='mso-bookmark:Texture'><span style='font-family:
     2634Symbol;mso-fareast-font-family:"Times New Roman"'>p</span></span><span
     2635style='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
     2639profile function as their shapes. Their parameters are &#8216;pos&#8217;, &#8217;<span
     2640class=SpellE>int</span>&#8217;, &#8216;sig&#8217; &amp; &#8216;<span
     2641class=SpellE>gam</span>&#8217;; each can be selected for refinement. The
     2642default values for sig &amp; <span class=SpellE>gam</span> (=0.10) are for very
     2643sharp peaks, you may adjust them accordingly to the kind of peak you are trying
     2644to fit before trying to refine them.<o:p></o:p></span></span></p>
    22342645
    22352646<h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    22362647"Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    22372648
    2238 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span
     2649<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    22392650style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2240 "Times New Roman"'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     2651"Times New Roman"'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    22412652</span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>Menu
    22422653&#8216;<b style='mso-bidi-font-weight:normal'>File</b>&#8217; &#8211; <o:p></o:p></span></span></p>
    22432654
    22442655<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2245 auto;text-indent:-.25in;mso-list:l14 level1 lfo17'><span style='mso-bookmark:
     2656auto;text-indent:-.25in;mso-list:l2 level1 lfo18'><span style='mso-bookmark:
    22462657Texture'><![if !supportLists]><span style='mso-fareast-font-family:"Times New Roman"'><span
    2247 style='mso-list:Ignore'>c.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     2658style='mso-list:Ignore'>a.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    22482659</span></span></span><![endif]><b style='mso-bidi-font-weight:normal'><span
    22492660style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span><span
    22502661style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
    2251 &#8211; this copies the background parameters shown to other selected powder
    2252 patterns. If used, a dialog box (Copy Parameters) will appear showing the list
    2253 of available powder patterns, you can copy the background parameters to any or
    2254 all of them; select &#8216;All&#8217; to copy them to all patterns. Then select
     2662&#8211; this copies the background parameters shown to other selected powder patterns.
     2663If used, a dialog box (Copy Parameters) will appear showing the list of
     2664available powder patterns, you can copy the background parameters to any or all
     2665of them; select &#8216;All&#8217; to copy them to all patterns. Then select
    22552666&#8216;OK&#8217; to do the copy; &#8216;Cancel&#8217; to cancel the operation.<o:p></o:p></span></span></p>
    22562667
    2257 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span
     2668<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
     2669style='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
     2672can 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
    22582675style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    22592676"Times New Roman"'><span style='mso-list:Ignore'>3.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    22602677</span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2261 can select a different Background function from the pull down tab.<o:p></o:p></span></span></p>
    2262 
    2263 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span
     2678can 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
    22642681style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    22652682"Times New Roman"'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    22662683</span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2267 can choose to refine/not refine the background coefficients.<o:p></o:p></span></span></p>
    2268 
    2269 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span
     2684can 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
    22702687style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    22712688"Times New Roman"'><span style='mso-list:Ignore'>5.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    2272 </span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    2273 can select the number of background coefficients to be used (1-36).<o:p></o:p></span></span></p>
    2274 
    2275 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span
    2276 style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2277 "Times New Roman"'><span style='mso-list:Ignore'>6.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    22782689</span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    22792690can change individual background coefficient values. Enter the value then press
     
    22812692new value.<o:p></o:p></span></span></p>
    22822693
    2283 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span
     2694<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    22842695style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2285 "Times New Roman"'><span style='mso-list:Ignore'>7.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     2696"Times New Roman"'><span style='mso-list:Ignore'>6.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    22862697</span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    22872698can introduce one or more Debye scattering terms into the background. For each
     
    22912702coefficients.<o:p></o:p></span></span></p>
    22922703
    2293 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l16 level1 lfo8'><span
     2704<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l18 level1 lfo17'><span
    22942705style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    2295 "Times New Roman"'><span style='mso-list:Ignore'>8.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     2706"Times New Roman"'><span style='mso-list:Ignore'>7.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    22962707</span></span></span><![endif]><span style='mso-fareast-font-family:"Times New Roman"'>You
    22972708can introduce single Bragg peaks into the background. For each you should
     
    22992710the &#8216;<span class=SpellE>int</span>&#8217; coefficients.<o:p></o:p></span></span></p>
    23002711
    2301 <h4><span style='mso-bookmark:Texture'><a name="Instrument_Parameters"><span
    2302 style='mso-fareast-font-family:"Times New Roman"'>Instrument Parameters</span></a></span><span
    2303 style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
     2712<h4><span style='mso-bookmark:Texture'><a name="Instrument_Parameters"><u><span
     2713style='mso-fareast-font-family:"Times New Roman"'>Instrument Parameters</span></u></a></span><span
     2714style='mso-bookmark:Texture'><u><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></u></span></h4>
    23042715
    23052716<p class=MsoNormal><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
     
    23102721style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></a></span></h5>
    23112722
    2312 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span
     2723<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span
    23132724style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    23142725style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>1.<span
     
    23182729
    23192730<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2320 auto;text-indent:-.25in;mso-list:l12 level1 lfo18'><span style='mso-bookmark:
     2731auto;text-indent:-.25in;mso-list:l15 level1 lfo11'><span style='mso-bookmark:
    23212732Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    23222733style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>a.<span
     
    23292740
    23302741<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2331 auto;text-indent:-.25in;mso-list:l12 level1 lfo18'><span style='mso-bookmark:
     2742auto;text-indent:-.25in;mso-list:l15 level1 lfo11'><span style='mso-bookmark:
    23322743Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    23332744style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>b.<span
     
    23352746style='mso-bidi-font-weight:normal'><span style='mso-fareast-font-family:"Times New Roman"'>Copy</span></b></span></span><span
    23362747style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span
    2337 style='mso-fareast-font-family:"Times New Roman"'> &#8211; this copies the instrument
    2338 parameters shown to other selected powder patterns. If used, a dialog box (Copy
    2339 Parameters) will appear showing the list of available powder patterns, you can
    2340 copy the instrument parameters to any or all of them; select &#8216;All&#8217;
    2341 to copy them to all patterns. Then select &#8216;OK&#8217; to do the copy;
    2342 &#8216;Cancel&#8217; to cancel the operation.<o:p></o:p></span></span></span></p>
    2343 
    2344 <p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;mso-add-space:
    2345 auto;text-indent:-.25in;mso-list:l12 level1 lfo18'><span style='mso-bookmark:
     2748style='mso-fareast-font-family:"Times New Roman"'> &#8211; this copies the
     2749instrument parameters shown to other selected powder patterns. If used, a
     2750dialog box (Copy Parameters) will appear showing the list of available powder
     2751patterns, 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
     2753do 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:
     2756auto;text-indent:-.25in;mso-list:l15 level1 lfo11'><span style='mso-bookmark:
    23462757Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    23472758style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>c.<span
     
    23632774style='mso-fareast-font-family:"Times New Roman"'>2</span></sub></span></span><span
    23642775style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><span
    2365 style='mso-fareast-font-family:"Times New Roman"'> wavelength pairs (e.g. a laboratory
    2366 tube source).<o:p></o:p></span></span></span></p>
    2367 
    2368 <p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span
     2776style='mso-fareast-font-family:"Times New Roman"'> wavelength pairs (e.g. a
     2777laboratory 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
    23692780style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    23702781style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>2.<span
     
    23732784profile coefficients<o:p></o:p></span></span></span></p>
    23742785
    2375 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span
     2786<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span
    23762787style='mso-bookmark:Texture'><span style='mso-bookmark:Sample_Parameters'><![if !supportLists]><span
    23772788style='mso-fareast-font-family:"Times New Roman"'><span style='mso-list:Ignore'>3.<span
     
    23972808"Times New Roman"'>This window... <o:p></o:p></span></span></p>
    23982809
    2399 <h4><span style='mso-bookmark:Texture'><a name="Peak_List"></a><a
    2400 name="Powder_Peaks"><span style='mso-bookmark:Peak_List'><span
     2810<h4><span style='mso-bookmark:Texture'><a name="Powder_Peaks"></a><a
     2811name="Peak_List"><span style='mso-bookmark:Powder_Peaks'><span
    24012812style='mso-fareast-font-family:"Times New Roman"'>Peak List</span></span></a></span><span
    24022813style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'><o:p></o:p></span></span></h4>
     
    24342845"Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    24352846
    2436 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span
     2847<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span
    24372848style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    24382849"Times New Roman"'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    24522863table to the position shown here.<o:p></o:p></span></span></p>
    24532864
    2454 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l4 level1 lfo9'><span
     2865<p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l7 level1 lfo10'><span
    24552866style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    24562867"Times New Roman"'><span style='mso-list:Ignore'>5.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    24732884"Times New Roman"'>This window... <o:p></o:p></span></span></p>
    24742885
     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
     2895style='mso-fareast-font-family:"Times New Roman"'>I(</span></span></span><span
     2896style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Q),
     2897S(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
     2913href="#_Image_Masks"><span style='mso-bookmark:Texture'><span style='color:
     2914#4F81BD;mso-themecolor:accent1;text-decoration:none;text-underline:none'>Image
     2915Ma<span style='mso-bookmark:Image_Masks'></span>sks</span></span></a><![if !supportNestedAnchors]><a
     2916name="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
    24752921<div class=MsoNormal align=center style='text-align:center'><span
    24762922style='mso-bookmark:Texture'><span style='mso-fareast-font-family:"Times New Roman"'>
     
    25112957<ul type=disc>
    25122958 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2513      mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark:
     2959     mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    25142960     Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Home:
    25152961     returns the plot to the initial scaling <o:p></o:p></span></span></li>
    25162962 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2517      mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark:
     2963     mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    25182964     Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Back:
    25192965     returns the plot to the previous scaling <o:p></o:p></span></span></li>
    25202966 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2521      mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark:
     2967     mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    25222968     Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Forward:
    25232969     reverses the action in the previous press(es) of the Back button <o:p></o:p></span></span></li>
    25242970 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2525      mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark:
     2971     mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    25262972     Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Pan:
    25272973     allows you to control panning across the plot (press left mouse button)
    25282974     and zooming (press right mouse button), <o:p></o:p></span></span></li>
    25292975 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2530      mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark:
     2976     mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    25312977     Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Zoom:
    25322978     allows you to select a portion of the plot (press right mouse button &amp;
    25332979     drag for zoom box) for the next plot. <o:p></o:p></span></span></li>
    25342980 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2535      mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark:
     2981     mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    25362982     Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Save:
    25372983     allows you to save the currently displayed plot in one of several
    2538      graphical formats suitable for printing or insertion in a document. The <o:p></o:p></span></span></li>
     2984     graphical formats suitable for printing or insertion in a document.<o:p></o:p></span></span></li>
    25392985 <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
    2540      mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='mso-bookmark:
     2986     mso-list:l1 level1 lfo12;tab-stops:list .5in'><span style='mso-bookmark:
    25412987     Texture'><span style='mso-fareast-font-family:"Times New Roman"'>Help:
    25422988     accesses GSASII help on the specific plot type. <o:p></o:p></span></span></li>
     
    25733019"Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    25743020
     3021<p class=MsoListParagraph style='text-indent:-.25in;mso-list:l20 level1 lfo22'><span
     3022style='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
     3025the mouse cursor across the plot. <o:p></o:p></span></span></p>
     3026
    25753027<h4><span style='mso-bookmark:Texture'><a name=Covariance><span
    25763028style='mso-fareast-font-family:"Times New Roman"'>Covariance</span></a></span><span
     
    25803032"Times New Roman"'>The variance-covariance matrix as a color coded array is
    25813033shown on this page. The color bar to the right shows the range of <span
    2582 class=SpellE>covariances</span> (-1 to 1) and corresponding colors. The
    2583 parameter names are to the right and the parameter numbers are below the plot.<o:p></o:p></span></span></p>
     3034class=SpellE>covariances</span> (-1 to 1) and corresponding colors. The parameter
     3035names are to the right and the parameter numbers are below the plot.<o:p></o:p></span></span></p>
    25843036
    25853037<h5><span style='mso-bookmark:Texture'><span style='mso-fareast-font-family:
    25863038"Times New Roman"'>What can I do here?<o:p></o:p></span></span></h5>
    25873039
    2588 <p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l3 level1 lfo11'><span
     3040<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in;mso-list:l6 level1 lfo13'><span
    25893041style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    25903042"Times New Roman"'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    25913043</span></span></span><![endif]>Move the mouse cursor across the plot. If on a
    2592 diagonal cell, the parameter name, value and <span class=SpellE>esd</span> is
    2593 shown both as a tool tip and in the right hand portion of the status bar. If
    2594 the cursor is off the diagonal, the two parameter names and their covariance
    2595 are shown in the tool tip and the status bar.</span></p>
    2596 
    2597 <p class=MsoListParagraphCxSpLast style='text-indent:-.25in;mso-list:l3 level1 lfo11'><span
     3044diagonal cell, the parameter name, value and <span class=SpellE>esd</span> is shown
     3045both as a tool tip and in the right hand portion of the status bar. If the
     3046cursor is off the diagonal, the two parameter names and their covariance are
     3047shown 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
    25983050style='mso-bookmark:Texture'><![if !supportLists]><span style='mso-fareast-font-family:
    25993051"Times New Roman"'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    26423094
    26433095<p class=MsoNormal><span style='mso-fareast-font-family:"Times New Roman"'>This
    2644 plot shows... <o:p></o:p></span></p>
     3096plot shows the variation of the selected parameters with respect to the data
     3097sequence number.<o:p></o:p></span></p>
    26453098
    26463099<h5><span style='mso-fareast-font-family:"Times New Roman"'>What can I do here?<o:p></o:p></span></h5>
Note: See TracChangeset for help on using the changeset viewer.