diff --git a/python/slsdet/detector.py b/python/slsdet/detector.py index 9aa9bc821..124d97636 100755 --- a/python/slsdet/detector.py +++ b/python/slsdet/detector.py @@ -974,14 +974,6 @@ class Detector(CppDetectorApi): print("Set only") return 0 - @property - def patclkctrl(self): - return element_if_equal(self.getPatternClockControl()) - - @patclkctrl.setter - def patclkctrl(self, mask): - self.setPatternClockControl(mask) - # patioctrl @property def patioctrl(self): diff --git a/python/src/detector.cpp b/python/src/detector.cpp index 06ae7c435..00300df96 100644 --- a/python/src/detector.cpp +++ b/python/src/detector.cpp @@ -1187,14 +1187,6 @@ void init_det(py::module &m) { (void (Detector::*)(uint64_t, sls::Positions)) & Detector::setPatternIOControl, py::arg(), py::arg() = Positions{}) - .def("getPatternClockControl", - (Result(Detector::*)(sls::Positions) const) & - Detector::getPatternClockControl, - py::arg() = Positions{}) - .def("setPatternClockControl", - (void (Detector::*)(uint64_t, sls::Positions)) & - Detector::setPatternClockControl, - py::arg(), py::arg() = Positions{}) .def("getPatternWord", (Result(Detector::*)(int, sls::Positions)) & Detector::getPatternWord,