Skip to content
Snippets Groups Projects
Commit 5a6bf944 authored by Tadej Novak's avatar Tadej Novak
Browse files

Merge branch 'OverlapBug' into 'main'

MuonR4 digitization - Fix deadtime comparison

See merge request !76497
parents 02283e7f 17688f54
No related branches found
No related tags found
6 merge requests!77731Draft: Updates to ZDC reconstruction,!77728Draft: updates to ZDC reconstruction,!77522Draft: sTGC Pad Trigger Emulator,!76725ZdcNtuple: Fix cppcheck warning.,!76611L1CaloFEXByteStream: Fix out-of-bounds array accesses.,!76497MuonR4 digitization - Fix deadtime comparison
......@@ -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