source: sasview/sansmodels/src/sans/models/c_models/CLamellarFFHGModel.cpp @ 9ce41c6

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 9ce41c6 was 9ce41c6, checked in by Gervaise Alina <gervyh@…>, 15 years ago

wrote unittest for all model untested , haven' test critial point error handling

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