Ignore:
Timestamp:
Apr 13, 2011 9:09:55 AM (13 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:
a496177a
Parents:
d5f0f5e3
Message:

implement deepcopy for model

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansmodels/src/sans/models/c_models/modelTemplate.txt

    r8622241 r2360a7b  
    6565        ## parameters with orientation 
    6666        self.orientation_params = [ORIENTATION_PARAMS] 
    67     
     67 
     68    def __setstate__(self, state): 
     69        """ 
     70        restore the state of a model from pickle 
     71        """ 
     72        self.__dict__, self.params, self.dispersion = state 
     73         
    6874    def __reduce_ex__(self, proto): 
    6975        """ 
     
    7177        c model. 
    7278        """ 
    73         return (create_[PYTHONCLASS],tuple()) 
     79        state = (self.__dict__, self.params, self.dispersion) 
     80        return (create_CylinderModel,tuple(), state, None, None) 
    7481         
    7582    def clone(self): 
Note: See TracChangeset for help on using the changeset viewer.