Changeset 5008
- Timestamp:
- Aug 5, 2021 7:43:13 AM (2 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIfiles.py
r4872 r5008 1020 1020 G2Print (' G(R) saved to: '+grfilename) 1021 1021 1022 if PDFsaves[5]: #RMCProfile files for F(Q) & g(r) overwrites any above1022 if len(PDFsaves) > 5 and PDFsaves[5]: #RMCProfile files for F(Q) & g(r) overwrites any above 1023 1023 1024 1024 fqfilename = fileroot+'.fq' -
trunk/GSASIIimage.py
r4903 r5008 699 699 dxyz0[:,:,2] += dzp 700 700 #non zero detector 2-theta: 701 if data ['det2theta']:701 if data.get('det2theta',0): 702 702 tthMat = makeMat(data['det2theta'],1) 703 703 dxyz = np.inner(dxyz0,tthMat.T) -
trunk/GSASIIimgGUI.py
r4889 r5008 147 147 ''' Do not use if pattern has uneven absorption 148 148 Set 2-theta max in image controls to be fully inside image 149 Enter 2-theta position for arc mask (32-%.1f) '''%IOtth[1],IOtth[1],IOtth,f ormat='%.2f')149 Enter 2-theta position for arc mask (32-%.1f) '''%IOtth[1],IOtth[1],IOtth,fmt='%.2f') 150 150 if dlg.ShowModal() == wx.ID_OK: 151 151 arcTth = dlg.GetValue() -
trunk/GSASIIplot.py
r4997 r5008 5040 5040 Id = G2gd.GetGPXtreeItemId(G2frame,Pid,'PDF Controls') 5041 5041 Pattern = G2frame.GPXtree.GetItemPyData(Id) 5042 if Pattern :5042 if Pattern and plotType in Pattern: 5043 5043 PlotList.append(Pattern[plotType]) 5044 5044 name = plotType
Note: See TracChangeset
for help on using the changeset viewer.