source: sasview/sansmodels/src/sans/models/c_models/CCylinderModel.cpp @ b1c3295

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 b1c3295 was b1c3295, checked in by Mathieu Doucet <doucetm@…>, 13 years ago

Re #4 This should clean up a whole bunch of C++ warnings.

  • Property mode set to 100644
File size: 23.6 KB
Line 
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, University of Tennessee
13 */
14
15/** CCylinderModel
16 *
17 * C extension
18 *
19 * WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY
20 *          DO NOT MODIFY THIS FILE, MODIFY cylinder.h
21 *          AND RE-RUN THE GENERATOR SCRIPT
22 *
23 */
24#define NO_IMPORT_ARRAY
25#define PY_ARRAY_UNIQUE_SYMBOL PyArray_API_sans
26 
27extern "C" {
28#include <Python.h>
29#include <arrayobject.h>
30#include "structmember.h"
31#include <stdio.h>
32#include <stdlib.h>
33#include <math.h>
34#include <time.h>
35#include "cylinder.h"
36}
37
38#include "models.hh"
39#include "dispersion_visitor.hh"
40
41/// Error object for raised exceptions
42static PyObject * CCylinderModelError = NULL;
43
44
45// Class definition
46typedef struct {
47    PyObject_HEAD
48    /// Parameters
49    PyObject * params;
50    /// Dispersion parameters
51    PyObject * dispersion;
52    /// Underlying model object
53    CylinderModel * model;
54    /// Log for unit testing
55    PyObject * log;
56} CCylinderModel;
57
58
59static void
60CCylinderModel_dealloc(CCylinderModel* self)
61{
62    Py_DECREF(self->params);
63    Py_DECREF(self->dispersion);
64    Py_DECREF(self->log);
65    delete self->model;
66    self->ob_type->tp_free((PyObject*)self);
67   
68
69}
70
71static PyObject *
72CCylinderModel_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
73{
74    CCylinderModel *self;
75   
76    self = (CCylinderModel *)type->tp_alloc(type, 0);
77   
78    return (PyObject *)self;
79}
80
81static int
82CCylinderModel_init(CCylinderModel *self, PyObject *args, PyObject *kwds)
83{
84    if (self != NULL) {
85       
86        // Create parameters
87        self->params = PyDict_New();
88        self->dispersion = PyDict_New();
89        self->model = new CylinderModel();
90       
91        // Initialize parameter dictionary
92        PyDict_SetItemString(self->params,"scale",Py_BuildValue("d",1.000000000000));
93        PyDict_SetItemString(self->params,"sldCyl",Py_BuildValue("d",0.000004000000));
94        PyDict_SetItemString(self->params,"cyl_theta",Py_BuildValue("d",60.000000000000));
95        PyDict_SetItemString(self->params,"length",Py_BuildValue("d",400.000000000000));
96        PyDict_SetItemString(self->params,"sldSolv",Py_BuildValue("d",0.000001000000));
97        PyDict_SetItemString(self->params,"background",Py_BuildValue("d",0.000000000000));
98        PyDict_SetItemString(self->params,"radius",Py_BuildValue("d",20.000000000000));
99        PyDict_SetItemString(self->params,"cyl_phi",Py_BuildValue("d",60.000000000000));
100        // Initialize dispersion / averaging parameter dict
101        DispersionVisitor* visitor = new DispersionVisitor();
102        PyObject * disp_dict;
103        disp_dict = PyDict_New();
104        self->model->radius.dispersion->accept_as_source(visitor, self->model->radius.dispersion, disp_dict);
105        PyDict_SetItemString(self->dispersion, "radius", disp_dict);
106        disp_dict = PyDict_New();
107        self->model->length.dispersion->accept_as_source(visitor, self->model->length.dispersion, disp_dict);
108        PyDict_SetItemString(self->dispersion, "length", disp_dict);
109        disp_dict = PyDict_New();
110        self->model->cyl_theta.dispersion->accept_as_source(visitor, self->model->cyl_theta.dispersion, disp_dict);
111        PyDict_SetItemString(self->dispersion, "cyl_theta", disp_dict);
112        disp_dict = PyDict_New();
113        self->model->cyl_phi.dispersion->accept_as_source(visitor, self->model->cyl_phi.dispersion, disp_dict);
114        PyDict_SetItemString(self->dispersion, "cyl_phi", disp_dict);
115
116
117         
118        // Create empty log
119        self->log = PyDict_New();
120       
121       
122
123    }
124    return 0;
125}
126
127static char name_params[] = "params";
128static char def_params[] = "Parameters";
129static char name_dispersion[] = "dispersion";
130static char def_dispersion[] = "Dispersion parameters";
131static char name_log[] = "log";
132static char def_log[] = "Log";
133
134static PyMemberDef CCylinderModel_members[] = {
135    {name_params, T_OBJECT, offsetof(CCylinderModel, params), 0, def_params},
136        {name_dispersion, T_OBJECT, offsetof(CCylinderModel, dispersion), 0, def_dispersion},     
137    {name_log, T_OBJECT, offsetof(CCylinderModel, log), 0, def_log},
138    {NULL}  /* Sentinel */
139};
140
141/** Read double from PyObject
142    @param p PyObject
143    @return double
144*/
145double CCylinderModel_readDouble(PyObject *p) {
146    if (PyFloat_Check(p)==1) {
147        return (double)(((PyFloatObject *)(p))->ob_fval);
148    } else if (PyInt_Check(p)==1) {
149        return (double)(((PyIntObject *)(p))->ob_ival);
150    } else if (PyLong_Check(p)==1) {
151        return (double)PyLong_AsLong(p);
152    } else {
153        return 0.0;
154    }
155}
156/**
157 * Function to call to evaluate model
158 * @param args: input numpy array q[]
159 * @return: numpy array object
160 */
161 
162static PyObject *evaluateOneDim(CylinderModel* model, PyArrayObject *q){
163    PyArrayObject *result;
164   
165    // Check validity of array q , q must be of dimension 1, an array of double
166    if (q->nd != 1 || q->descr->type_num != PyArray_DOUBLE)
167    {
168        //const char * message= "Invalid array: q->nd=%d,type_num=%d\n",q->nd,q->descr->type_num;
169        //PyErr_SetString(PyExc_ValueError , message);
170        return NULL;
171    }
172    result = (PyArrayObject *)PyArray_FromDims(q->nd, (int *)(q->dimensions), 
173                                                                                  PyArray_DOUBLE);
174        if (result == NULL) {
175        const char * message= "Could not create result ";
176        PyErr_SetString(PyExc_RuntimeError , message);
177                return NULL;
178        }
179         for (int i = 0; i < q->dimensions[0]; i++){
180      double q_value  = *(double *)(q->data + i*q->strides[0]);
181      double *result_value = (double *)(result->data + i*result->strides[0]);
182      *result_value =(*model)(q_value);
183        }
184    return PyArray_Return(result); 
185 }
186
187 /**
188 * Function to call to evaluate model
189 * @param args: input numpy array  [x[],y[]]
190 * @return: numpy array object
191 */
192 static PyObject * evaluateTwoDimXY( CylinderModel* model, 
193                              PyArrayObject *x, PyArrayObject *y)
194 {
195    PyArrayObject *result;
196    int i,j, x_len, y_len, dims[1];
197    //check validity of input vectors
198    if (x->nd != 1 || x->descr->type_num != PyArray_DOUBLE
199        || y->nd != 1 || y->descr->type_num != PyArray_DOUBLE
200        || y->dimensions[0] != x->dimensions[0]){
201        const char * message= "evaluateTwoDimXY  expect 2 numpy arrays";
202        PyErr_SetString(PyExc_ValueError , message); 
203        return NULL;
204    }
205   
206        if (PyArray_Check(x) && PyArray_Check(y)) {
207               
208            x_len = dims[0]= x->dimensions[0];
209        y_len = dims[0]= y->dimensions[0];
210           
211            // Make a new double matrix of same dims
212        result=(PyArrayObject *) PyArray_FromDims(1,dims,NPY_DOUBLE);
213        if (result == NULL){
214            const char * message= "Could not create result ";
215        PyErr_SetString(PyExc_RuntimeError , message);
216            return NULL;
217            }
218       
219        /* Do the calculation. */
220        for ( i=0; i< x_len; i++) {
221            double x_value = *(double *)(x->data + i*x->strides[0]);
222                    double y_value = *(double *)(y->data + i*y->strides[0]);
223                        double *result_value = (double *)(result->data +
224                              i*result->strides[0]);
225                        *result_value = (*model)(x_value, y_value);
226        }           
227        return PyArray_Return(result); 
228       
229        }else{
230                    PyErr_SetString(CCylinderModelError, 
231                   "CCylinderModel.evaluateTwoDimXY couldn't run.");
232                return NULL;
233                }       
234}
235/**
236 *  evalDistribution function evaluate a model function with input vector
237 *  @param args: input q as vector or [qx, qy] where qx, qy are vectors
238 *
239 */ 
240static PyObject * evalDistribution(CCylinderModel *self, PyObject *args){
241        PyObject *qx, *qy;
242        PyArrayObject * pars;
243        int npars ,mpars;
244       
245        // Get parameters
246       
247            // Reader parameter dictionary
248    self->model->scale = PyFloat_AsDouble( PyDict_GetItemString(self->params, "scale") );
249    self->model->sldCyl = PyFloat_AsDouble( PyDict_GetItemString(self->params, "sldCyl") );
250    self->model->cyl_theta = PyFloat_AsDouble( PyDict_GetItemString(self->params, "cyl_theta") );
251    self->model->length = PyFloat_AsDouble( PyDict_GetItemString(self->params, "length") );
252    self->model->sldSolv = PyFloat_AsDouble( PyDict_GetItemString(self->params, "sldSolv") );
253    self->model->background = PyFloat_AsDouble( PyDict_GetItemString(self->params, "background") );
254    self->model->radius = PyFloat_AsDouble( PyDict_GetItemString(self->params, "radius") );
255    self->model->cyl_phi = PyFloat_AsDouble( PyDict_GetItemString(self->params, "cyl_phi") );
256    // Read in dispersion parameters
257    PyObject* disp_dict;
258    DispersionVisitor* visitor = new DispersionVisitor();
259    disp_dict = PyDict_GetItemString(self->dispersion, "radius");
260    self->model->radius.dispersion->accept_as_destination(visitor, self->model->radius.dispersion, disp_dict);
261    disp_dict = PyDict_GetItemString(self->dispersion, "length");
262    self->model->length.dispersion->accept_as_destination(visitor, self->model->length.dispersion, disp_dict);
263    disp_dict = PyDict_GetItemString(self->dispersion, "cyl_theta");
264    self->model->cyl_theta.dispersion->accept_as_destination(visitor, self->model->cyl_theta.dispersion, disp_dict);
265    disp_dict = PyDict_GetItemString(self->dispersion, "cyl_phi");
266    self->model->cyl_phi.dispersion->accept_as_destination(visitor, self->model->cyl_phi.dispersion, disp_dict);
267
268       
269        // Get input and determine whether we have to supply a 1D or 2D return value.
270        if ( !PyArg_ParseTuple(args,"O",&pars) ) {
271            PyErr_SetString(CCylinderModelError, 
272                "CCylinderModel.evalDistribution expects a q value.");
273                return NULL;
274        }
275    // Check params
276       
277    if(PyArray_Check(pars)==1) {
278               
279            // Length of list should 1 or 2
280            npars = pars->nd; 
281            if(npars==1) {
282                // input is a numpy array
283                if (PyArray_Check(pars)) {
284                        return evaluateOneDim(self->model, (PyArrayObject*)pars); 
285                    }
286                }else{
287                    PyErr_SetString(CCylinderModelError, 
288                   "CCylinderModel.evalDistribution expect numpy array of one dimension.");
289                return NULL;
290                }
291    }else if( PyList_Check(pars)==1) {
292        // Length of list should be 2 for I(qx,qy)
293            mpars = PyList_GET_SIZE(pars); 
294            if(mpars!=2) {
295                PyErr_SetString(CCylinderModelError, 
296                        "CCylinderModel.evalDistribution expects a list of dimension 2.");
297                return NULL;
298            }
299             qx = PyList_GET_ITEM(pars,0);
300             qy = PyList_GET_ITEM(pars,1);
301             if (PyArray_Check(qx) && PyArray_Check(qy)) {
302                 return evaluateTwoDimXY(self->model, (PyArrayObject*)qx,
303                           (PyArrayObject*)qy);
304                 }else{
305                    PyErr_SetString(CCylinderModelError, 
306                   "CCylinderModel.evalDistribution expect 2 numpy arrays in list.");
307                return NULL;
308             }
309        }
310        PyErr_SetString(CCylinderModelError, 
311                   "CCylinderModel.evalDistribution couln't be run.");
312        return NULL;
313       
314}
315
316/**
317 * Function to call to evaluate model
318 * @param args: input q or [q,phi]
319 * @return: function value
320 */
321static PyObject * run(CCylinderModel *self, PyObject *args) {
322        double q_value, phi_value;
323        PyObject* pars;
324        int npars;
325       
326        // Get parameters
327       
328            // Reader parameter dictionary
329    self->model->scale = PyFloat_AsDouble( PyDict_GetItemString(self->params, "scale") );
330    self->model->sldCyl = PyFloat_AsDouble( PyDict_GetItemString(self->params, "sldCyl") );
331    self->model->cyl_theta = PyFloat_AsDouble( PyDict_GetItemString(self->params, "cyl_theta") );
332    self->model->length = PyFloat_AsDouble( PyDict_GetItemString(self->params, "length") );
333    self->model->sldSolv = PyFloat_AsDouble( PyDict_GetItemString(self->params, "sldSolv") );
334    self->model->background = PyFloat_AsDouble( PyDict_GetItemString(self->params, "background") );
335    self->model->radius = PyFloat_AsDouble( PyDict_GetItemString(self->params, "radius") );
336    self->model->cyl_phi = PyFloat_AsDouble( PyDict_GetItemString(self->params, "cyl_phi") );
337    // Read in dispersion parameters
338    PyObject* disp_dict;
339    DispersionVisitor* visitor = new DispersionVisitor();
340    disp_dict = PyDict_GetItemString(self->dispersion, "radius");
341    self->model->radius.dispersion->accept_as_destination(visitor, self->model->radius.dispersion, disp_dict);
342    disp_dict = PyDict_GetItemString(self->dispersion, "length");
343    self->model->length.dispersion->accept_as_destination(visitor, self->model->length.dispersion, disp_dict);
344    disp_dict = PyDict_GetItemString(self->dispersion, "cyl_theta");
345    self->model->cyl_theta.dispersion->accept_as_destination(visitor, self->model->cyl_theta.dispersion, disp_dict);
346    disp_dict = PyDict_GetItemString(self->dispersion, "cyl_phi");
347    self->model->cyl_phi.dispersion->accept_as_destination(visitor, self->model->cyl_phi.dispersion, disp_dict);
348
349       
350        // Get input and determine whether we have to supply a 1D or 2D return value.
351        if ( !PyArg_ParseTuple(args,"O",&pars) ) {
352            PyErr_SetString(CCylinderModelError, 
353                "CCylinderModel.run expects a q value.");
354                return NULL;
355        }
356         
357        // Check params
358        if( PyList_Check(pars)==1) {
359               
360                // Length of list should be 2 for I(q,phi)
361            npars = PyList_GET_SIZE(pars); 
362            if(npars!=2) {
363                PyErr_SetString(CCylinderModelError, 
364                        "CCylinderModel.run expects a double or a list of dimension 2.");
365                return NULL;
366            }
367            // We have a vector q, get the q and phi values at which
368            // to evaluate I(q,phi)
369            q_value = CCylinderModel_readDouble(PyList_GET_ITEM(pars,0));
370            phi_value = CCylinderModel_readDouble(PyList_GET_ITEM(pars,1));
371            // Skip zero
372            if (q_value==0) {
373                return Py_BuildValue("d",0.0);
374            }
375                return Py_BuildValue("d",(*(self->model)).evaluate_rphi(q_value,phi_value));
376
377        } else {
378
379                // We have a scalar q, we will evaluate I(q)
380                q_value = CCylinderModel_readDouble(pars);             
381               
382                return Py_BuildValue("d",(*(self->model))(q_value));
383        }       
384}
385/**
386 * Function to call to calculate_ER
387 * @return: effective radius value
388 */
389static PyObject * calculate_ER(CCylinderModel *self) {
390
391        PyObject* pars;
392        int npars;
393       
394        // Get parameters
395       
396            // Reader parameter dictionary
397    self->model->scale = PyFloat_AsDouble( PyDict_GetItemString(self->params, "scale") );
398    self->model->sldCyl = PyFloat_AsDouble( PyDict_GetItemString(self->params, "sldCyl") );
399    self->model->cyl_theta = PyFloat_AsDouble( PyDict_GetItemString(self->params, "cyl_theta") );
400    self->model->length = PyFloat_AsDouble( PyDict_GetItemString(self->params, "length") );
401    self->model->sldSolv = PyFloat_AsDouble( PyDict_GetItemString(self->params, "sldSolv") );
402    self->model->background = PyFloat_AsDouble( PyDict_GetItemString(self->params, "background") );
403    self->model->radius = PyFloat_AsDouble( PyDict_GetItemString(self->params, "radius") );
404    self->model->cyl_phi = PyFloat_AsDouble( PyDict_GetItemString(self->params, "cyl_phi") );
405    // Read in dispersion parameters
406    PyObject* disp_dict;
407    DispersionVisitor* visitor = new DispersionVisitor();
408    disp_dict = PyDict_GetItemString(self->dispersion, "radius");
409    self->model->radius.dispersion->accept_as_destination(visitor, self->model->radius.dispersion, disp_dict);
410    disp_dict = PyDict_GetItemString(self->dispersion, "length");
411    self->model->length.dispersion->accept_as_destination(visitor, self->model->length.dispersion, disp_dict);
412    disp_dict = PyDict_GetItemString(self->dispersion, "cyl_theta");
413    self->model->cyl_theta.dispersion->accept_as_destination(visitor, self->model->cyl_theta.dispersion, disp_dict);
414    disp_dict = PyDict_GetItemString(self->dispersion, "cyl_phi");
415    self->model->cyl_phi.dispersion->accept_as_destination(visitor, self->model->cyl_phi.dispersion, disp_dict);
416
417               
418        return Py_BuildValue("d",(*(self->model)).calculate_ER());
419
420}
421/**
422 * Function to call to evaluate model in cartesian coordinates
423 * @param args: input q or [qx, qy]]
424 * @return: function value
425 */
426static PyObject * runXY(CCylinderModel *self, PyObject *args) {
427        double qx_value, qy_value;
428        PyObject* pars;
429        int npars;
430       
431        // Get parameters
432       
433            // Reader parameter dictionary
434    self->model->scale = PyFloat_AsDouble( PyDict_GetItemString(self->params, "scale") );
435    self->model->sldCyl = PyFloat_AsDouble( PyDict_GetItemString(self->params, "sldCyl") );
436    self->model->cyl_theta = PyFloat_AsDouble( PyDict_GetItemString(self->params, "cyl_theta") );
437    self->model->length = PyFloat_AsDouble( PyDict_GetItemString(self->params, "length") );
438    self->model->sldSolv = PyFloat_AsDouble( PyDict_GetItemString(self->params, "sldSolv") );
439    self->model->background = PyFloat_AsDouble( PyDict_GetItemString(self->params, "background") );
440    self->model->radius = PyFloat_AsDouble( PyDict_GetItemString(self->params, "radius") );
441    self->model->cyl_phi = PyFloat_AsDouble( PyDict_GetItemString(self->params, "cyl_phi") );
442    // Read in dispersion parameters
443    PyObject* disp_dict;
444    DispersionVisitor* visitor = new DispersionVisitor();
445    disp_dict = PyDict_GetItemString(self->dispersion, "radius");
446    self->model->radius.dispersion->accept_as_destination(visitor, self->model->radius.dispersion, disp_dict);
447    disp_dict = PyDict_GetItemString(self->dispersion, "length");
448    self->model->length.dispersion->accept_as_destination(visitor, self->model->length.dispersion, disp_dict);
449    disp_dict = PyDict_GetItemString(self->dispersion, "cyl_theta");
450    self->model->cyl_theta.dispersion->accept_as_destination(visitor, self->model->cyl_theta.dispersion, disp_dict);
451    disp_dict = PyDict_GetItemString(self->dispersion, "cyl_phi");
452    self->model->cyl_phi.dispersion->accept_as_destination(visitor, self->model->cyl_phi.dispersion, disp_dict);
453
454       
455        // Get input and determine whether we have to supply a 1D or 2D return value.
456        if ( !PyArg_ParseTuple(args,"O",&pars) ) {
457            PyErr_SetString(CCylinderModelError, 
458                "CCylinderModel.run expects a q value.");
459                return NULL;
460        }
461         
462        // Check params
463        if( PyList_Check(pars)==1) {
464               
465                // Length of list should be 2 for I(qx, qy))
466            npars = PyList_GET_SIZE(pars); 
467            if(npars!=2) {
468                PyErr_SetString(CCylinderModelError, 
469                        "CCylinderModel.run expects a double or a list of dimension 2.");
470                return NULL;
471            }
472            // We have a vector q, get the qx and qy values at which
473            // to evaluate I(qx,qy)
474            qx_value = CCylinderModel_readDouble(PyList_GET_ITEM(pars,0));
475            qy_value = CCylinderModel_readDouble(PyList_GET_ITEM(pars,1));
476            return Py_BuildValue("d",(*(self->model))(qx_value,qy_value));
477
478        } else {
479
480                // We have a scalar q, we will evaluate I(q)
481                qx_value = CCylinderModel_readDouble(pars);             
482               
483                return Py_BuildValue("d",(*(self->model))(qx_value));
484        }       
485}
486
487static PyObject * reset(CCylinderModel *self, PyObject *args) {
488   
489
490    return Py_BuildValue("d",0.0);
491}
492
493static PyObject * set_dispersion(CCylinderModel *self, PyObject *args) {
494        PyObject * disp;
495        const char * par_name;
496
497        if ( !PyArg_ParseTuple(args,"sO", &par_name, &disp) ) {
498            PyErr_SetString(CCylinderModelError,
499                "CCylinderModel.set_dispersion expects a DispersionModel object.");
500                return NULL;
501        }
502        void *temp = PyCObject_AsVoidPtr(disp);
503        DispersionModel * dispersion = static_cast<DispersionModel *>(temp);
504
505
506        // Ugliness necessary to go from python to C
507            // TODO: refactor this
508    if (!strcmp(par_name, "radius")) {
509        self->model->radius.dispersion = dispersion;
510    } else    if (!strcmp(par_name, "length")) {
511        self->model->length.dispersion = dispersion;
512    } else    if (!strcmp(par_name, "cyl_theta")) {
513        self->model->cyl_theta.dispersion = dispersion;
514    } else    if (!strcmp(par_name, "cyl_phi")) {
515        self->model->cyl_phi.dispersion = dispersion;
516    } else {
517            PyErr_SetString(CCylinderModelError,
518                "CCylinderModel.set_dispersion expects a valid parameter name.");
519                return NULL;
520        }
521
522        DispersionVisitor* visitor = new DispersionVisitor();
523        PyObject * disp_dict = PyDict_New();
524        dispersion->accept_as_source(visitor, dispersion, disp_dict);
525        PyDict_SetItemString(self->dispersion, par_name, disp_dict);
526    return Py_BuildValue("i",1);
527}
528
529
530static PyMethodDef CCylinderModel_methods[] = {
531    {"run",      (PyCFunction)run     , METH_VARARGS,
532      "Evaluate the model at a given Q or Q, phi"},
533    {"runXY",      (PyCFunction)runXY     , METH_VARARGS,
534      "Evaluate the model at a given Q or Qx, Qy"},
535    {"calculate_ER",      (PyCFunction)calculate_ER     , METH_VARARGS,
536      "Evaluate the model at a given Q or Q, phi"},
537     
538    {"evalDistribution",  (PyCFunction)evalDistribution , METH_VARARGS,
539      "Evaluate the model at a given Q or Qx, Qy vector "},
540    {"reset",    (PyCFunction)reset   , METH_VARARGS,
541      "Reset pair correlation"},
542    {"set_dispersion",      (PyCFunction)set_dispersion     , METH_VARARGS,
543      "Set the dispersion model for a given parameter"},
544   {NULL}
545};
546
547static PyTypeObject CCylinderModelType = {
548    PyObject_HEAD_INIT(NULL)
549    0,                         /*ob_size*/
550    "CCylinderModel",             /*tp_name*/
551    sizeof(CCylinderModel),             /*tp_basicsize*/
552    0,                         /*tp_itemsize*/
553    (destructor)CCylinderModel_dealloc, /*tp_dealloc*/
554    0,                         /*tp_print*/
555    0,                         /*tp_getattr*/
556    0,                         /*tp_setattr*/
557    0,                         /*tp_compare*/
558    0,                         /*tp_repr*/
559    0,                         /*tp_as_number*/
560    0,                         /*tp_as_sequence*/
561    0,                         /*tp_as_mapping*/
562    0,                         /*tp_hash */
563    0,                         /*tp_call*/
564    0,                         /*tp_str*/
565    0,                         /*tp_getattro*/
566    0,                         /*tp_setattro*/
567    0,                         /*tp_as_buffer*/
568    Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/
569    "CCylinderModel objects",           /* tp_doc */
570    0,                         /* tp_traverse */
571    0,                         /* tp_clear */
572    0,                         /* tp_richcompare */
573    0,                         /* tp_weaklistoffset */
574    0,                         /* tp_iter */
575    0,                         /* tp_iternext */
576    CCylinderModel_methods,             /* tp_methods */
577    CCylinderModel_members,             /* tp_members */
578    0,                         /* tp_getset */
579    0,                         /* tp_base */
580    0,                         /* tp_dict */
581    0,                         /* tp_descr_get */
582    0,                         /* tp_descr_set */
583    0,                         /* tp_dictoffset */
584    (initproc)CCylinderModel_init,      /* tp_init */
585    0,                         /* tp_alloc */
586    CCylinderModel_new,                 /* tp_new */
587};
588
589
590//static PyMethodDef module_methods[] = {
591//    {NULL}
592//};
593
594/**
595 * Function used to add the model class to a module
596 * @param module: module to add the class to
597 */ 
598void addCCylinderModel(PyObject *module) {
599        PyObject *d;
600       
601    if (PyType_Ready(&CCylinderModelType) < 0)
602        return;
603
604    Py_INCREF(&CCylinderModelType);
605    PyModule_AddObject(module, "CCylinderModel", (PyObject *)&CCylinderModelType);
606   
607    d = PyModule_GetDict(module);
608    CCylinderModelError = PyErr_NewException("CCylinderModel.error", NULL, NULL);
609    PyDict_SetItemString(d, "CCylinderModelError", CCylinderModelError);
610}
611
Note: See TracBrowser for help on using the repository browser.