Ignore:
Timestamp:
Sep 7, 2018 3:24:34 AM (6 years ago)
Author:
Torin Cooper-Bennun <torin.cooper-bennun@…>
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
d6c4987
Parents:
66d4370
Message:

support for general intermediate results (beyond P(Q), S(Q))

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/qtgui/Perspectives/Fitting/FittingWidget.py

    r66d4370 r40975f8  
    23462346 
    23472347        # Create plots for intermediate product data 
    2348         pq_data, sq_data = self.logic.new1DProductPlots(return_data, self.tab_id) 
    2349         if pq_data is not None: 
    2350             pq_data.symbol = "Line" 
    2351             self.createNewIndex(pq_data) 
    2352             # self.communicate.plotUpdateSignal.emit([pq_data]) 
    2353             new_plots.append(pq_data) 
    2354         if sq_data is not None: 
    2355             sq_data.symbol = "Line" 
    2356             self.createNewIndex(sq_data) 
    2357             # self.communicate.plotUpdateSignal.emit([sq_data]) 
    2358             new_plots.append(sq_data) 
     2348        plots = self.logic.new1DProductPlots(return_data, self.tab_id) 
     2349        for plot in plots: 
     2350            plot.symbol = "Line" 
     2351            self.createNewIndex(plot) 
     2352            new_plots.append(plot) 
    23592353 
    23602354        # Update/generate plots 
Note: See TracChangeset for help on using the changeset viewer.