bug fix in startDetector vector

This commit is contained in:
maliakal_d 2022-02-23 10:32:06 +01:00
parent 2034362eca
commit 939fc70284

View File

@ -765,7 +765,7 @@ void Detector::startDetector(Positions pos) {
for (unsigned int i = 0; i < is_master.size(); ++i) {
if (is_master[i]) {
masterPosition = i;
slaves.erase(pos.begin() + i);
slaves.erase(slaves.begin() + i);
}
}
pimpl->Parallel(&Module::startAcquisition, pos);