Skip to content
Snippets Groups Projects
Commit 1284d5b9 authored by Leonardo Monaco's avatar Leonardo Monaco
Browse files

Fix deadtime comparison

parent 7b637ca2
No related branches found
No related tags found
No related merge requests found
Pipeline #9557961 passed
......@@ -157,7 +157,7 @@ namespace MuonR4 {
/// Find the next digit which is either another tube or beyond the dead time
saveMe = std::find_if(saveMe +1, digitsInChamber.end(),
[deadInterval, saved](const DigitSDOPair& digitized) {
return saved->identify() != digitized.first->identify() || deadInterval < saved->tdc();
return saved->identify() != digitized.first->identify() || deadInterval < digitized.first->tdc();
});
}
} while (viewer.next());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment