Changeset 3795 for trunk/GSASIIphsGUI.py
- Timestamp:
- Jan 24, 2019 12:14:33 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIphsGUI.py
r3774 r3795 1916 1916 SGData = generalData['SGData'] 1917 1917 SpcGrp = SGData['SpGrp'] 1918 if SGData['SGGray']: 1919 SpcGrp += " 1'" 1918 1920 SGErr,SGData = G2spc.SpcGroup(SpcGrp) 1919 1921 if '_' in BNSlatt: … … 1921 1923 else: 1922 1924 SGData['BNSlattsym'] = [SGData['SGLatt'],[0.,0.,0.]] 1923 SGData['SGSpin'] = [1,]*len(SGData['SGSpin']) 1925 SGData['SGSpin'] = [1,]*len(SGData['SGSpin']) #set to all black 1924 1926 GenSym,GenFlg = G2spc.GetGenSym(SGData)[:2] 1925 1927 SGData['GenSym'] = GenSym … … 1958 1960 OprNames = G2spc.GenMagOps(SGData)[0] 1959 1961 else: 1960 if not len(GenSym) or SGData['SGGray']:1962 if not len(GenSym): # or SGData['SGGray']: 1961 1963 spinSizer.Add(wx.StaticText(General,label=' No spin inversion allowed'),0,WACV) 1962 1964 OprNames,SpnFlp = G2spc.GenMagOps(SGData) … … 2005 2007 def OnShowSOps(event): 2006 2008 SSGData = generalData['SSGData'] 2007 text,table = G2spc.SSGPrint(generalData['SGData'],SSGData )2009 text,table = G2spc.SSGPrint(generalData['SGData'],SSGData,True) 2008 2010 msg = 'Superspace Group Information' 2009 2011 G2G.SGMessageBox(General,msg,text,table).ShowModal() … … 2073 2075 if SGData['SGGray']: 2074 2076 SpGrp += " 1'" 2077 if 'BNSlattsym' in SGData and '_' in SGData['BNSlattsym'][0]: 2078 SpGrp = SGData['BNSlattsym'][0]+SpGrp[1:] 2075 2079 modSizer.Add(wx.StaticText(General,label=' Superspace group: %s '%SpGrp),0,WACV) 2076 2080 if not SGData['SGFixed']:
Note: See TracChangeset
for help on using the changeset viewer.