Changeset 967
- Timestamp:
- Jun 24, 2013 12:21:37 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIElem.py
r942 r967 88 88 return BLtable 89 89 90 def getFFvalues(FFtables,SQ ):90 def getFFvalues(FFtables,SQ,ifList=False): 91 91 'Needs a doc string' 92 FFvals = {} 93 for El in FFtables: 94 FFvals[El] = ScatFac(FFtables[El],SQ)[0] 92 if ifList: 93 FFvals = [] 94 for El in FFtables: 95 FFvals.append(ScatFac(FFtables[El],SQ)[0]) 96 else: 97 FFvals = {} 98 for El in FFtables: 99 FFvals[El] = ScatFac(FFtables[El],SQ)[0] 95 100 return FFvals 96 101
Note: See TracChangeset
for help on using the changeset viewer.