Ignore:
Timestamp:
Sep 28, 2020 1:23:10 PM (2 years ago)
Author:
toby
Message:

docs for freezing parameters started + docs cleanup; start scriptable for freezing params; record initial chi2; Show more post refinement info; noted but unfixed bkg GUI bug

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r4573 r4578  
    50375037            lamMax = Msg.get('lamMax',0.001)
    50385038            lst = os.path.splitext(os.path.abspath(self.GSASprojectfile))[0]
    5039             text = 'Detailed results are in ' + lst + '.lst\n\nLoad new result?'
     5039            text = 'Detailed results are in ' + lst + '.lst\n'
     5040            if 'GOF0' in Msg and 'GOF' in Msg:
     5041                text += '\nReduced Chi^2 before refinement={:.3f} and after={:.3f}\n'.format(
     5042                    Msg['GOF0']**2,Msg['GOF']**2)
     5043            if 'Max shft/sig' in Msg:
     5044                text += '\nMax shift/sigma={:.3f}\n'.format(Msg['Max shft/sig'])
     5045            if 'msg' in Msg: text += '\n' + Msg['msg'] + '\n'
     5046            text += '\nLoad new result?'
    50405047            if lamMax >= 10.:
    50415048                text += '\nWARNING: Steepest descents dominates;'+   \
Note: See TracChangeset for help on using the changeset viewer.