Changeset 1217 for trunk/GSASIIpwd.py
- Timestamp:
- Feb 11, 2014 9:42:03 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIpwd.py
r1186 r1217 150 150 Cth2 = 1.-Sth2 151 151 if 'Cylinder' in Geometry: #Lobanov & Alte da Veiga for 2-theta = 0; beam fully illuminates sample 152 return np.where(MuR <3.0,muRunder3(Sth2),muRover3(Sth2)) 152 if MuR <= 3.0: 153 return muRunder3(Sth2) 154 else: 155 return muRover3(Sth2) 153 156 elif 'Bragg' in Geometry: 154 157 return 1.0
Note: See TracChangeset
for help on using the changeset viewer.