Skip to content

Commit 60879da

Browse files
committed
Fix collision ID in output tracks table
1 parent 50e3a1f commit 60879da

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

PWGDQ/Tasks/global-muon-matcher.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ struct GlobalMuonMatching {
893893
float chi2MatchMCHMFT,
894894
float matchScoreMCHMFT)
895895
{
896-
const int32_t collisionId = track.has_collision() ? track.collisionId() : -1;
896+
const auto collisionId = track.collisionId();
897897
bool hasBcSlice = false;
898898
std::array<int32_t, 2> bcSlice{};
899899
if (collisionId < 0) {

0 commit comments

Comments
 (0)