Changeset 1078
- Timestamp:
- Oct 3, 2013 1:52:21 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIstrIO.py
r1077 r1078 307 307 308 308 :param str GPXfile: full .gpx file name 309 :param str h Names: list of histogram names309 :param str hType: list of histogram types 310 310 :return: list of histogram names (types = PWDR & HKLF) 311 311 -
trunk/GSASIIstrMath.py
r1077 r1078 541 541 Tdata,Mdata,Fdata,Xdata,dXdata,IAdata,Uisodata,Uijdata = GetAtomFXU(pfx,calcControls,parmDict) 542 542 FF = np.zeros(len(Tdata)) 543 if 'N' in parmDict[hfx+'Type']:543 if 'N' in calcControls[hfx+'histType']: 544 544 FP,FPP = G2el.BlenRes(Tdata,BLtables,parmDict[hfx+'Lam']) 545 545 else: … … 555 555 Bab = parmDict[phfx+'BabA']*np.exp(-parmDict[phfx+'BabU']*SQfactor) 556 556 if not len(refl[-1]): #no form factors 557 if 'N' in parmDict[hfx+'Type']:557 if 'N' in calcControls[hfx+'histType']: 558 558 refl[-1] = G2el.getBLvalues(BLtables) 559 559 else: #'X' … … 593 593 Tdata,Mdata,Fdata,Xdata,dXdata,IAdata,Uisodata,Uijdata = GetAtomFXU(pfx,calcControls,parmDict) 594 594 FF = np.zeros(len(Tdata)) 595 if 'N' in parmDict[hfx+'Type']:595 if 'N' in calcControls[hfx+'histType']: 596 596 FP = 0. 597 597 FPP = 0.
Note: See TracChangeset
for help on using the changeset viewer.