Ignore:
Timestamp:
Oct 7, 2016 10:31:19 AM (8 years ago)
Author:
krzywon
Branches:
master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
e6de6b8
Parents:
998ca90 (diff), dd72190 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into wx_save_simfit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/fitting/fitting.py

    re89aed5 rff3f5821  
    17421742                                      data_id=str(page_id) + " " + data.name + " unsmeared") 
    17431743 
    1744                 self.create_theory_1D(x, unsmeared_data, page_id, model, data, state, 
    1745                                       data_description="Data unsmeared", 
    1746                                       data_id="Data  " + data.name + " unsmeared", 
    1747                                       dy=unsmeared_error) 
     1744                if unsmeared_data is not None and unsmeared_error is not None: 
     1745                    self.create_theory_1D(x, unsmeared_data, page_id, model, data, state, 
     1746                                          data_description="Data unsmeared", 
     1747                                          data_id="Data  " + data.name + " unsmeared", 
     1748                                          dy=unsmeared_error) 
    17481749                 
    17491750            if sq_model is not None and pq_model is not None: 
Note: See TracChangeset for help on using the changeset viewer.