Ignore:
Timestamp:
Jun 26, 2017 6:22:56 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:
50fcb09
Parents:
98e3f24
Message:

move models.py to sascalc/fit

File:
1 edited

Legend:

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

    rba8d326 r65f3930  
    1919from wx.lib.scrolledpanel import ScrolledPanel 
    2020 
     21from sasmodels.sasview_model import MultiplicationModel 
    2122from sasmodels.weights import MODELS as POLYDISPERSITY_MODELS 
     23from sasmodels.weights import GaussianDispersion 
    2224 
    2325from sas.sascalc.dataloader.data_info import Detector 
    2426from sas.sascalc.dataloader.data_info import Source 
    2527from sas.sascalc.fit.pagestate import PageState 
     28from sas.sascalc.fit.models import PLUGIN_NAME_BASE 
    2629 
    2730from sas.sasgui.guiframe.panel_base import PanelBase 
     
    3841from sas.sasgui.guiframe.documentation_window import DocumentationWindow 
    3942 
    40 from sas.sasgui.perspectives.fitting.report_dialog import ReportDialog 
     43from .report_dialog import ReportDialog 
     44from .utils import get_weight 
    4145 
    4246logger = logging.getLogger(__name__) 
     
    12141218        self.categorybox.Select(category_pos) 
    12151219        self._show_combox(None) 
    1216         from models import PLUGIN_NAME_BASE 
    12171220        if self.categorybox.GetValue() == CUSTOM_MODEL \ 
    12181221                and PLUGIN_NAME_BASE not in state.formfactorcombobox: 
     
    17521755                    temp_smear = self.current_smearer 
    17531756            # compute weight for the current data 
    1754             from sas.sasgui.perspectives.fitting.utils import get_weight 
    17551757            flag = self.get_weight_flag() 
    17561758            weight = get_weight(data=self.data, is2d=self._is_2D(), flag=flag) 
     
    17781780 
    17791781        from sas.sasgui.plottools import Data1D as pf_data1d 
    1780         # from sas.sasgui.perspectives.theory.profile_dialog import SLDPanel 
    17811782        from sas.sasgui.guiframe.local_perspectives.plotting.profile_dialog \ 
    17821783            import SLDPanel 
     
    20742075 
    20752076        if struct_factor is not None: 
    2076             from sasmodels.sasview_model import MultiplicationModel 
    20772077            self.model = MultiplicationModel(form_factor(self.multi_factor), 
    20782078                                             struct_factor()) 
     
    23962396        self.weights = {} 
    23972397 
    2398         # from sas.models.dispersion_models import GaussianDispersion 
    2399         from sasmodels.weights import GaussianDispersion 
    24002398        if not self.disp_cb_dict: 
    24012399            self.sizer4_4.Clear(True) 
Note: See TracChangeset for help on using the changeset viewer.