Ignore:
Timestamp:
Jan 24, 2019 12:14:33 PM (4 years ago)
Author:
vondreele
Message:

fix space group & incommensurate space group displays for mag. incomensurate cases
disable cell refine in Unit Cell List if no peaks
another shot at incommensurate mag. structure factor calc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIctrlGUI.py

    r3780 r3795  
    32373237        nG = 1
    32383238        j = 0
    3239         if self.ifGray:
    3240             nG = 2
    32413239        for ng in range(nG):
    32423240            if ng:
    32433241                mainSizer.Add(wx.StaticText(self.panel,label="      for (0,0,0)+1'"),0,WACV)
     3242                j = 0
    32443243            for ic,cent in enumerate(cents):
    3245                 Cent = np.array(Cents[ic])
     3244                Cent = np.zeros(3)
     3245                if cent:
     3246                    cent = cent.strip(' (').strip(')+\n')
     3247                    Cent = np.array(eval(cent)[:3])
     3248#                Cent = np.array(Cents[ic])
    32463249                if ic:
    32473250                    if cent: cent = cent.strip(' (').strip(')+\n')
Note: See TracChangeset for help on using the changeset viewer.