1 | ############################################################################## |
---|
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. |
---|
5 | # |
---|
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: |
---|
9 | # |
---|
10 | # This work benefited from DANSE software developed under NSF award DMR-0520547 |
---|
11 | # |
---|
12 | # Copyright 2008-2011, University of Tennessee |
---|
13 | ############################################################################## |
---|
14 | |
---|
15 | """ |
---|
16 | Provide functionality for a C extension model |
---|
17 | |
---|
18 | :WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY |
---|
19 | DO NOT MODIFY THIS FILE, MODIFY |
---|
20 | [INCLUDE_FILE] |
---|
21 | AND RE-RUN THE GENERATOR SCRIPT |
---|
22 | """ |
---|
23 | |
---|
24 | from sans.models.BaseComponent import BaseComponent |
---|
25 | from sans.models.sans_extension.c_models import [CPYTHONCLASS] |
---|
26 | |
---|
27 | def create_[PYTHONCLASS](): |
---|
28 | """ |
---|
29 | Create a model instance |
---|
30 | """ |
---|
31 | obj = [PYTHONCLASS]() |
---|
32 | # [CPYTHONCLASS].__init__(obj) is called by |
---|
33 | # the [PYTHONCLASS] constructor |
---|
34 | return obj |
---|
35 | |
---|
36 | class [PYTHONCLASS]([CPYTHONCLASS], BaseComponent): |
---|
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] |
---|
43 | """ |
---|
44 | |
---|
45 | def __init__(self,multfactor=1): |
---|
46 | """ Initialization """ |
---|
47 | self.__dict__ = {} |
---|
48 | |
---|
49 | # Initialize BaseComponent first, then sphere |
---|
50 | BaseComponent.__init__(self) |
---|
51 | #apply([CPYTHONCLASS].__init__, (self,)) |
---|
52 | |
---|
53 | [CALL_CPYTHON_INIT] |
---|
54 | |
---|
55 | ## Name of the model |
---|
56 | self.name = "[PYTHONCLASS]" |
---|
57 | ## Model description |
---|
58 | self.description = """ |
---|
59 | [DESCRIPTION] |
---|
60 | """ |
---|
61 | |
---|
62 | [PAR_DETAILS] |
---|
63 | ## fittable parameters |
---|
64 | self.fixed = [FIXED] |
---|
65 | |
---|
66 | ## non-fittable parameters |
---|
67 | self.non_fittable = [NON_FITTABLE_PARAMS] |
---|
68 | |
---|
69 | ## parameters with orientation |
---|
70 | self.orientation_params = [ORIENTATION_PARAMS] |
---|
71 | |
---|
72 | self.category = [CATEGORY] |
---|
73 | self.multiplicity_info = [MULTIPLICITY_INFO] |
---|
74 | |
---|
75 | |
---|
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 | |
---|
82 | def __reduce_ex__(self, proto): |
---|
83 | """ |
---|
84 | Overwrite the __reduce_ex__ of PyTypeObject *type call in the init of |
---|
85 | c model. |
---|
86 | """ |
---|
87 | state = (self.__dict__, self.params, self.dispersion) |
---|
88 | return (create_[PYTHONCLASS], tuple(), state, None, None) |
---|
89 | |
---|
90 | def clone(self): |
---|
91 | """ Return a identical copy of self """ |
---|
92 | return self._clone([PYTHONCLASS]()) |
---|
93 | |
---|
94 | |
---|
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 | |
---|
103 | """ |
---|
104 | |
---|
105 | return [CPYTHONCLASS].run(self, x) |
---|
106 | |
---|
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 | |
---|
115 | """ |
---|
116 | |
---|
117 | return [CPYTHONCLASS].runXY(self, x) |
---|
118 | |
---|
119 | def evalDistribution(self, x): |
---|
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 | |
---|
127 | """ |
---|
128 | return [CPYTHONCLASS].evalDistribution(self, x) |
---|
129 | |
---|
130 | def calculate_ER(self): |
---|
131 | """ |
---|
132 | Calculate the effective radius for P(q)*S(q) |
---|
133 | |
---|
134 | :return: the value of the effective radius |
---|
135 | |
---|
136 | """ |
---|
137 | return [CPYTHONCLASS].calculate_ER(self) |
---|
138 | |
---|
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 | |
---|
148 | def set_dispersion(self, parameter, dispersion): |
---|
149 | """ |
---|
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 | |
---|
155 | """ |
---|
156 | return [CPYTHONCLASS].set_dispersion(self, |
---|
157 | parameter, dispersion.cdisp) |
---|
158 | |
---|
159 | |
---|
160 | # End of file |
---|