Ignore:
Timestamp:
Jun 27, 2017 12:18:33 PM (7 years ago)
Author:
Paul Kienzle <pkienzle@…>
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
Message:

move qsmearing to fit package

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/fitting/fitproblem.py

    r959eb01 r50fcb09  
    1414################################################################################ 
    1515import copy 
    16 from sas.sascalc.data_util.qsmearing import smear_selection 
     16 
     17from sas.sascalc.fit.qsmearing import smear_selection 
    1718 
    1819class FitProblemComponent(object): 
     
    622623        # fit data: used for fit and can be modified for convenience 
    623624        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) 
    626626        self.smearer_computed = True 
    627627        self.result = None 
Note: See TracChangeset for help on using the changeset viewer.