Changeset 50fcb09 in sasview for src/sas/sasgui/perspectives/fitting/fitproblem.py
- Timestamp:
- Jun 27, 2017 12:18:33 PM (7 years ago)
- 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, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 251ef684
- Parents:
- 65f3930
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/fitting/fitproblem.py
r959eb01 r50fcb09 14 14 ################################################################################ 15 15 import copy 16 from sas.sascalc.data_util.qsmearing import smear_selection 16 17 from sas.sascalc.fit.qsmearing import smear_selection 17 18 18 19 class FitProblemComponent(object): … … 622 623 # fit data: used for fit and can be modified for convenience 623 624 self.fit_data = copy.deepcopy(data) 624 self.smearer_computer_value = smear_selection(self.fit_data, 625 self.model) 625 self.smearer_computer_value = smear_selection(self.fit_data, self.model) 626 626 self.smearer_computed = True 627 627 self.result = None
Note: See TracChangeset
for help on using the changeset viewer.