Changeset 2289
- Timestamp:
- May 25, 2016 9:29:51 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIIO.py
r2227 r2289 898 898 nOcc += 1 899 899 item, cookie = G2frame.PatternTree.GetNextChild(G2frame.root, cookie) 900 if nOcc: 901 Aname += '(%d)'%(nOcc) 900 Aname += '(%03d)'%(nOcc) 902 901 Sample = G2pdG.SetDefaultSample() 903 902 Sample['Gonio. radius'] = data['distance'] -
trunk/GSASIIspc.py
r2158 r2289 69 69 SysSym = ('triclinic','monoclinic','orthorhombic','tetragonal','rhombohedral','trigonal','hexagonal','cubic') 70 70 SGData = {} 71 SGSymbol = SGSymbol.replace(':',' ') #get rid of ':' in R space group symbols from some cif files 71 if ':R' in SGSymbol: 72 SGSymbol = SGSymbol.replace(':',' ') #get rid of ':' in R space group symbols from some cif files 73 SGSymbol = SGSymbol.split(':')[0] #remove :1/2 setting symbol from some cif files 72 74 SGInfo = pyspg.sgforpy(SGSymbol) 73 75 SGData['SpGrp'] = SGSymbol.strip().lower().capitalize() -
trunk/imports/G2phase_INS.py
r2287 r2289 32 32 extensionlist=('.ins','.INS','.res','.RES'), 33 33 strictExtension=True, 34 formatName = 'SHELX ins, res',34 formatName = 'SHELX ins, res', 35 35 longFormatName = 'SHELX input (*.ins, *.res) file import' 36 36 ) … … 107 107 aTypes = S[4:].split() 108 108 if 'H' in aTypes: 109 self.warnings += '\nHydrogen atoms found; consider replacing them with stereochemically tied ones.' 109 self.warnings += '\n\nHydrogen atoms found; consider replacing them with stereochemically tied ones' 110 self.warnings += '\nas Shelx constraints & HFIX commands are ignored.' 110 111 self.warnings += "\nDo 'Edit/Insert H atoms' in this phase's Atoms tab after deleting the old ones." 111 112 elif S[0] == 'Q': … … 127 128 IA = 'I' 128 129 Uiso = float(AtRec[6]) 129 if Uiso < 0. :130 if Uiso < 0. or Uiso > 1.0: 130 131 Uiso = 0.025 131 132 Uij = [0. for i in range(6)]
Note: See TracChangeset
for help on using the changeset viewer.