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
14namespace dunedaq {
15namespace detchannelmaps {
16namespace python {
17
18 extern void register_maps(py::module &);
19 extern void register_hw_map_service(py::module&);
20
21PYBIND11_MODULE(_daq_detchannelmaps_py, m) {
22
23 m.doc() = "c++ implementation of the dunedaq detchannelmaps modules"; // optional module docstring
24
26}
27
28} // namespace python
29} // namespace detchannelmaps
30} // namespace dunedaq
void register_maps(py::module &m)
PYBIND11_MODULE(_daq_detchannelmaps_py, m)
Definition module.cpp:21
void register_hw_map_service(py::module &)
Including Qt Headers.