Changeset 44deced in sasview for src/sas/qtgui


Ignore:
Timestamp:
Sep 20, 2018 9:31:58 AM (6 years ago)
Author:
ibressler
Branches:
ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
Children:
d8d81ea
Parents:
0177eb6
Message:

plotPolydispersities() does not need POLYDISPERSITY_MODELS anymore

Location:
src/sas/qtgui/Perspectives/Fitting
Files:
2 edited

Legend:

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

    r0177eb6 r44deced  
    571571    return residuals 
    572572 
    573 def plotPolydispersities(model, disp_models): 
     573def plotPolydispersities(model): 
    574574    plots = [] 
    575575    if model is None: 
  • src/sas/qtgui/Perspectives/Fitting/FittingWidget.py

    ra8b3e2c r44deced  
    24492449 
    24502450        model = return_data.get('model', None) 
    2451         for plot in FittingUtilities.plotPolydispersities( 
    2452                                         model, POLYDISPERSITY_MODELS): 
     2451        for plot in FittingUtilities.plotPolydispersities(model): 
    24532452            data_id = fitted_data.id.split() 
    24542453            plot.id = " ".join([data_id[0], plot.name] + data_id[1:]) 
Note: See TracChangeset for help on using the changeset viewer.