Changeset 5059 for trunk/GSASIIphsGUI.py


Ignore:
Timestamp:
Oct 30, 2021 9:02:55 AM (2 years ago)
Author:
vondreele
Message:

patch for missing metadata for PDFfit
fix (again) the Va_ neutron scattering length.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIphsGUI.py

    r5058 r5059  
    46734673
    46744674    def UpdateRMC():
    4675         ''' Present the controls for running fullrmc or RMCProfile
     4675        ''' Present the controls for running fullrmc, RMCProfile or PDFfit
    46764676        '''
    46774677        global runFile
     
    58545854            if 'PDFfit' not in data['RMC']:
    58555855                SGData = G2spc.SpcGroup('P 1')[1]
    5856                 metadata = {'title':'none','date':str(time.ctime()),'temperature':'300K',
    5857                     'doping':0}
     5856                metadata = {'title':'none','date':str(time.ctime()),'temperature':'300K','doping':0}
    58585857                files = {'Neutron real space data; G(r): ':['Select',0.05,'G(r)','RMC',],
    58595858                          'Xray real space data; G(r): ':['Select',0.01,'G(r)','RMC',],}
     
    58705869            if 'cellref' not in RMCPdict:
    58715870                RMCPdict['cellref'] = False
     5871            if 'metadata' not in RMCPdict:
     5872                RMCPdict['metadata'] = {'title':'none','date':str(time.ctime()),'temperature':'300K','doping':0}
    58725873#end patch
    58735874            mainSizer.Add(wx.StaticText(G2frame.FRMC,label=' Enter metadata items:'),0)
Note: See TracChangeset for help on using the changeset viewer.