Changeset 5119 for trunk/GSASIIspc.py
- Timestamp:
- Dec 26, 2021 9:15:19 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIspc.py
r5112 r5119 3701 3701 if len(fields) == 4 and fields[1] == '1' and fields[3] == '1': #b-unique monoclinics 3702 3702 return fields[0]+' '+fields[2] 3703 if '/' not in SpcGp :3703 if '/' not in SpcGp or len(fields) < 3: 3704 3704 return SpcGp 3705 3705 if '-3' in fields[1]: #trigonals … … 3719 3719 fields[3] = fields[3].split('/')[1] 3720 3720 return ' '.join(fields) 3721 if '/' in fields[1] and len(fields) == 4: #orthorhombics3721 if len(fields) == 4 and '/' in fields[1] and '/' in fields[2] and '/' in fields[3]: #orthorhombics 3722 3722 if fields[2] == '1': #skip a-unique monoclinics 3723 3723 return SpcGp
Note: See TracChangeset
for help on using the changeset viewer.