Skip to content

Commit 259fce3

Browse files
authored
[PWGEM/Dilepton] update skimmerPrimaryMuon.cxx (#10780)
1 parent 4510ff5 commit 259fce3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,9 @@ struct associateSameMFT {
336336
if (global_muon.globalIndex() == muon.globalIndex()) { // don't store myself.
337337
continue;
338338
}
339-
self_Ids.emplace_back(global_muon.globalIndex());
339+
if (global_muon.collisionId() == muon.collisionId()) {
340+
self_Ids.emplace_back(global_muon.globalIndex());
341+
}
340342
}
341343
em_same_mft_ids(self_Ids);
342344
self_Ids.clear();

0 commit comments

Comments
 (0)