mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-16 14:57:13 +02:00
jf: timing info decoder (#987)
* timing_info_decoder command with options swissfel (default) and shine. added to python, command line generation, autocomplete, tostring, tests.
This commit is contained in:
@ -1271,6 +1271,16 @@ void init_det(py::module &m) {
|
||||
(void (Detector::*)(const defs::pedestalParameters, sls::Positions)) &
|
||||
Detector::setPedestalMode,
|
||||
py::arg(), py::arg() = Positions{});
|
||||
CppDetectorApi.def(
|
||||
"getTimingInfoDecoder",
|
||||
(Result<defs::timingInfoDecoder>(Detector::*)(sls::Positions) const) &
|
||||
Detector::getTimingInfoDecoder,
|
||||
py::arg() = Positions{});
|
||||
CppDetectorApi.def(
|
||||
"setTimingInfoDecoder",
|
||||
(void (Detector::*)(defs::timingInfoDecoder, sls::Positions)) &
|
||||
Detector::setTimingInfoDecoder,
|
||||
py::arg(), py::arg() = Positions{});
|
||||
CppDetectorApi.def(
|
||||
"getCollectionMode",
|
||||
(Result<defs::collectionMode>(Detector::*)(sls::Positions) const) &
|
||||
|
Reference in New Issue
Block a user