Ignore:
Timestamp:
Oct 21, 2014 12:28:29 PM (9 years ago)
Author:
vondreele
Message:

fix getVCOV; nonexistant parms return zero.
fix space group output in PrintDistAngle?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIstrMain.py

    r1493 r1531  
    552552    ShowBanner(DisAglCtls['Name'])
    553553    SGData = DisAglData['SGData']
    554     SGtext = G2spc.SGPrint(SGData)
     554    SGtext,SGtable = G2spc.SGPrint(SGData)
    555555    for line in SGtext: MyPrint(line)
     556    if len(SGtable):
     557        for i,item in enumerate(SGtable[::2]):
     558            line = ' %s %s'%(item.ljust(30),SGtable[2*i+1].ljust(30))
     559            MyPrint(line)   
     560    else:
     561        MyPrint(' ( 1)    %s'%(SGtable[0]))
    556562    Cell = DisAglData['Cell']
    557563   
Note: See TracChangeset for help on using the changeset viewer.