Changeset 4286
- Timestamp:
- Feb 3, 2020 8:23:04 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIexprGUI.py
r3772 r4286 778 778 neigh = [] 779 779 if self.Oatom: 780 # GSASIIpath.IPyBreak()781 780 neigh = G2mth.FindAllNeighbors(Phase,self.Oatom,aNames) 782 781 bNames = ['',] … … 890 889 Atoms = Phase['Atoms'] 891 890 aNames = [atom[ct-1] for atom in Atoms] 892 # GSASIIpath.IPyBreak()893 891 atomSizer = wx.BoxSizer(wx.HORIZONTAL) 894 892 atomSizer.Add(wx.StaticText(self.panel,label=' Origin atom (O in A-O-B): '),0,WACV) … … 904 902 bNames = ['',] 905 903 if neigh: 906 # GSASIIpath.IPyBreak()907 904 for iA,aName in enumerate(neigh): 908 905 for cName in neigh[iA+1:]: -
trunk/GSASIIimgGUI.py
r4219 r4286 80 80 if imagefile is None: return [] 81 81 formatName = data.get('formatName','') 82 sumImg = G2IO.GetImageData(G2frame,imagefile,True,ImageTag=imagetag,FormatName=formatName)82 sumImg = np.array(G2IO.GetImageData(G2frame,imagefile,True,ImageTag=imagetag,FormatName=formatName),dtype='int32') 83 83 if sumImg is None: 84 84 return []
Note: See TracChangeset
for help on using the changeset viewer.