mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-07-12 10:51:50 +02:00
removed prepare acq
This commit is contained in:
@ -1021,9 +1021,6 @@ class Detector {
|
||||
|
||||
Result<defs::runStatus> getRunStatus(Positions pos = {});
|
||||
|
||||
/** [Eiger] */
|
||||
void prepareAcquisition();
|
||||
|
||||
/** Start detector acquisition (Non blocking) */
|
||||
void startAcquisition();
|
||||
|
||||
|
@ -1532,15 +1532,8 @@ Result<defs::runStatus> Detector::getRunStatus(Positions pos) {
|
||||
return pimpl->Parallel(&slsDetector::getRunStatus, pos);
|
||||
}
|
||||
|
||||
void Detector::prepareAcquisition() {
|
||||
pimpl->Parallel(&slsDetector::prepareAcquisition, {});
|
||||
}
|
||||
|
||||
void Detector::startAcquisition() {
|
||||
if (getDetectorType() == defs::EIGER) {
|
||||
prepareAcquisition();
|
||||
}
|
||||
pimpl->Parallel(&slsDetector::startAcquisition, {});
|
||||
pimpl->startAcquisition();
|
||||
}
|
||||
|
||||
void Detector::stopAcquisition() { pimpl->stopAcquisition(); }
|
||||
|
Reference in New Issue
Block a user