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

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 f368fd9 was 32ea318, checked in by Jae Cho <jhjcho@…>, 12 years ago

pylint cleanup

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[79ac6f8]1##############################################################################
[d47c349]2# This software was developed by the University of Tennessee as part of the
3# Distributed Data Analysis of Neutron Scattering Experiments (DANSE)
4# project funded by the US National Science Foundation.
[79ac6f8]5#
[d47c349]6# If you use DANSE applications to do scientific research that leads to
7# publication, we ask that you acknowledge the use of the software with the
8# following sentence:
[79ac6f8]9#
[d47c349]10# This work benefited from DANSE software developed under NSF award DMR-0520547
[79ac6f8]11#
[d47c349]12# Copyright 2008-2011, University of Tennessee
[79ac6f8]13##############################################################################
[af03ddd]14
[79ac6f8]15"""
16Provide functionality for a C extension model
[af03ddd]17
[79ac6f8]18:WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY
[79ba1fc]19         DO NOT MODIFY THIS FILE, MODIFY
20            [INCLUDE_FILE]
[79ac6f8]21         AND RE-RUN THE GENERATOR SCRIPT
[af03ddd]22"""
23
24from sans.models.BaseComponent import BaseComponent
[f578ad4]25from sans.models.sans_extension.c_models import [CPYTHONCLASS]
[5650ebf]26
27def create_[PYTHONCLASS]():
[411d8bf]28    """
29       Create a model instance
30    """
[5650ebf]31    obj = [PYTHONCLASS]()
[79ba1fc]32    # [CPYTHONCLASS].__init__(obj) is called by
33    # the [PYTHONCLASS] constructor
[5650ebf]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       
[32ea318]45    def __init__(self, multfactor=1):
[af03ddd]46        """ Initialization """
[d47c349]47        self.__dict__ = {}
[af03ddd]48       
49        # Initialize BaseComponent first, then sphere
50        BaseComponent.__init__(self)
[5650ebf]51        #apply([CPYTHONCLASS].__init__, (self,))
[5da3cc5]52
[8389beb]53        [CALL_CPYTHON_INIT]
[5da3cc5]54                       
[af03ddd]55        ## Name of the model
56        self.name = "[PYTHONCLASS]"
[836fe6e]57        ## Model description
[43e8326]58        self.description = """
59        [DESCRIPTION]
60        """
[836fe6e]61       
[fe9c19b4]62        [PAR_DETAILS]
63        ## fittable parameters
[411d8bf]64        self.fixed = [FIXED]
[25a608f5]65       
[8622241]66        ## non-fittable parameters
67        self.non_fittable = [NON_FITTABLE_PARAMS]
68       
[25a608f5]69        ## parameters with orientation
[8622241]70        self.orientation_params = [ORIENTATION_PARAMS]
[2360a7b]71
[fa6db8b]72        self.category = [CATEGORY]
[5da3cc5]73        self.multiplicity_info = [MULTIPLICITY_INFO]
74       
[fa6db8b]75
[2360a7b]76    def __setstate__(self, state):
77        """
78        restore the state of a model from pickle
79        """
80        self.__dict__, self.params, self.dispersion = state
81       
[5650ebf]82    def __reduce_ex__(self, proto):
[79ac6f8]83        """
[5650ebf]84        Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of
85        c model.
[79ac6f8]86        """
[2360a7b]87        state = (self.__dict__, self.params, self.dispersion)
[411d8bf]88        return (create_[PYTHONCLASS], tuple(), state, None, None)
[fe9c19b4]89       
[5650ebf]90    def clone(self):
91        """ Return a identical copy of self """
92        return self._clone([PYTHONCLASS]())   
[fe9c19b4]93       
[af03ddd]94   
[79ac6f8]95    def run(self, x=0.0):
96        """
97        Evaluate the model
98       
99        :param x: input q, or [q,phi]
100       
101        :return: scattering function P(q)
102       
[af03ddd]103        """
104       
105        return [CPYTHONCLASS].run(self, x)
106   
[79ac6f8]107    def runXY(self, x=0.0):
108        """
109        Evaluate the model in cartesian coordinates
110       
111        :param x: input q, or [qx, qy]
112       
113        :return: scattering function P(q)
114       
[af03ddd]115        """
116       
117        return [CPYTHONCLASS].runXY(self, x)
118       
[d47c349]119    def evalDistribution(self, x):
[79ac6f8]120        """
121        Evaluate the model in cartesian coordinates
122       
123        :param x: input q[], or [qx[], qy[]]
124       
125        :return: scattering function P(q[])
126       
[5b56b7a]127        """
[f9a1279]128        return [CPYTHONCLASS].evalDistribution(self, x)
[5b56b7a]129       
[5eb9154]130    def calculate_ER(self):
[79ac6f8]131        """
132        Calculate the effective radius for P(q)*S(q)
133       
134        :return: the value of the effective radius
135       
[5eb9154]136        """       
137        return [CPYTHONCLASS].calculate_ER(self)
138       
[e08bd5b]139    def calculate_VR(self):
140        """
141        Calculate the volf ratio for P(q)*S(q)
142       
143        :return: the value of the volf ratio
144       
145        """       
146        return [CPYTHONCLASS].calculate_VR(self)
147             
[af03ddd]148    def set_dispersion(self, parameter, dispersion):
149        """
[79ac6f8]150        Set the dispersion object for a model parameter
151       
152        :param parameter: name of the parameter [string]
153        :param dispersion: dispersion object of type DispersionModel
154       
[af03ddd]155        """
[79ba1fc]156        return [CPYTHONCLASS].set_dispersion(self,
157               parameter, dispersion.cdisp)
[af03ddd]158       
159   
[fa6db8b]160# End of file
Note: See TracBrowser for help on using the repository browser.