Ignore:
Timestamp:
Mar 24, 2021 6:16:47 PM (2 years ago)
Author:
vondreele
Message:

monoclinic indexing returns proper reduced cells

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/imports/G2sfact.py

    r4847 r4866  
    213213            self.errors = '  Error reading line '+str(line+1)
    214214            if self.Super == 0:
    215                 SH = S[:12]
    216                 SF = S[12:32]
    217                 h,k,l = SH.split()
    218                 Fo,sigFo,Tw = SF.split()
     215                h,k,l,Fo,sigFo,Tw = S.split()
    219216#                    h,k,l,Fo,sigFo,Tw = S[:4],S[4:8],S[8:12],S[12:20],S[20:28],S[28:32]
    220217                h,k,l = [int(h),int(k),int(l)]
    221218            elif self.Super == 1:
    222                 SH = S[:16]
    223                 SF = S[16:36]
    224                 h,k,l,m1 = SH.split()
    225                 Fo,sigFo,Tw = SF.split()
     219                h,k,l,m1,Fo,sigFo,Tw = SF.split()
    226220#                    h,k,l,m1,Fo,sigFo,Tw = S[:4],S[4:8],S[8:12],S[12:16],S[16:24],S[24:32],S[32:36]
    227221                h,k,l,m1 = [int(h),int(k),int(l),int(m1)]
Note: See TracChangeset for help on using the changeset viewer.