DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
amc.cpp
Go to the documentation of this file.
1
9#include "pybind11/pybind11.h"
10#include "pybind11/stl.h"
11
13
14namespace py = pybind11;
15
17
18void
19register_amc(py::module& m) {
20
21 py::class_<AMCController>(m, "AMCController")
22 .def(py::init<const std::string&, uint16_t>())
23 .def("card_status", &AMCController::card_status)
24 .def("card_reset", &AMCController::card_reset)
25 .def("card_start", &AMCController::card_start)
26 .def("card_stop", &AMCController::card_stop)
27 ;
28}
29
30} // namespace dunedaq::tdemodules::python
void register_amc(py::module &m)
Definition amc.cpp:19