Ignore:
Timestamp:
Mar 26, 2010 2:41:45 PM (15 years ago)
Author:
Gervaise Alina <gervyh@…>
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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
509af3d
Parents:
da87bce
Message:

refactore fitpanel and removing the bug introduce while changing add fitpage use case

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/perspectives/fitting/fitproblem.py

    r7c845cb r2f189dc  
    1616        ## the current model 
    1717        self.model = None 
     18        self.model_index = None 
    1819        ## if 1 this fit problem will be selected to fit , if 0  
    1920        ## it will not be selected for fit 
     
    8586        return self.model 
    8687   
    87    
     88    def set_index(self, index): 
     89        """ 
     90            set index of the model name 
     91        """ 
     92        self.model_index = index 
     93         
     94    def get_index(self): 
     95        """ 
     96            get index of the model name 
     97        """ 
     98        return self.model_index 
     99     
    88100    def add_plotted_data(self,data): 
    89101        """  
Note: See TracChangeset for help on using the changeset viewer.