Changeset 5301
- Timestamp:
- Jun 13, 2022 9:10:27 AM (3 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/GSASIIdataGUI.py ¶
r5297 r5301 3143 3143 self.ifX20 = True #use M20 /= (1+X20) in powder indexing, etc. 3144 3144 self.HKL = [] 3145 self.Extinct = [] 3145 3146 self.Lines = [] # lines used for data limits & excluded regions 3146 3147 self.MagLines = [] # lines used for plot magnification … … 3410 3411 for file_ajk in dlg.GetPaths(): 3411 3412 self.HKL = [] 3413 self.Extinct = [] 3412 3414 self.powderfile = file_ajk 3413 3415 comments,peaks,limits,wave = G2IO.GetPowderPeaks(self.powderfile) … … 4347 4349 self.GSASprojectfile = '' 4348 4350 self.HKL = [] 4351 self.Extinct = [] 4349 4352 if self.G2plotNB.plotList: 4350 4353 self.G2plotNB.clear() … … 4403 4406 self.GPXtree.Expand(self.root) 4404 4407 self.HKL = [] 4408 self.Extinct = [] 4405 4409 item, cookie = self.GPXtree.GetFirstChild(self.root) 4406 4410 while item: … … 4466 4470 self.GPXtree.DeleteChildren(self.root) 4467 4471 self.dataWindow.ClearData() 4468 if len(self.HKL): self.HKL = [] 4472 if len(self.HKL): 4473 self.HKL = [] 4474 self.Extinct = [] 4469 4475 if self.G2plotNB.plotList: 4470 4476 self.G2plotNB.clear() … … 5691 5697 self.GPXtree.DeleteChildren(self.root) 5692 5698 self.HKL = [] 5699 self.Extinct = [] 5693 5700 G2IO.ProjFileOpen(self,False) 5694 5701 self.TreeItemDelete = False # tree has been repopulated; ignore previous deletions … … 5886 5893 self.PickIdText = None #force reload of PickId contents 5887 5894 self.GPXtree.DeleteChildren(self.root) 5888 if len(self.HKL): self.HKL = [] 5895 if len(self.HKL): 5896 self.HKL = [] 5897 self.Extinct = [] 5889 5898 G2IO.ProjFileOpen(self,False) 5890 5899 self.GPXtree.RestoreExposedItems() -
TabularUnified trunk/GSASIIplot.py ¶
r5295 r5301 2020 2020 print('Possible PickId problem PickId=',G2frame.PickId) 2021 2021 # 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 2023 2024 PlotPatterns(G2frame,newPlot,plotType) 2024 2025 … … 2412 2413 indx = -2 2413 2414 # 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)) 2415 2420 if len(found): 2416 2421 if len(found[0]) > 6: #SS reflections … … 3805 3810 else: 3806 3811 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) 3807 3820 elif Page.plotStyle.get('WgtDiagnostic',False): 3808 3821 pass # skip reflection markers -
TabularUnified trunk/GSASIIpwdGUI.py ¶
r5273 r5301 3317 3317 dmin = G2lat.Pos2dsp(Inst,Limits[1][1]) 3318 3318 G2frame.HKL = [] 3319 G2frame.Extinct = [] 3319 3320 if ssopt.get('Use',False): 3320 3321 cell = controls[6:12] … … 3392 3393 ################################################################################ 3393 3394 3395 cellDisplayOpts = {'showExtinct':False} 3394 3396 def UpdateUnitCellsGrid(G2frame, data): 3395 3397 '''respond to selection of PWDR Unit Cells data tree item. … … 3606 3608 OnHklShow(tc.event) 3607 3609 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) 3608 3615 3609 3616 def OnHklShow(event): … … 3637 3644 else: 3638 3645 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) 3639 3655 if len(peaks[0]): 3640 3656 peaks = [G2indx.IndexPeaks(peaks[0],G2frame.HKL)[1],peaks[1]] #keep esds from peak fit … … 4513 4529 wx.CallAfter(UpdateUnitCellsGrid,G2frame,data) 4514 4530 4515 #### Update IndexPeaksGrid code starts here4531 #### UpdateUnitCellsGrid code starts here 4516 4532 G2frame.ifGetExclude = False 4517 4533 UnitCellsId = G2gd.GetGPXtreeItemId(G2frame,G2frame.PatternId, 'Unit Cells List') … … 4664 4680 littleSizer.Add(spcSel,0,WACV) 4665 4681 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) 4666 4686 if ssopt.get('Use',False): #zero for super lattice doesn't work! 4667 4687 controls[0] = False 4668 4688 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) 4669 4701 littleSizer.Add(wx.StaticText(G2frame.dataWindow,label=" Zero offset "),0,WACV) 4670 4702 zero = G2G.ValidatedTxtCtrl(G2frame.dataWindow,controls,1,nDig=(10,4),typeHint=float, … … 4675 4707 zeroVar.Bind(wx.EVT_CHECKBOX,OnZeroVar) 4676 4708 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)4686 4709 mainSizer.Add(littleSizer,0) 4687 4710 mainSizer.Add((5,5),0) -
TabularUnified trunk/help/gsasII-pwdr.html ¶
r5272 r5301 5752 5752 none'><o:p></o:p></span></span></h5> 5753 5753 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> 5755 The 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 5755 5765 autoindexing</b>, the peaks in the <a href="#Index_Peak_List">Index Peak List</a> 5756 5766 are used. Select one or more Bravais lattice types to use and use the … … 5758 5768 indexing. Output will appear on the console and a progress bar dialog will 5759 5769 appear 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 5770 button will terminate indexing for the Bravais lattice being searched; 5771 one may need to press it more than once to 5761 5772 fully terminate the indexing process. Console output shows possible solutions 5762 5773 with a computed <b>M20</b> for each; good solutions are indicated by high <b>M20</b> … … 5765 5776 number of reflections generated for each solution. </p> 5766 5777 5767 <p class=MsoNormal style='t ab-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'>The5768 "Copy Cell" menu command copies a selected solution to the Unit cell5778 <p class=MsoNormal style='text-indent:12px;padding-left:36px;'> 5779 The "Copy Cell" menu command copies a selected solution to the Unit cell 5769 5780 values; the Bravais lattice shown for the choice is copied. Press <b 5770 5781 style='mso-bidi-font-weight:normal'>Show <span class=SpellE>hkl</span> … … 5776 5787 visually eliminate possibilities. </p> 5777 5788 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"'> </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 5785 5791 of 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"'> </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 "keep" in the table for a cell that should 5792 indexing trial terminates too quickly. It rarely needs to be changed. </LI> 5793 <LI><B>Start Volume</b>: – this sets an initial unit 5794 cell volume for the indexing. It rarely needs to be changed. </LI> 5795 <LI>Select <B>"try"</B> in the table to display the reflection 5796 positions the selected unit cell/space group 5797 (as described <A href=#CellDisplay>below</A>). 5798 <LI>Select <B>"keep"</B> in the table for a cell that should 5799 5799 be 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> </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"'> </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 5800 erased 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 5805 display a unit cell</b>, possibly with space group extinctions, enter 5806 the unit cell here. Optionally enter space group information here as well. 5807 The values can be typed into the appropriate boxes (note that the Bravais 5808 class determines which cell parameters are available) or use the 5814 5809 "Cell Index/Refine"/"Load Phase" menu command to read this 5815 5810 information from a phase that has been read into a project or from a file (such 5816 5811 as a CIF) using the "Cell Index/Refine"/"Import Cell" 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"'> </span></span></span><![endif]><b>For 5824 symmetry exploration</b>, once a phase/cell has been loaded, use the "Run 5825 SUBGROUPS", "Cell Symmetry Search" or "Run 5826 k-SUBGROUPSMAG" commands from the "Cell Index/Refine" menu. 5827 These commands look for: subgroups, lower symmetry cells or magnetic subgroups, 5828 respectively. Also note the "Transform Cell" 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"'> </span></span></span><![endif]><b>To 5837 optimize a cell</b>, to fit the peaks in the <a href="#Index_Peak_List">Index 5812 command. 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 5814 and "/2" will divide it by two. 5815 5816 </p> 5817 <p class=MsoNormal style='text-indent:12px;padding-left:36px;'> 5818 To change the displayed extinctions, first set a Bravais 5819 class, which determines the unit cell type (see <a 5820 href="#Laue_List">list below</a>), and then 5821 optionally select a space group (by default the highest symmetry space group 5822 for the class is selected). 5823 As 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;'> 5829 Reflection positions 5830 are 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 5837 somewhat. Note that the speed of reflection display is determined by 5838 the number of reflections that are computed, so reducing the range of 5839 data used by changing the diffraction 5840 <a href="#PWDR_Limits">Limits</a> will speed the refresh of the 5841 display when values/symmetry is changed. 5842 </p> 5843 <p class=MsoNormal style='text-indent:12px;padding-left:36px;'> 5844 The 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 5856 symmetry exploration</b>, once a phase/cell has been loaded, the 5857 following commands in available in the "Cell Index/Refine" menu 5858 to explore related unit cells and space groups. Use the: 5859 <UL> 5860 <LI>"Run SUBGROUPS" menu item to generate lower symmetry space groups for 5861 the loaded phase;</LI> 5862 <LI>"Cell Symmetry Search" menu item to find higher 5863 symmetry unit cells equivalent to the current cell. 5864 <LI>"Run k-SUBGROUPSMAG" menu item to find magnetic 5865 subgroups (with neutron data) 5866 commands from the 5867 <LI>"Transform Cell" command in that menu 5868 can perform many common lattice transformations, apply a user-supplied 5869 cell <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;'> 5874 Note that "Run SUBGROUPS", "Cell Symmetry Search" 5875 and "Run k-SUBGROUPSMAG" access the Bilbao Crystallographic 5876 Server [for use please cite: 5877 <A href="https://doi.org/doi:10.1524/zkri.2006.221.1.15"> 5878 Bilbao Crystallographic Server I: Databases and crystallographic computing programs, 5879 M. I. Aroyo, J. M. Perez-Mato, C. Capillas, E. Kroumova, S. Ivantchev, G. Madariaga, A. Kirov & H. Wondratschek 5880 Z. 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 5884 optimize a cell</b> to fit the indexed peaks in the <a href="#Index_Peak_List">Index 5838 5885 Peak List</a>, use the "Cell Index/Refine"/"Refine Cell" 5839 5886 menu command. The results will be placed in the <b>Indexing Result</b> table 5840 5887 with ‘<b>use’</b> selected. </p> 5841 5888 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"'> </span></span></span><![endif]><b>Other</b>: 5889 <P></P> 5890 <p class=MsoNormal style='text-indent:-36px;padding-left:36px;'><b>Other</b>: 5847 5891 The "Make new phase" command creates a new phase from the selected 5848 5892 unit cell and chosen space group. A dialog box will appear asking for a name … … 5850 5894 will be in the <a href="#General">General </a>window for that phase. </p> 5851 5895 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;'> 5898 GSAS-II offers space groups in the following Laue classes (note that 5899 some redundant choices are included for convenience): 5900 <p class=MsoNormal style=text-indent:0.25in><a 5901 name="Laue_List"><b>GSAS-II Laue classes</b> </a></p> 5855 5902 5856 5903 <span style='mso-bookmark:Laue_List'></span> … … 6041 6088 6042 6089 <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:49CDT 2022 <!-- hhmts end --><o:p></o:p></span></p>6090 style='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> 6044 6091 6045 6092 </div>
Note: See TracChangeset
for help on using the changeset viewer.