Changeset 2132 for trunk/exports/G2export_examples.py
- Timestamp:
- Jan 22, 2016 10:10:43 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/exports/G2export_examples.py
r1997 r2132 212 212 if 'T' in phasDict['Type']: 213 213 h,k,l,m,mult,dsp,pos,sig,gam,Fobs,Fcalc,phase,x,x,x,x,prfo = refItem[:17] 214 FWHM = 2.*G2pwd.getgamFW(gam,sig)214 FWHM = G2pwd.getgamFW(gam,sig) 215 215 self.Write(fmt.format(hklfmt.format(h,k,l,m),pos,Fobs,Fcalc,phase,mult,sig,gam,FWHM,prfo)) 216 216 else: 217 217 h,k,l,m,mult,dsp,pos,sig,gam,Fobs,Fcalc,phase,x,prfo = refItem[:14] 218 FWHM = 2.*G2pwd.getgamFW(gam,sig) 219 self.Write(fmt.format(hklfmt.format(h,k,l,m),pos,Fobs,Fcalc,phase,mult, \ 220 np.sqrt(max(sig,0.0001))/100.,gam/100.,FWHM/100.,prfo)) 218 g = gam/100. #centideg -> deg 219 s = np.sqrt(max(sig,0.0001))/100. #var -> sig in deg 220 FWHM = G2pwd.getgamFW(g,s) #FWHM 221 self.Write(fmt.format(hklfmt.format(h,k,l,m),pos,Fobs,Fcalc,phase,mult,s,g,FWHM,prfo)) 221 222 else: 222 223 self.Write(94*'=') … … 233 234 if 'T' in phasDict['Type']: 234 235 h,k,l,mult,dsp,pos,sig,gam,Fobs,Fcalc,phase,x,x,x,x,prfo = refItem[:16] 235 FWHM = 2.*G2pwd.getgamFW(gam,sig)236 FWHM = G2pwd.getgamFW(gam,sig) 236 237 self.Write(fmt.format(hklfmt.format(h,k,l),pos,Fobs,Fcalc,phase,mult,np.sqrt(max(sig,0.0001)),gam,FWHM,prfo)) 237 238 else: 238 239 h,k,l,mult,dsp,pos,sig,gam,Fobs,Fcalc,phase,x,prfo = refItem[:13] 239 FWHM = 2.*G2pwd.getgamFW(gam,sig) 240 g = gam/100. #centideg -> deg 241 s = np.sqrt(max(sig,0.0001))/100. #var -> sig in deg 242 FWHM = G2pwd.getgamFW(g,s) 240 243 self.Write(fmt.format(hklfmt.format(h,k,l),pos,Fobs,Fcalc,phase,mult, \ 241 np.sqrt(max(sig,0.0001))/100.,gam/100.,FWHM/100.,prfo))244 s,g,FWHM,prfo)) 242 245 self.CloseFile() 243 246 print(str(hist)+'reflections written to file '+str(self.fullpath))
Note: See TracChangeset
for help on using the changeset viewer.