veto file in

This commit is contained in:
2020-07-14 18:51:47 +02:00
parent 35dbc3813d
commit 7752b86d97
12 changed files with 255 additions and 22 deletions

View File

@ -1297,6 +1297,11 @@ void Detector::setVetoReference(const int gainIndex, const int value,
pimpl->Parallel(&Module::setVetoReference, pos, gainIndex, value);
}
void Detector::setVetoFile(const int chipIndex, const std::string &fname,
Positions pos) {
pimpl->Parallel(&Module::setVetoFile, pos, chipIndex, fname);
}
Result<defs::burstMode> Detector::getBurstMode(Positions pos) {
return pimpl->Parallel(&Module::getBurstMode, pos);
}