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