mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2026-02-01 19:24:55 +01:00
wip
This commit is contained in:
@@ -707,6 +707,14 @@ void Detector::setFilterResistor(int value, Positions pos) {
|
||||
pimpl->Parallel(&Module::setFilterResistor, pos, value);
|
||||
}
|
||||
|
||||
Result<defs::currentSrcParameters>
|
||||
Detector::getCurrentSource(Positions pos) const {
|
||||
return pimpl->Parallel(&Module::getCurrentSource, pos);
|
||||
}
|
||||
|
||||
void Detector::setCurrentSource(defs::currentSrcParameters par, Positions pos) {
|
||||
pimpl->Parallel(&Module::setCurrentSource, pos, par);
|
||||
}
|
||||
// Acquisition
|
||||
|
||||
void Detector::acquire() { pimpl->acquire(); }
|
||||
@@ -1620,14 +1628,6 @@ void Detector::setCDSGain(bool value, Positions pos) {
|
||||
pimpl->Parallel(&Module::setCDSGain, pos, value);
|
||||
}
|
||||
|
||||
Result<bool> Detector::getCurrentSource(Positions pos) const {
|
||||
return pimpl->Parallel(&Module::getCurrentSource, pos);
|
||||
}
|
||||
|
||||
void Detector::setCurrentSource(bool value, Positions pos) {
|
||||
pimpl->Parallel(&Module::setCurrentSource, pos, value);
|
||||
}
|
||||
|
||||
Result<defs::timingSourceType> Detector::getTimingSource(Positions pos) const {
|
||||
return pimpl->Parallel(&Module::getTimingSource, pos);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user