/** CTestSphere2 * * C extension * * WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY * DO NOT MODIFY THIS FILE, MODIFY testsphere.h * AND RE-RUN THE GENERATOR SCRIPT * * @author M.Doucet / UTK */ #include #include "structmember.h" #include #include #include #include #include "testsphere.h" static double UNDEFINED = 1000010010.1234567; /// Error object for raised exceptions static PyObject * CTestSphere2Error = NULL; // Class definition typedef struct { PyObject_HEAD /// Parameters PyObject * params; /// Log for unit testing PyObject * log; /// Model parameters TestSphereParameters model_pars; } CTestSphere2; static void CTestSphere2_dealloc(CTestSphere2* self) { self->ob_type->tp_free((PyObject*)self); modelcalculations_dealloc(&(self->model_pars.calcPars)); } static PyObject * CTestSphere2_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { CTestSphere2 *self; self = (CTestSphere2 *)type->tp_alloc(type, 0); return (PyObject *)self; } static int CTestSphere2_init(CTestSphere2 *self, PyObject *args, PyObject *kwds) { if (self != NULL) { // Create parameters self->params = PyDict_New(); // Initialize parameter dictionary PyDict_SetItemString(self->params,"scale",Py_BuildValue("d",1.000000)); PyDict_SetItemString(self->params,"radius",Py_BuildValue("d",20.000000)); PyDict_SetItemString(self->params,"qmax",Py_BuildValue("d",0.100000)); // Create empty log self->log = PyDict_New(); modelcalculations_init(&(self->model_pars.calcPars)); } return 0; } static PyMemberDef CTestSphere2_members[] = { {"params", T_OBJECT, offsetof(CTestSphere2, params), 0, "Parameters"}, {"log", T_OBJECT, offsetof(CTestSphere2, log), 0, "Log"}, {NULL} /* Sentinel */ }; /** Read double from PyObject @param p PyObject @return double */ double CTestSphere2_readDouble(PyObject *p) { if (PyFloat_Check(p)==1) { return (double)(((PyFloatObject *)(p))->ob_fval); } else if (PyInt_Check(p)==1) { return (double)(((PyIntObject *)(p))->ob_ival); } else if (PyLong_Check(p)==1) { return (double)PyLong_AsLong(p); } else { return 0.0; } } /** * Function to call to evaluate model * @param args: input q or [q,phi] * @return: function value */ static PyObject * run(CTestSphere2 *self, PyObject *args) { double q_value, phi_value; PyObject* pars; int npars; // Get parameters // Reader parameter dictionary self->model_pars.scale = PyFloat_AsDouble( PyDict_GetItemString(self->params, "scale") ); self->model_pars.radius = PyFloat_AsDouble( PyDict_GetItemString(self->params, "radius") ); self->model_pars.qmax = PyFloat_AsDouble( PyDict_GetItemString(self->params, "qmax") ); // Get input and determine whether we have to supply a 1D or 2D return value. if ( !PyArg_ParseTuple(args,"O",&pars) ) { PyErr_SetString(CTestSphere2Error, "CTestSphere2.run expects a q value."); return NULL; } // Check params if( PyList_Check(pars)==1) { // Length of list should be 2 for I(q,phi) npars = PyList_GET_SIZE(pars); if(npars!=2) { PyErr_SetString(CTestSphere2Error, "CTestSphere2.run expects a double or a list of dimension 2."); return NULL; } // We have a vector q, get the q and phi values at which // to evaluate I(q,phi) q_value = CTestSphere2_readDouble(PyList_GET_ITEM(pars,0)); phi_value = CTestSphere2_readDouble(PyList_GET_ITEM(pars,1)); // Skip zero if (q_value==0) { return Py_BuildValue("d",0.0); } return Py_BuildValue("d",testsphere_analytical_2D(&(self->model_pars),q_value,phi_value)); } else { // We have a scalar q, we will evaluate I(q) q_value = CTestSphere2_readDouble(pars); return Py_BuildValue("d",testsphere_analytical_1D(&(self->model_pars),q_value)); } } static PyObject * reset(CTestSphere2 *self, PyObject *args) { modelcalculations_reset(&(self->model_pars.calcPars)); return Py_BuildValue("d",0.0); } static PyMethodDef CTestSphere2_methods[] = { {"run", (PyCFunction)run , METH_VARARGS, "Evaluate the model at a given Q"}, {"reset", (PyCFunction)reset , METH_VARARGS, "Reset pair correlation"}, //{"numerical_1D", (PyCFunction)numerical_1D , METH_VARARGS, // "Evaluate the 1D model at a given Q"}, {NULL} }; static PyTypeObject CTestSphere2Type = { PyObject_HEAD_INIT(NULL) 0, /*ob_size*/ "CTestSphere2", /*tp_name*/ sizeof(CTestSphere2), /*tp_basicsize*/ 0, /*tp_itemsize*/ (destructor)CTestSphere2_dealloc, /*tp_dealloc*/ 0, /*tp_print*/ 0, /*tp_getattr*/ 0, /*tp_setattr*/ 0, /*tp_compare*/ 0, /*tp_repr*/ 0, /*tp_as_number*/ 0, /*tp_as_sequence*/ 0, /*tp_as_mapping*/ 0, /*tp_hash */ 0, /*tp_call*/ 0, /*tp_str*/ 0, /*tp_getattro*/ 0, /*tp_setattro*/ 0, /*tp_as_buffer*/ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, /*tp_flags*/ "CTestSphere2 objects", /* tp_doc */ 0, /* tp_traverse */ 0, /* tp_clear */ 0, /* tp_richcompare */ 0, /* tp_weaklistoffset */ 0, /* tp_iter */ 0, /* tp_iternext */ CTestSphere2_methods, /* tp_methods */ CTestSphere2_members, /* tp_members */ 0, /* tp_getset */ 0, /* tp_base */ 0, /* tp_dict */ 0, /* tp_descr_get */ 0, /* tp_descr_set */ 0, /* tp_dictoffset */ (initproc)CTestSphere2_init, /* tp_init */ 0, /* tp_alloc */ CTestSphere2_new, /* tp_new */ }; static PyMethodDef module_methods[] = { {NULL} }; /** * Function used to add the model class to a module * @param module: module to add the class to */ void addCTestSphere2(PyObject *module) { PyObject *d; if (PyType_Ready(&CTestSphere2Type) < 0) return; Py_INCREF(&CTestSphere2Type); PyModule_AddObject(module, "CTestSphere2", (PyObject *)&CTestSphere2Type); d = PyModule_GetDict(module); CTestSphere2Error = PyErr_NewException("CTestSphere2.error", NULL, NULL); PyDict_SetItemString(d, "CTestSphere2Error", CTestSphere2Error); }