Ignore:
Timestamp:
Aug 3, 2018 8:31:45 AM (6 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
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:
97df8a9
Parents:
8e2cd79 (diff), 46f59ba (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' of https://github.com/SasView/sasview into ESS_GUI

File:
1 edited

Legend:

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

    r8e2cd79 r04972ea  
    1414from PyQt5 import QtWidgets 
    1515 
    16 from sasmodels import product 
    1716from sasmodels import generate 
    1817from sasmodels import modelinfo 
    1918from sasmodels.sasview_model import load_standard_models 
     19from sasmodels.sasview_model import MultiplicationModel 
    2020from sasmodels.weights import MODELS as POLYDISPERSITY_MODELS 
    2121 
     
    14041404        param_dict = self.paramDictFromResults(res) 
    14051405 
     1406        if param_dict is None: 
     1407            return 
     1408 
    14061409        elapsed = result[1] 
    14071410        if self.calc_fit._interrupting: 
     
    16451648            return 
    16461649 
     1650        def iterateOverMagnetModel(func): 
     1651            """ 
     1652            Take func and throw it inside the magnet model row loop 
     1653            """ 
     1654            for row_i in range(self._magnet_model.rowCount()): 
     1655                func(row_i) 
     1656 
    16471657        def updateFittedValues(row): 
    16481658            # Utility function for main model update 
     
    19611971        structure_module = generate.load_kernel_module(structure_factor) 
    19621972        structure_parameters = modelinfo.make_parameter_table(getattr(structure_module, 'parameters', [])) 
     1973 
    19631974        structure_kernel = self.models[structure_factor]() 
    1964  
    1965         self.kernel_module._model_info = product.make_product_info(self.kernel_module._model_info, structure_kernel._model_info) 
     1975        form_kernel = self.kernel_module 
     1976 
     1977        self.kernel_module = MultiplicationModel(form_kernel, structure_kernel) 
    19661978 
    19671979        new_rows = FittingUtilities.addSimpleParametersToModel(structure_parameters, self.is2D) 
    19681980        for row in new_rows: 
    19691981            self._model_model.appendRow(row) 
     1982            # disable fitting of parameters not listed in self.kernel_module (probably radius_effective) 
     1983            if row[0].text() not in self.kernel_module.params.keys(): 
     1984                row_num = self._model_model.rowCount() - 1 
     1985                FittingUtilities.markParameterDisabled(self._model_model, row_num) 
     1986 
    19701987        # Update the counter used for multishell display 
    19711988        self._last_model_row = self._model_model.rowCount() 
Note: See TracChangeset for help on using the changeset viewer.