Ignore:
Timestamp:
May 10, 2017 7:36:13 AM (7 years ago)
Author:
Piotr Rozyczko <rozyczko@…>
Branches:
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
Children:
1bc27f1
Parents:
2da5759
Message:

Further fitpage implementation with tests SASVIEW-570

File:
1 edited

Legend:

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

    rf7f5796 r672b8ab  
    2323 
    2424        self.page_id = 0 
    25         self.is_data_loaded = False 
     25        self.data_is_loaded = False 
    2626        self.filename = "" 
     27        self.data = None 
     28        self.parameters_to_fit = [] 
    2729         
    2830        # QModels 
     
    4547        self.smearing_options = {} 
    4648 
     49    def save(self): 
     50        """ 
     51        Serialize the current state 
     52        """ 
     53        pass 
     54 
     55    def load(self, location): 
     56        """ 
     57        Retrieve serialized state from specified location 
     58        """ 
     59        pass 
     60 
     61    def saveAsXML(self): 
     62        """ 
     63        Serialize the current state 
     64        """ 
     65        # Connect to PageState.to_xml(), which serializes 
     66        # to the existing XML with file I(Q) 
     67        pass 
     68 
Note: See TracChangeset for help on using the changeset viewer.