Changeset 5301


Ignore:
Timestamp:
Jun 13, 2022 9:10:27 AM (3 years ago)
Author:
toby
Message:

Add option to show extinction reflections to Index Cells List display; expand help on this tree item significantly

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/GSASIIdataGUI.py

    r5297 r5301  
    31433143        self.ifX20 = True   #use M20 /= (1+X20) in powder indexing, etc.
    31443144        self.HKL = []
     3145        self.Extinct = []
    31453146        self.Lines = []     # lines used for data limits & excluded regions
    31463147        self.MagLines = []  # lines used for plot magnification
     
    34103411                for file_ajk in dlg.GetPaths():
    34113412                    self.HKL = []
     3413                    self.Extinct = []
    34123414                    self.powderfile = file_ajk
    34133415                    comments,peaks,limits,wave = G2IO.GetPowderPeaks(self.powderfile)
     
    43474349            self.GSASprojectfile = ''
    43484350            self.HKL = []
     4351            self.Extinct = []
    43494352            if self.G2plotNB.plotList:
    43504353                self.G2plotNB.clear()
     
    44034406        self.GPXtree.Expand(self.root)
    44044407        self.HKL = []
     4408        self.Extinct = []
    44054409        item, cookie = self.GPXtree.GetFirstChild(self.root)
    44064410        while item:
     
    44664470                self.GPXtree.DeleteChildren(self.root)
    44674471                self.dataWindow.ClearData()
    4468                 if len(self.HKL): self.HKL = []
     4472                if len(self.HKL):
     4473                    self.HKL = []
     4474                    self.Extinct = []
    44694475                if self.G2plotNB.plotList:
    44704476                    self.G2plotNB.clear()
     
    56915697        self.GPXtree.DeleteChildren(self.root)
    56925698        self.HKL = []
     5699        self.Extinct = []
    56935700        G2IO.ProjFileOpen(self,False)
    56945701        self.TreeItemDelete = False  # tree has been repopulated; ignore previous deletions
     
    58865893                    self.PickIdText = None  #force reload of PickId contents
    58875894                    self.GPXtree.DeleteChildren(self.root)
    5888                     if len(self.HKL): self.HKL = []
     5895                    if len(self.HKL):
     5896                        self.HKL = []
     5897                        self.Extinct = []
    58895898                    G2IO.ProjFileOpen(self,False)
    58905899                    self.GPXtree.RestoreExposedItems()
  • TabularUnified trunk/GSASIIplot.py

    r5295 r5301  
    20202020        print('Possible PickId problem PickId=',G2frame.PickId)
    20212021    # for now I am not sure how to regenerate G2frame.HKL
    2022     G2frame.HKL = []
     2022    G2frame.HKL = []  # array of generated reflections
     2023    G2frame.Extinct = [] # array of extinct reflections
    20232024    PlotPatterns(G2frame,newPlot,plotType)
    20242025
     
    24122413                    indx = -2
    24132414                # finds reflections within 1% of plot range in units of plot
    2414                 found = G2frame.HKL[np.where(np.fabs(G2frame.HKL.T[indx]-xpos) < dT/2.)]
     2415                found = G2frame.HKL[np.where(np.fabs(G2frame.HKL.T[indx]-xpos) < dT/2.)]
     2416                if len(G2frame.Extinct):
     2417                    G2frame.Extinct = np.array(G2frame.Extinct)
     2418                    f2 = G2frame.Extinct[np.where(np.fabs(G2frame.Extinct.T[indx]-xpos) < dT/2.)]
     2419                    found = np.concatenate((found,f2))
    24152420                if len(found):
    24162421                    if len(found[0]) > 6:   #SS reflections
     
    38053810                else:
    38063811                    Plot.axvline(hkl[-2],color=clr,dashes=(3,3),lw=1.5)
     3812            for hkl in G2frame.Extinct: # plot extinct reflections
     3813                clr = 'b'
     3814                if Page.plotStyle['qPlot']:
     3815                    Plot.axvline(2.*np.pi/G2lat.Pos2dsp(Parms,hkl[-2]),color=clr,dashes=(3,3),lw=1.5)
     3816                elif Page.plotStyle['dPlot']:
     3817                    Plot.axvline(G2lat.Pos2dsp(Parms,hkl[-2]),color=clr,dashes=(3,3),lw=1.5)
     3818                else:
     3819                    Plot.axvline(hkl[-2],color=clr,dashes=(3,3),lw=1.5)
    38073820        elif Page.plotStyle.get('WgtDiagnostic',False):
    38083821            pass # skip reflection markers
  • TabularUnified trunk/GSASIIpwdGUI.py

    r5273 r5301  
    33173317                dmin = G2lat.Pos2dsp(Inst,Limits[1][1])
    33183318            G2frame.HKL = []
     3319            G2frame.Extinct = []
    33193320            if ssopt.get('Use',False):
    33203321                cell = controls[6:12]
     
    33923393################################################################################
    33933394
     3395cellDisplayOpts = {'showExtinct':False}
    33943396def UpdateUnitCellsGrid(G2frame, data):
    33953397    '''respond to selection of PWDR Unit Cells data tree item.
     
    36063608        OnHklShow(tc.event)
    36073609        wx.CallAfter(UpdateUnitCellsGrid,G2frame,data)
     3610
     3611#    def OnUpdatePlot(event):
     3612#        wx.CallAfter(UpdateUnitCellsGrid,G2frame,data)
     3613#        OnHklShow(event)
     3614        #G2plt.PlotPatterns(G2frame,extraKeys=KeyList)
    36083615       
    36093616    def OnHklShow(event):
     
    36373644        else:
    36383645            G2frame.HKL = G2pwd.getHKLpeak(dmin,SGData,A,Inst)
     3646            G2frame.Extinct = []
     3647            if cellDisplayOpts['showExtinct']:  #  show extinct reflections
     3648                allpeaks = G2pwd.getHKLpeak(dmin,G2spc.SpcGroup('P 1')[1],A,Inst)
     3649                alreadyShown = G2frame.HKL[:,4].round(3)               
     3650                for peak in allpeaks: # show one reflection only if in a region with no others
     3651                    pos = peak[4].round(3)
     3652                    if pos in alreadyShown: continue
     3653                    alreadyShown = np.append(alreadyShown,pos)
     3654                    G2frame.Extinct.append(peak)
    36393655            if len(peaks[0]):
    36403656                peaks = [G2indx.IndexPeaks(peaks[0],G2frame.HKL)[1],peaks[1]]   #keep esds from peak fit
     
    45134529        wx.CallAfter(UpdateUnitCellsGrid,G2frame,data)
    45144530
    4515     #### UpdateIndexPeaksGrid code starts here
     4531    #### UpdateUnitCellsGrid code starts here
    45164532    G2frame.ifGetExclude = False
    45174533    UnitCellsId = G2gd.GetGPXtreeItemId(G2frame,G2frame.PatternId, 'Unit Cells List')
     
    46644680    littleSizer.Add(spcSel,0,WACV)
    46654681    if 'E' not in Inst['Type'][0]:
     4682        SSopt = wx.CheckBox(G2frame.dataWindow,label="Modulated?")
     4683        SSopt.SetValue(ssopt.get('Use',False))
     4684        SSopt.Bind(wx.EVT_CHECKBOX,OnSSopt)
     4685        littleSizer.Add(SSopt,0,WACV)
    46664686        if ssopt.get('Use',False):        #zero for super lattice doesn't work!
    46674687            controls[0] = False
    46684688        else:
     4689            littleSizer.Add(G2G.G2CheckBox(
     4690                G2frame.dataWindow,'Show Extinct',cellDisplayOpts,'showExtinct',
     4691                OnChange=OnHklShow),0,WACV)
     4692#                OnChange=OnUpdatePlot),0,WACV)
     4693        if 'N' in Inst['Type'][0]:
     4694            MagSel = wx.CheckBox(G2frame.dataWindow,label="Magnetic?")
     4695            MagSel.SetValue('MagSpGrp' in SGData)
     4696            MagSel.Bind(wx.EVT_CHECKBOX,OnMagSel)
     4697            littleSizer.Add(MagSel,0,WACV)
     4698        if not ssopt.get('Use',False):        #zero for super lattice doesn't work!
     4699            mainSizer.Add(littleSizer,0)
     4700            littleSizer = wx.BoxSizer(wx.HORIZONTAL)
    46694701            littleSizer.Add(wx.StaticText(G2frame.dataWindow,label=" Zero offset "),0,WACV)
    46704702            zero = G2G.ValidatedTxtCtrl(G2frame.dataWindow,controls,1,nDig=(10,4),typeHint=float,
     
    46754707            zeroVar.Bind(wx.EVT_CHECKBOX,OnZeroVar)
    46764708            littleSizer.Add(zeroVar,0,WACV)
    4677         SSopt = wx.CheckBox(G2frame.dataWindow,label="Modulated?")
    4678         SSopt.SetValue(ssopt.get('Use',False))
    4679         SSopt.Bind(wx.EVT_CHECKBOX,OnSSopt)
    4680         littleSizer.Add(SSopt,0,WACV)
    4681         if 'N' in Inst['Type'][0]:
    4682             MagSel = wx.CheckBox(G2frame.dataWindow,label="Magnetic?")
    4683             MagSel.SetValue('MagSpGrp' in SGData)
    4684             MagSel.Bind(wx.EVT_CHECKBOX,OnMagSel)
    4685             littleSizer.Add(MagSel,0,WACV)
    46864709    mainSizer.Add(littleSizer,0)
    46874710    mainSizer.Add((5,5),0)
  • TabularUnified trunk/help/gsasII-pwdr.html

    r5272 r5301  
    57525752none'><o:p></o:p></span></span></h5>
    57535753
    5754 <p class=MsoNormal style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><b>For
     5754<p class=MsoNormal>
     5755The actions that can be performed with this tree item are:
     5756<OL>
     5757  <LI>Autoindexing</LI>
     5758  <LI>Visualizing reflection positions</LI>
     5759  <LI>Symmetry exploration</LI>
     5760  <LI>Cell fitting</LI>
     5761</OL>
     5762</p>
     5763
     5764<p class=MsoNormal style='text-indent:-36px;padding-left:36px;'>1. <b>For
    57555765autoindexing</b>, the peaks in the <a href="#Index_Peak_List">Index Peak List</a>
    57565766are used. Select one or more Bravais lattice types to use and use the
     
    57585768indexing. Output will appear on the console and a progress bar dialog will
    57595769appear which tracks trial volume. A <b style='mso-bidi-font-weight:normal'>Cancel</b>
    5760 button will terminate indexing; it may need to be pressed more than once to
     5770button will terminate indexing for the Bravais lattice being searched;
     5771one may need to press it more than once to
    57615772fully terminate the indexing process. Console output shows possible solutions
    57625773with a computed <b>M20</b> for each; good solutions are indicated by high <b>M20</b>
     
    57655776number of reflections generated for each solution. </p>
    57665777
    5767 <p class=MsoNormal style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>The
    5768 &quot;Copy Cell&quot; menu command copies a selected solution to the Unit cell
     5778<p class=MsoNormal style='text-indent:12px;padding-left:36px;'>
     5779The &quot;Copy Cell&quot; menu command copies a selected solution to the Unit cell
    57695780values; the Bravais lattice shown for the choice is copied. Press <b
    57705781style='mso-bidi-font-weight:normal'>Show <span class=SpellE>hkl</span>
     
    57765787visually eliminate possibilities. </p>
    57775788
    5778 <p class=MsoListParagraphCxSpFirst style='margin-left:39.2pt;mso-add-space:
    5779 auto;text-indent:-.25in;mso-list:l16 level4 lfo36;tab-stops:list 39.2pt'><![if !supportLists]><span
    5780 style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Wingdings;
    5781 mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
    5782 style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><b><span
    5783 style='mso-fareast-font-family:"Times New Roman"'>Max Nc/Nobs</span></b><span
    5784 style='mso-fareast-font-family:"Times New Roman"'>: – this controls the extent
     5789<UL class=MsoNormal style='margin-left:10pt'>
     5790 <LI><B>Max Nc/Nobs</b>: – this controls the extent
    57855791of the search for the correct indexing. This may need to be increased if an
    5786 indexing trial terminates too quickly. It rarely needs to be changed. <o:p></o:p></span></p>
    5787 
    5788 <p class=MsoListParagraphCxSpLast style='margin-left:39.2pt;mso-add-space:auto;
    5789 text-indent:-.25in;mso-list:l16 level4 lfo36;tab-stops:list 39.2pt'><![if !supportLists]><span
    5790 style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Wingdings;
    5791 mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
    5792 style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><b><span
    5793 style='mso-fareast-font-family:"Times New Roman"'>Start Volume</span></b><span
    5794 style='mso-fareast-font-family:"Times New Roman"'>: – this sets an initial unit
    5795 cell volume for the indexing. It rarely needs to be changed. <o:p></o:p></span></p>
    5796 
    5797 <p class=MsoNormal style='margin-left:21.2pt'><span style='mso-fareast-font-family:
    5798 "Times New Roman"'>Select &quot;keep&quot; in the table for a cell that should
     5792indexing trial terminates too quickly. It rarely needs to be changed. </LI>
     5793<LI><B>Start Volume</b>: – this sets an initial unit
     5794cell volume for the indexing. It rarely needs to be changed. </LI>
     5795<LI>Select <B>&quot;try&quot;</B> in the table to display the reflection
     5796positions the selected unit cell/space group
     5797(as described <A href=#CellDisplay>below</A>).
     5798<LI>Select <B>&quot;keep&quot;</B> in the table for a cell that should
    57995799be preserved when an additional indexing run is tried; all without that are
    5800 erased before the indexing trial begins. <o:p></o:p></span></p>
    5801 
    5802 <p class=MsoNormal style='margin-left:21.2pt'><span style='mso-fareast-font-family:
    5803 "Times New Roman"'><o:p>&nbsp;</o:p></span></p>
    5804 
    5805 <p class=MsoListParagraphCxSpFirst style='margin-left:39.2pt;mso-add-space:
    5806 auto;text-indent:-.25in;mso-list:l34 level4 lfo37;tab-stops:list 39.2pt left 45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><![if !supportLists]><span
    5807 style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Wingdings;
    5808 mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
    5809 style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><b>To
    5810 display a unit cell</b>, optionally with space group extinctions, set a Bravais
    5811 class to determine a unit cell type (see <a href="#Laue_List">list below</a>),
    5812 optionally select a space group (by default the highest symmetry space group
    5813 for the class is selected) and enter the unit cell parameters. Or use the
     5800erased before the indexing trial begins.</p>
     5801</UL>
     5802<P></P>
     5803<A name=CellDisplay></A>
     5804<p class=MsoNormal style='text-indent:-36px;padding-left:36px;'>2. <b>To
     5805display a unit cell</b>, possibly with space group extinctions, enter
     5806the unit cell here. Optionally enter space group information here as well.
     5807The values can be typed into the appropriate boxes (note that the Bravais
     5808class determines which cell parameters are available) or use the
    58145809&quot;Cell Index/Refine&quot;/&quot;Load Phase&quot; menu command to read this
    58155810information from a phase that has been read into a project or from a file (such
    58165811as a CIF) using the &quot;Cell Index/Refine&quot;/&quot;Import Cell&quot; menu
    5817 command. </p>
    5818 
    5819 <p class=MsoListParagraphCxSpMiddle style='margin-left:39.2pt;mso-add-space:
    5820 auto;text-indent:-.25in;mso-list:l34 level4 lfo37;tab-stops:list 39.2pt left 45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><![if !supportLists]><span
    5821 style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Wingdings;
    5822 mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
    5823 style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><b>For
    5824 symmetry exploration</b>, once a phase/cell has been loaded, use the &quot;Run
    5825 SUBGROUPS&quot;, &quot;Cell Symmetry Search&quot; or &quot;Run
    5826 k-SUBGROUPSMAG&quot; commands from the &quot;Cell Index/Refine&quot; menu.
    5827 These commands look for: subgroups, lower symmetry cells or magnetic subgroups,
    5828 respectively. Also note the &quot;Transform Cell&quot; command in that menu
    5829 that can perform many common lattice transformations, apply a user-supplied
    5830 cell <span class=GramE>transformation</span> or create a magnetic phase. </p>
    5831 
    5832 <p class=MsoListParagraphCxSpMiddle style='margin-left:39.2pt;mso-add-space:
    5833 auto;text-indent:-.25in;mso-list:l34 level4 lfo37;tab-stops:list 39.2pt left 45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><![if !supportLists]><span
    5834 style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Wingdings;
    5835 mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
    5836 style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><b>To
    5837 optimize a cell</b>, to fit the peaks in the <a href="#Index_Peak_List">Index
     5812command. Note that the values in the unit cell parameter boxes can be specified
     5813 as Python equations, thus entering "*2" after a value will double it
     5814and "/2" will divide it by two.
     5815
     5816</p>
     5817<p class=MsoNormal style='text-indent:12px;padding-left:36px;'>
     5818To change the displayed extinctions, first set a Bravais
     5819class, which determines the unit cell type (see <a
     5820 href="#Laue_List">list below</a>), and then
     5821optionally select a space group (by default the highest symmetry space group
     5822for the class is selected).
     5823As any change is made to the unit cell values or the symmetry, the
     5824 display of reflection positions shown in the plot window is
     5825 immediately updated. The "Show hkl positions" button also forces an
     5826 update of the plot, but this is normally not needed.
     5827</p>
     5828<p class=MsoNormal style='text-indent:12px;padding-left:36px;'>
     5829Reflection positions
     5830are displayed as dashed vertical lines. Reflections will normally be shown as
     5831 orange, but green lines are used instead in 3+1 superspace groups for
     5832 reflections with non-zero components in the fourth dimension
     5833("superlattice lines"). If the "Show
     5834 extinct" option is selected, then reflections that are generated by
     5835 the unit cell, but must be zero in intensity due to the selected
     5836 space group are shown with blue dashed lines. This slows computations
     5837somewhat. Note that the speed of reflection display is determined by
     5838the number of reflections that are computed, so reducing the range of
     5839data used by changing the diffraction
     5840<a href="#PWDR_Limits">Limits</a> will speed the refresh of the
     5841display when values/symmetry is changed.
     5842</p>
     5843<p class=MsoNormal style='text-indent:12px;padding-left:36px;'>
     5844The reflection indices
     5845 (<I>hkl</I> values) can be displayed by moving the mouse cursor over
     5846 a reflection line and waiting ("hovering"). After a short delay, the
     5847 indices for all nearby reflections are shown temporarily as a "tool
     5848 tip". If multiple reflections are closely spaced, the reflection
     5849 indices will be listed in the order that reflections occur, but
     5850 extinct reflections are shown after non-extinct. Also, if multiple
     5851 extinct reflections occur at the same location, only the first of
     5852 them is used.
     5853
     5854<P></P>
     5855<p class=MsoNormal style='text-indent:-36px;padding-left:36px;'>3. <b>For
     5856symmetry exploration</b>, once a phase/cell has been loaded, the
     5857following commands in available in the &quot;Cell Index/Refine&quot; menu
     5858to explore related unit cells and space groups. Use the:
     5859<UL>
     5860<LI>&quot;Run SUBGROUPS&quot; menu item to generate lower symmetry space groups for
     5861  the loaded phase;</LI>
     5862  <LI>&quot;Cell Symmetry Search&quot; menu item to find higher
     5863  symmetry unit cells equivalent to the current cell.
     5864  <LI>&quot;Run k-SUBGROUPSMAG&quot; menu item to find magnetic
     5865  subgroups (with neutron data)
     5866  commands from the
     5867  <LI>&quot;Transform Cell&quot; command in that menu
     5868can perform many common lattice transformations, apply a user-supplied
     5869cell <span class=GramE>transformation</span> or create a magnetic
     5870  phase. </p>
     5871</UL>
     5872</P>
     5873<p class=MsoNormal style='text-indent:12px;padding-left:36px;'>
     5874Note that &quot;Run SUBGROUPS&quot;, &quot;Cell Symmetry Search&quot;
     5875and &quot;Run k-SUBGROUPSMAG&quot; access the Bilbao Crystallographic
     5876Server [for use please cite:
     5877<A href="https://doi.org/doi:10.1524/zkri.2006.221.1.15">
     5878Bilbao Crystallographic Server I: Databases and crystallographic computing programs,
     5879M. I. Aroyo, J. M. Perez-Mato, C. Capillas, E. Kroumova, S. Ivantchev, G. Madariaga, A. Kirov & H. Wondratschek
     5880Z. Krist. 221, 1, 15-27 (2006).</A>]
     5881
     5882<P></P>
     5883<p class=MsoNormal style='text-indent:-36px;padding-left:36px;'>4. <b>To
     5884optimize a cell</b> to fit the indexed peaks in the <a href="#Index_Peak_List">Index
    58385885Peak List</a>, use the &quot;Cell Index/Refine&quot;/&quot;Refine Cell&quot;
    58395886menu command. The results will be placed in the <b>Indexing Result</b> table
    58405887with ‘<b>use’</b> selected. </p>
    58415888
    5842 <p class=MsoListParagraphCxSpLast style='margin-left:39.2pt;mso-add-space:auto;
    5843 text-indent:-.25in;mso-list:l34 level4 lfo37;tab-stops:list 39.2pt left 45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><![if !supportLists]><span
    5844 style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Wingdings;
    5845 mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
    5846 style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><b>Other</b>:
     5889<P></P>
     5890<p class=MsoNormal style='text-indent:-36px;padding-left:36px;'><b>Other</b>:
    58475891The &quot;Make new phase&quot; command creates a new phase from the selected
    58485892unit cell and chosen space group. A dialog box will appear asking for a name
     
    58505894will be in the <a href="#General">General </a>window for that phase. </p>
    58515895
    5852 <p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><a
    5853 name="Laue_List"><b>GSAS-II Laue classes</b> (note that some redundant entries
    5854 are included for convenience.)</a></p>
     5896<P></P>
     5897<p class=MsoNormal style='text-indent:-36px;padding-left:36px;'>
     5898GSAS-II offers space groups in the following Laue classes (note that
     5899some redundant choices are included for convenience):
     5900<p class=MsoNormal style=text-indent:0.25in><a
     5901name="Laue_List"><b>GSAS-II Laue classes</b> </a></p>
    58555902
    58565903<span style='mso-bookmark:Laue_List'></span>
     
    60416088
    60426089<p class=MsoNormal style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
    6043 style='mso-fareast-font-family:"Times New Roman"'><!-- hhmts start -->Last modified: Fri May  6 13:32:49 CDT 2022 <!-- hhmts end --><o:p></o:p></span></p>
     6090style='mso-fareast-font-family:"Times New Roman"'><!-- hhmts start -->Last modified: Mon Jun 13 09:09:51 CDT 2022 <!-- hhmts end --><o:p></o:p></span></p>
    60446091
    60456092</div>
Note: See TracChangeset for help on using the changeset viewer.