We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4510ff5 commit 259fce3Copy full SHA for 259fce3
PWGEM/Dilepton/TableProducer/skimmerPrimaryMuon.cxx
@@ -336,7 +336,9 @@ struct associateSameMFT {
336
if (global_muon.globalIndex() == muon.globalIndex()) { // don't store myself.
337
continue;
338
}
339
- self_Ids.emplace_back(global_muon.globalIndex());
+ if (global_muon.collisionId() == muon.collisionId()) {
340
+ self_Ids.emplace_back(global_muon.globalIndex());
341
+ }
342
343
em_same_mft_ids(self_Ids);
344
self_Ids.clear();
0 commit comments