diff --git a/slsDetectorSoftware/src/Detector.cpp b/slsDetectorSoftware/src/Detector.cpp index 2acc30749..31ab0d22b 100644 --- a/slsDetectorSoftware/src/Detector.cpp +++ b/slsDetectorSoftware/src/Detector.cpp @@ -698,7 +698,7 @@ void Detector::startDetectorReadout() { void Detector::stopDetector(Positions pos) { auto detector_type = getDetectorType().squash(); - if (detector_type == defs::EIGER && size() > 1) { + /*if (detector_type == defs::EIGER && size() > 1) { auto is_master = getMaster(); int masterPosition = -1; std::vector slaves; @@ -716,9 +716,9 @@ void Detector::stopDetector(Positions pos) { if (masterPosition != -1) { pimpl->Parallel(&Module::stopAcquisition, {masterPosition}); } - } else { - pimpl->Parallel(&Module::stopAcquisition, pos); - } + } else {*/ + pimpl->Parallel(&Module::stopAcquisition, pos); + //} } Result Detector::getDetectorStatus(Positions pos) const {