#include #include #include #include #include "Detector.h" #include "ToString.h" #include "network_utils.h" #include "sls_detector_defs.h" #include "typecaster.h" namespace py = pybind11; void init_det(py::module &m) { using sls::Detector; using sls::Positions; using sls::Result; using sls::defs; py::class_ CppDetectorApi(m, "CppDetectorApi"); CppDetectorApi .def(py::init()) [[FUNCTIONS]] }