Changeset 3092


Ignore:
Timestamp:
Sep 20, 2017 8:52:10 AM (6 years ago)
Author:
vondreele
Message:

change # decimal places on pseudovariables from 3 to 5
fix bug on phase Transform command
clean up formatting of General tab

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r3082 r3092  
    71287128        G2frame.colSigs += [esdList]
    71297129        colLabels += [expr]
    7130         Types += [wg.GRID_VALUE_FLOAT+':10,3']
     7130        Types += [wg.GRID_VALUE_FLOAT+':10,5']
    71317131    #---- table build done -------------------------------------------------------------
    71327132
  • trunk/GSASIIddataGUI.py

    r3000 r3092  
    842842        if 'Babinet' not in UseList[G2frame.hist]:
    843843            UseList[G2frame.hist]['Babinet'] = {'BabA':[0.0,False],'BabU':[0.0,False]}
     844        if 'Fix X' not in UseList[G2frame.hist]:
     845            UseList[G2frame.hist]['Fix F'] = False
     846            UseList[G2frame.hist]['Fix X'] = False
     847            UseList[G2frame.hist]['Fix U'] = False
    844848        bottomSizer = wx.BoxSizer(wx.VERTICAL)
    845849        useBox = wx.BoxSizer(wx.HORIZONTAL)
     
    855859            if UseList[G2frame.hist]['LeBail']:
    856860                G2frame.SetStatusText('To reset LeBail, cycle LeBail check box.',1)
     861        #TODO - put Sequential refinement fix F? fix X? fix U? CheckBox here
    857862        bottomSizer.Add(useBox,0,WACV|wx.TOP|wx.BOTTOM|wx.LEFT,5)
    858863       
  • trunk/GSASIIlattice.py

    r3000 r3092  
    301301    newPhase['Atoms'] = newAtoms
    302302    newPhase['Atoms'],atCodes = GetUnique(newPhase,atCodes)
    303     newPhase['Drawing']['Atoms'] = []
     303    newPhase['Drawing'] = []
    304304    newPhase['ranId'] = ran.randint(0,sys.maxint)
    305305    return newPhase,atCodes
  • trunk/GSASIIphsGUI.py

    r3079 r3092  
    15051505            [['2/m'+'c'],10,zip([" a = "," b = "," c = "," gamma = "," Vol = "],
    15061506                ["%.5f","%.5f","%.5f","%.3f","%.3f"],[True,True,True,True,False],[0,1,2,5,0])],
    1507             [['-1'],8,zip([" a = "," b = "," c = "," Vol = "," alpha = "," beta = "," gamma = "],
     1507            [['-1'],7,zip([" a = "," b = "," c = "," Vol = "," alpha = "," beta = "," gamma = "],
    15081508                ["%.5f","%.5f","%.5f","%.3f","%.3f","%.3f","%.3f"],
    15091509                [True,True,True,False,True,True,True],[0,1,2,0,3,4,5])]]
Note: See TracChangeset for help on using the changeset viewer.