This commit is contained in:
2019-08-16 17:07:30 +02:00
parent 336f8ceb50
commit 10ce82fc5f
10 changed files with 115 additions and 181 deletions

View File

@@ -1094,11 +1094,11 @@ void Detector::setActive(bool active, Positions pos) {
}
Result<bool> Detector::getBottom(Positions pos) const {
return pimpl->Parallel(&slsDetector::getFlippedData, pos, defs::X);
return pimpl->Parallel(&slsDetector::getFlippedDataX, pos);
}
void Detector::setBottom(bool value, Positions pos) {
pimpl->Parallel(&slsDetector::setFlippedData, pos, defs::X, static_cast<int>(value));
pimpl->Parallel(&slsDetector::setFlippedDataX, pos, static_cast<int>(value));
}
Result<int> Detector::getAllTrimbits(Positions pos) const {