Changeset 3465 for trunk/GSASIIspc.py


Ignore:
Timestamp:
Jul 10, 2018 11:41:00 AM (5 years ago)
Author:
vondreele
Message:

deal with export/import issues for mag cif files
fix bug for new phase - append atom (space group change problem)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIspc.py

    r3450 r3465  
    10421042        ip = len(op)
    10431043        if '/' in op:
    1044             if CIF:
     1044            try:    #mcif format
    10451045                nP = op.count('+')
    10461046                opMT = op.split('+')
     
    10481048                if nP == 2:
    10491049                    opMT[0] = '+'.join(opMT[0:2])
    1050             else:
     1050            except NameError:   #normal cif format
    10511051                ip = op.index('/')
    10521052                T.append(eval(op[:ip+2]))
Note: See TracChangeset for help on using the changeset viewer.