Changeset 5343
- Timestamp:
- Oct 6, 2022 10:16:28 AM (8 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIphsGUI.py
r5341 r5343 1197 1197 nhist += 1 1198 1198 Inst = Histograms[item]['Instrument Parameters'][0] 1199 dmax,dmin = [G2lat.Pos2dsp(Inst,t) for t in Histograms[item]['Limits'][1]] 1199 if 'T' in Inst['Type'][1]: 1200 dmin,dmax = [G2lat.Pos2dsp(Inst,t) for t in Histograms[item]['Limits'][1]] 1201 else: 1202 dmax,dmin = [G2lat.Pos2dsp(Inst,t) for t in Histograms[item]['Limits'][1]] 1200 1203 if dmaxAll is None: 1201 1204 dmaxAll = dmax … … 13626 13629 style=wx.DEFAULT_DIALOG_STYLE) 13627 13630 mainSizer = wx.BoxSizer(wx.VERTICAL) 13628 mainSizer.Add(wx.StaticText(genDlg,wx.ID_ANY, 13629 'Set Pawley Extraction Parameters for phase '+generalData.get('Name','?'))) 13631 mainSizer.Add(wx.StaticText(genDlg,label='Set Pawley Extraction Parameters for phase '+generalData['Name'])) 13630 13632 mainSizer.Add([5,10]) 13631 13633 pawlRef = G2G.G2CheckBoxFrontLbl(genDlg,' Do Pawley refinement?: ',generalData,'doPawley',DisablePawleyOpts) -
trunk/GSASIIstrMath.py
r5307 r5343 1559 1559 # MmodAR,MmodBR,MmodAI,MmodBI = G2mth.MagMod(glTau,mXYZ,modQ,MSSdata,SGData,SSGData) #Ntau,Nops,Natm,Mxyz cos,sin parts sum matches drawing 1560 1560 mXYZ,MmodAR,MmodBR,MmodAI,MmodBI = G2mth.MagMod2(glTau,Xdata+dXdata,modQ,MSSdata,SGData,SSGData) #Ntau,Nops,Natm,Mxyz cos,sin parts sum matches drawing 1561 1561 #expand Mmod over mag symm ops. --> GSSdata 1562 1562 if not SGData['SGGray']: #for fixed Mx,My,Mz 1563 1563 GSdata = np.inner(Gdata.T,np.swapaxes(SGMT,1,2)) #apply sym. ops.--> Natm,Nops,Nxyz
Note: See TracChangeset
for help on using the changeset viewer.