Ignore:
Timestamp:
Oct 26, 2017 3:34:08 AM (6 years ago)
Author:
Adam Washington <adam.washington@…>
Branches:
ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
481c4f4
Parents:
3e20577
Message:

Add missing plot values

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/PrInversion/dmax.py

    r3e20577 r4aa62c8  
    107107        pos_err = [] 
    108108        osc = [] 
     109        bck = [] 
     110        chi2 = [] 
     111 
    109112        xs = np.linspace(float(self.model.item(W.DMIN).text()), 
    110113                         float(self.model.item(W.DMAX).text()), 
     
    122125                pos_err.append(self.pr_state.get_pos_err(out, cov)) 
    123126                osc.append(self.pr_state.oscillations(out)) 
     127                bck.append(self.pr_state.background) 
     128                chi2.append(self.pr_state.chi2) 
    124129            except: 
    125130                # This inversion failed, skip this D_max value 
Note: See TracChangeset for help on using the changeset viewer.