Changeset 3210 for trunk/GSASIIspc.py
- Timestamp:
- Dec 29, 2017 12:52:35 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/GSASIIspc.py ¶
r3208 r3210 404 404 SGText.append(' The equivalent positions are:\n') 405 405 else: 406 SGText.append(' The equivalent positions are: ')406 SGText.append(' The equivalent positions are:\n') 407 407 SGText.append(' ('+Latt2text(SGData['SGCen'])+')+\n') 408 408 SGTable = [] … … 1385 1385 return True 1386 1386 if SGData.get('SGGray',False): 1387 if sym [-1] == 's':1387 if sym and sym[-1] == 's': 1388 1388 sym = sym[:-1] 1389 1389 if sym == '': 1390 1390 return True 1391 1391 else: 1392 return False 1392 sym += 's' 1393 return True 1393 1394 # monoclinic - all done 1394 1395 if str(SSGKl) == '[-1]' and sym == 's': … … 1490 1491 if len(gensym) and Ngen != len(SSGKl): 1491 1492 return 'Wrong number of items in generator symbol '+''.join(gensym),None 1492 if not checkGen(gensym):1493 return 'Generator '+''.join(gensym)+' not consistent with space group '+SGData['SpGrp'],None1493 # if not checkGen(gensym): 1494 # return 'Generator '+''.join(gensym)+' not consistent with space group '+SGData['SpGrp'],None 1494 1495 gensym = specialGen(gensym[:Ngen],modsym) 1495 1496 genQ = [Fracs[mod] for mod in gensym[:Ngen]]
Note: See TracChangeset
for help on using the changeset viewer.