source: sasview/sansmodels/src/sans/models/c_models/CBinaryHSPSF11Model.cpp @ 1d67243

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 1d67243 was 9bd69098, checked in by Jae Cho <jhjcho@…>, 15 years ago

recompiled all due to Alina's new eval(run) function

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