source: sasview/sansmodels/src/python_wrapper/modelTemplate.txt @ fd080830

ESS_GUIESS_GUI_DocsESS_GUI_batch_fittingESS_GUI_bumps_abstractionESS_GUI_iss1116ESS_GUI_iss879ESS_GUI_iss959ESS_GUI_openclESS_GUI_orderingESS_GUI_sync_sascalccostrafo411magnetic_scattrelease-4.1.1release-4.1.2release-4.2.2release_4.0.1ticket-1009ticket-1094-headlessticket-1242-2d-resolutionticket-1243ticket-1249ticket885unittest-saveload
Last change on this file since fd080830 was 67424cd, checked in by Mathieu Doucet <doucetm@…>, 13 years ago

Reorganizing models in preparation of cpp cleanup

  • Property mode set to 100644
File size: 4.2 KB
RevLine 
[af03ddd]1#!/usr/bin/env python
2
[79ac6f8]3##############################################################################
4#       This software was developed by the University of Tennessee as part of the
5#       Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
6#       project funded by the US National Science Foundation.
7#
8#       If you use DANSE applications to do scientific research that leads to
9#       publication, we ask that you acknowledge the use of the software with the
10#       following sentence:
11#
12#       "This work benefited from DANSE software developed under NSF award DMR-0520547."
13#
14#       copyright 2008, University of Tennessee
15##############################################################################
[af03ddd]16
17
[79ac6f8]18"""
19Provide functionality for a C extension model
[af03ddd]20
[79ac6f8]21:WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY
22         DO NOT MODIFY THIS FILE, MODIFY [INCLUDE_FILE]
23         AND RE-RUN THE GENERATOR SCRIPT
[af03ddd]24
25"""
26
27from sans.models.BaseComponent import BaseComponent
[f578ad4]28from sans.models.sans_extension.c_models import [CPYTHONCLASS]
[af03ddd]29import copy   
[5650ebf]30
31def create_[PYTHONCLASS]():
32    obj = [PYTHONCLASS]()
33    #[CPYTHONCLASS].__init__(obj) is called by [PYTHONCLASS] constructor
34    return obj
35
[af03ddd]36class [PYTHONCLASS]([CPYTHONCLASS], BaseComponent):
[79ac6f8]37    """
38    Class that evaluates a [PYTHONCLASS] model.
39    This file was auto-generated from [INCLUDE_FILE].
40    Refer to that file and the structure it contains
41    for details of the model.
42    [DEFAULT_LIST]
[af03ddd]43    """
44       
45    def __init__(self):
46        """ Initialization """
47       
48        # Initialize BaseComponent first, then sphere
49        BaseComponent.__init__(self)
[5650ebf]50        #apply([CPYTHONCLASS].__init__, (self,))
[af03ddd]51        [CPYTHONCLASS].__init__(self)
52       
53        ## Name of the model
54        self.name = "[PYTHONCLASS]"
[836fe6e]55        ## Model description
[9316609]56        self.description ="""[DESCRIPTION]"""
[836fe6e]57       
[fe9c19b4]58        [PAR_DETAILS]
59        ## fittable parameters
[836fe6e]60        self.fixed=[FIXED]
[25a608f5]61       
[8622241]62        ## non-fittable parameters
63        self.non_fittable = [NON_FITTABLE_PARAMS]
64       
[25a608f5]65        ## parameters with orientation
[8622241]66        self.orientation_params = [ORIENTATION_PARAMS]
[2360a7b]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       
[5650ebf]74    def __reduce_ex__(self, proto):
[79ac6f8]75        """
[5650ebf]76        Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of
77        c model.
[79ac6f8]78        """
[2360a7b]79        state = (self.__dict__, self.params, self.dispersion)
[56fb77f]80        return (create_[PYTHONCLASS],tuple(), state, None, None)
[fe9c19b4]81       
[5650ebf]82    def clone(self):
83        """ Return a identical copy of self """
84        return self._clone([PYTHONCLASS]())   
[fe9c19b4]85       
[af03ddd]86   
[79ac6f8]87    def run(self, x=0.0):
88        """
89        Evaluate the model
90       
91        :param x: input q, or [q,phi]
92       
93        :return: scattering function P(q)
94       
[af03ddd]95        """
96       
97        return [CPYTHONCLASS].run(self, x)
98   
[79ac6f8]99    def runXY(self, x=0.0):
100        """
101        Evaluate the model in cartesian coordinates
102       
103        :param x: input q, or [qx, qy]
104       
105        :return: scattering function P(q)
106       
[af03ddd]107        """
108       
109        return [CPYTHONCLASS].runXY(self, x)
110       
[79ac6f8]111    def evalDistribution(self, x=[]):
112        """
113        Evaluate the model in cartesian coordinates
114       
115        :param x: input q[], or [qx[], qy[]]
116       
117        :return: scattering function P(q[])
118       
[5b56b7a]119        """
[f9a1279]120        return [CPYTHONCLASS].evalDistribution(self, x)
[5b56b7a]121       
[5eb9154]122    def calculate_ER(self):
[79ac6f8]123        """
124        Calculate the effective radius for P(q)*S(q)
125       
126        :return: the value of the effective radius
127       
[5eb9154]128        """       
129        return [CPYTHONCLASS].calculate_ER(self)
130       
[af03ddd]131    def set_dispersion(self, parameter, dispersion):
132        """
[79ac6f8]133        Set the dispersion object for a model parameter
134       
135        :param parameter: name of the parameter [string]
136        :param dispersion: dispersion object of type DispersionModel
137       
[af03ddd]138        """
139        return [CPYTHONCLASS].set_dispersion(self, parameter, dispersion.cdisp)
140       
141   
142# End of file
Note: See TracBrowser for help on using the repository browser.