MaCh3  2.2.3
Reference Guide
pyMaCh3.cpp
Go to the documentation of this file.
1 #include <pybind11/pybind11.h>
2 #include <pybind11/stl.h>
3 
6 
7 namespace py = pybind11;
8 
9 void initPlotting(py::module &); // <- defined in python/plotting.cpp
10 void initFitters(py::module &); // <- defined in python/fitters.cpp
11 void initSamples(py::module &); // <- defined in python/samples.cpp
12 void initManager(py::module &); // <- defined in python/manager.cpp
13 void initParameters(py::module &); // <- defined in python/parameters.cpp
14 void initSplines(py::module &); // <- defined in python/splines.cpp
15 
16 PYBIND11_MODULE( _pyMaCh3, m ) {
17  initPlotting(m);
18  initFitters(m);
19  initSamples(m);
20  initManager(m);
21  initParameters(m);
22  initSplines(m);
23 }
void initFitters(py::module &)
Definition: fitters.cpp:47
PYBIND11_MODULE(_pyMaCh3, m)
Definition: pyMaCh3.cpp:16
void initParameters(py::module &)
Definition: parameters.cpp:38
void initSplines(py::module &)
Definition: splines.cpp:72
void initManager(py::module &)
Definition: manager.cpp:11
void initSamples(py::module &)
Definition: samples.cpp:196
void initPlotting(py::module &)
Definition: plotting.cpp:15