source: sasview/src/sans/models/c_extension/python_wrapper/generated/CLamellarPCrystalModel.cpp @ 400155b

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 400155b was 400155b, checked in by gonzalezm, 9 years ago

Implementing request from ticket 261 - default number of bins in Annulus [Phi View] is now 36 and the first bin is now centered at 0 degrees

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