DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
file_conversion.cpp
Go to the documentation of this file.
1
12
13
14#include <pybind11/numpy.h>
15#include <pybind11/pybind11.h>
16#include <pybind11/stl.h>
17
18namespace py = pybind11;
19
20namespace dunedaq {
21namespace rawdatautils {
22
23namespace fc {
24namespace python {
25
26void
28{
29 m.def("wib_hdf5_to_wib2_binary", &wib_hdf5_to_wib2_binary);
30 m.def("wib_binary_to_wib2_binary", &wib_binary_to_wib2_binary);
31 m.def("wib_hdf5_to_wibeth_binary", &wib_hdf5_to_wibeth_binary);
32 m.def("wib_binary_to_wibeth_binary", &wib_binary_to_wibeth_binary);
33 m.def("wib_hdf5_to_tde_binary", &wib_hdf5_to_tde_binary);
34 m.def("wib_binary_to_tde_binary", &wib_binary_to_tde_binary);
35}
36
37} // namespace python
38} // namespace file_conversion
39} // namespace rawdatautils
40} // namespace dunedaq
void register_file_conversion(py::module &m)
void wib_hdf5_to_wib2_binary(std::string &, std::string &)
Definition WIBtoWIB2.hpp:60
void wib_hdf5_to_wibeth_binary(std::string &, std::string &)
void wib_binary_to_wib2_binary(std::string &filename, std::string &output)
Definition WIBtoWIB2.hpp:38
void wib_hdf5_to_tde_binary(std::string &, std::string &)
Definition WIBtoTDE.hpp:70
void wib_binary_to_wibeth_binary(std::string &filename, std::string &output)
void wib_binary_to_tde_binary(std::string &filename, std::string &output)
Definition WIBtoTDE.hpp:44
Including Qt Headers.