Changeset 3396 for trunk/GSASIIphsGUI.py


Ignore:
Timestamp:
May 22, 2018 3:51:10 PM (5 years ago)
Author:
vondreele
Message:

set refList=False for a couple of calls to GetHistogramPhaseData? where reflection list shouldn't be rebuilt
fix OnDrawDist? to report Sym Ops correctly
Move atom labels over 4 spaces to be clear of atom ball

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIphsGUI.py

    r3393 r3396  
    57345734        cx = colLabels.index('x')
    57355735        cn = colLabels.index('Name')
     5736        cs = colLabels.index('Sym Op')
    57365737        for i in indx:
    57375738            atom = atomDData[i]
    57385739            Dx = np.array(atom[cx:cx+3])-viewPt
    57395740            dist = np.sqrt(np.sum(np.inner(Amat,Dx)**2,axis=0))
    5740             print ('Atom: %8s (%12s) distance = %.3f'%(atom[cn],atom[cx+3],dist))
     5741            print ('Atom: %8s (%12s) distance = %.3f'%(atom[cn],atom[cs],dist))
    57415742   
    57425743    def OnDrawDAT(event):
Note: See TracChangeset for help on using the changeset viewer.