mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-17 15:27:13 +02:00
gotthard2: bursttype to burstmode
This commit is contained in:
@ -1180,20 +1180,12 @@ void Detector::setVetoReference(const int gainIndex, const int value, Positions
|
||||
pimpl->Parallel(&slsDetector::setVetoReference, pos, gainIndex, value);
|
||||
}
|
||||
|
||||
Result<bool> Detector::getBurstMode(Positions pos) {
|
||||
Result<defs::burstMode> Detector::getBurstMode(Positions pos) {
|
||||
return pimpl->Parallel(&slsDetector::getBurstMode, pos);
|
||||
}
|
||||
|
||||
void Detector::setBurstMode(bool enable, Positions pos) {
|
||||
pimpl->Parallel(&slsDetector::setBurstMode, pos, enable);
|
||||
}
|
||||
|
||||
Result<defs::burstModeType> Detector::getBurstType(Positions pos) {
|
||||
return pimpl->Parallel(&slsDetector::getBurstType, pos);
|
||||
}
|
||||
|
||||
void Detector::setBurstType(defs::burstModeType value, Positions pos) {
|
||||
pimpl->Parallel(&slsDetector::setBurstType, pos, value);
|
||||
void Detector::setBurstMode(defs::burstMode value, Positions pos) {
|
||||
pimpl->Parallel(&slsDetector::setBurstMode, pos, value);
|
||||
}
|
||||
|
||||
// Mythen3 Specific
|
||||
|
Reference in New Issue
Block a user