DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
module.cpp
Go to the documentation of this file.
1
9#include <pybind11/pybind11.h>
10#include <pybind11/stl.h>
11
12namespace py = pybind11;
13
14
15namespace dunedaq {
16namespace rawdatautils {
17
18namespace unpack{
19namespace python {
20extern void register_unpack(py::module &);
21}
22}
23
24namespace fc{
25namespace python {
26extern void register_file_conversion(py::module &);
27}
28}
29
30namespace python {
31
32PYBIND11_MODULE(_daq_rawdatautils_py, m) {
33
34 m.doc() = "c++ implementation of the dunedaq rawdatautils modules"; // optional module docstring
35
36 py::module_ unpack_module = m.def_submodule("unpack");
38
39 py::module_ fc_module = m.def_submodule("file_conversion");
41
42}
43
44} // namespace python
45} // namespace rawdatautils
46} // namespace dunedaq
void register_file_conversion(py::module &m)
PYBIND11_MODULE(_daq_rawdatautils_py, m)
Definition module.cpp:32
void register_unpack(py::module &)
Definition unpack.cpp:95
Including Qt Headers.