Ignore:
Timestamp:
Oct 26, 2018 4:44:15 AM (6 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
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:
b1b71ad
Parents:
a3c59503 (diff), 75906a1 (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 'ESS_GUI' into ESS_GUI_project_save

File:
1 edited

Legend:

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

    rb8dccb8 rd00475d  
    15731573        if param_dict is None: 
    15741574            return 
     1575        if hasattr(res, 'convergence') and len(res.convergence)>0: 
     1576            self.communicate.resultPlotUpdateSignal.emit(result[0]) 
    15751577 
    15761578        elapsed = result[1] 
     
    23332335        max_column = self.lstParams.itemDelegate().param_max 
    23342336        if model_column == param_column: 
    2335             self.kernel_module.setParam(parameter_name, value) 
     2337            # don't try to update multiplicity counters if they aren't there. 
     2338            # Note that this will fail for proper bad update where the model 
     2339            # doesn't contain multiplicity parameter 
     2340            if parameter_name != self.kernel_module.multiplicity_info.control: 
     2341                self.kernel_module.setParam(parameter_name, value) 
    23362342        elif model_column == min_column: 
    23372343            # min/max to be changed in self.kernel_module.details[parameter_name] = ['Ang', 0.0, inf] 
     
    33733379        else: 
    33743380            index = self.theory_item 
     3381        params = FittingUtilities.getStandardParam(self._model_model) 
    33753382        report_logic = ReportPageLogic(self, 
    33763383                                       kernel_module=self.kernel_module, 
    33773384                                       data=self.data, 
    33783385                                       index=index, 
    3379                                        model=self._model_model) 
     3386                                       params=params) 
    33803387 
    33813388        return report_logic.reportList() 
Note: See TracChangeset for help on using the changeset viewer.