Skip to content

Commit 41115e6

Browse files
dstoccodavidrohr
authored andcommitted
Skip physics triggers when testing the MID UL since they are not transmitted
1 parent 6f83e43 commit 41115e6

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

Detectors/MUON/MID/QC/src/UserLogicChecker.cxx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ void UserLogicChecker::fillBoards(gsl::span<const ROBoard> data, gsl::span<const
7575
} else if (loc.triggerWord & raw::sEOX) {
7676
isInside->second = false;
7777
}
78+
if (loc.triggerWord & raw::sPHY) {
79+
continue; // Skip physics triggers since they are not present in UL
80+
}
7881
if (isInside->second) {
7982
boards[id].push_back({rofIt->interactionRecord, loc});
8083
}

0 commit comments

Comments
 (0)