Changeset 2062 for trunk/GSASIIobj.py
- Timestamp:
- Nov 21, 2015 9:45:03 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIobj.py
r1924 r2062 1187 1187 s = 'Hist='+ShortHistNames.get(l[1],'? #'+str(l[1])) 1188 1188 l[-1] += ' #'+str(l[3]) 1189 elif l[4] is not None: # rigid body parameter 1189 elif l[4] is not None: # rigid body parameter or modulation parm 1190 1190 lbl = ShortPhaseNames.get(l[0],'phase?') 1191 s = "Res #"+str(l[3])+" body #"+str(l[4])+" in "+str(lbl) 1191 if 'RB' in l[2]: #rigid body parm 1192 s = "Res #"+str(l[3])+" body #"+str(l[4])+" in "+str(lbl) 1193 else: #modulation parm 1194 s = 'Atom %s wave %s in %s'%(LookupAtomLabel(l[0],l[3])[0],l[4],lbl) 1192 1195 elif l[3] is not None: # atom parameter, 1193 1196 lbl = ShortPhaseNames.get(l[0],'phase?') … … 1324 1327 'Fsin' : 'Sin site fraction modulation', 1325 1328 'Fcos' : 'Cos site fraction modulation', 1326 'Fzero' : 'Crenel function offset', 1329 'Fzero' : 'Crenel function offset', #may go away 1327 1330 'Fwid' : 'Crenel function width', 1328 'Tzero' : 'Sawtooth/ZigZag location', 1329 '([XYZ])slope': 'Sawtooth/ZigZag slope for \\1', 1331 'Tmin' : 'ZigZag/Block min location', 1332 'Tmax' : 'ZigZag/Block max location', 1333 '([XYZ])max': 'ZigZag/Block max value for \\1', 1330 1334 '([XYZ])sin' : 'Sin position wave for \\1', 1331 1335 '([XYZ])cos' : 'Cos position wave for \\1',
Note: See TracChangeset
for help on using the changeset viewer.