23 #include "../BPy_Convert.h"
24 #include "../BPy_IntegrationType.h"
25 #include "../BPy_Interface1D.h"
78 "Class hierarchy: :class:`UnaryFunction1D` > :class:`UnaryFunction1DVoid`\n"
80 "Base class for unary functions (functors) working on\n"
81 ":class:`Interface1D`.\n"
83 ".. method:: __init__()\n"
84 " __init__(integration_type)\n"
86 " Builds a unary 1D function using either a default constructor\n"
87 " or the integration method given as an argument.\n"
89 " :arg integration_type: An integration method.\n"
90 " :type integration_type: :class:`IntegrationType`\n";
96 static const char *kwlist[] = {
"integration",
nullptr};
97 PyObject *obj =
nullptr;
99 if (!PyArg_ParseTupleAndKeywords(
111 self->uf1D_void->py_uf1D = (PyObject *)
self;
118 delete self->uf1D_void;
124 return PyUnicode_FromFormat(
"type: %s - address: %p", Py_TYPE(
self)->tp_name,
self->uf1D_void);
131 static const char *kwlist[] = {
"inter",
nullptr};
132 PyObject *obj =
nullptr;
134 if (!PyArg_ParseTupleAndKeywords(args, kwds,
"O!", (
char **)kwlist, &
Interface1D_Type, &obj)) {
139 PyErr_SetString(PyExc_TypeError,
"__call__ method not properly overridden");
143 if (!PyErr_Occurred()) {
144 string class_name(Py_TYPE(
self)->tp_name);
145 PyErr_SetString(PyExc_RuntimeError, (class_name +
" __call__ method failed").c_str());
155 "The integration method.\n"
157 ":type: :class:`IntegrationType`");
169 PyErr_SetString(PyExc_TypeError,
"value must be an IntegrationType");
180 integration_type_doc,
182 {
nullptr,
nullptr,
nullptr,
nullptr,
nullptr}
188 PyVarObject_HEAD_INIT(
nullptr, 0)
"UnaryFunction1DVoid",
206 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
PyTypeObject ChainingTimeStampF1D_Type
PyObject * BPy_IntegrationType_from_IntegrationType(IntegrationType i)
IntegrationType IntegrationType_from_BPy_IntegrationType(PyObject *obj)
PyTypeObject IncrementChainingTimeStampF1D_Type
PyTypeObject IntegrationType_Type
#define BPy_IntegrationType_Check(v)
PyTypeObject Interface1D_Type
PyTypeObject TimeStampF1D_Type
static char UnaryFunction1DVoid___doc__[]
static PyObject * UnaryFunction1DVoid___call__(BPy_UnaryFunction1DVoid *self, PyObject *args, PyObject *kwds)
PyDoc_STRVAR(integration_type_doc, "The integration method.\n" "\n" ":type: :class:`IntegrationType`")
static PyObject * integration_type_get(BPy_UnaryFunction1DVoid *self, void *UNUSED(closure))
int UnaryFunction1DVoid_Init(PyObject *module)
static int integration_type_set(BPy_UnaryFunction1DVoid *self, PyObject *value, void *UNUSED(closure))
PyTypeObject UnaryFunction1DVoid_Type
static int UnaryFunction1DVoid___init__(BPy_UnaryFunction1DVoid *self, PyObject *args, PyObject *kwds)
static void UnaryFunction1DVoid___dealloc__(BPy_UnaryFunction1DVoid *self)
static PyObject * UnaryFunction1DVoid___repr__(BPy_UnaryFunction1DVoid *self)
static PyGetSetDef BPy_UnaryFunction1DVoid_getseters[]
PyTypeObject UnaryFunction1D_Type
static struct PyModuleDef module