Skip to content
Snippets Groups Projects

MuonR4 digitization - Fix deadtime comparison

Merged Leonardo Monaco requested to merge lmonaco/athena:OverlapBug into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -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());
Loading