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
15
16extern void
17register_sourceid(py::module&);
18extern void
19register_fragment(py::module&);
20extern void
22extern void
23register_trigger_record(py::module&);
24extern void
25register_timeslice(py::module&);
26
27PYBIND11_MODULE(_daq_daqdataformats_py, m)
28{
29
30 m.doc() = "c++ implementation of the dunedaq daqdataformats modules"; // optional module docstring
31
37}
38
39} // namespace dunedaq::daqdataformats::python
void register_fragment(py::module &m)
Definition fragment.cpp:21
void register_trigger_record(py::module &)
PYBIND11_MODULE(_daq_daqdataformats_py, m)
Definition module.cpp:27
void register_timeslice(py::module &)
void register_component_request(py::module &m)
void register_sourceid(py::module &)
Definition sourceid.cpp:22