Skip to content

Commit 8c66965

Browse files
author
Ionut Cristian Arsene
committed
small fix
1 parent 8ecfba3 commit 8c66965

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PWGDQ/Tasks/filterPPwithAssociation.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ struct DQFilterPPTask {
763763
VarManager::FillPair<VarManager::kDecayToEE, TTrackFillMap>(t1, t2); // compute pair quantities
764764
for (int icut = 0; icut < fNBarrelCuts; icut++) {
765765
// select like-sign pairs if trigger has set boolean true within fConfigFilterLsBarrelTracksPairs
766-
if (!(fPairingLS & (static_cast<uint32_t>(1) << icut))) {
766+
if (!(fPairingLSBarrel & (static_cast<uint32_t>(1) << icut))) {
767767
if (t1.sign() * t2.sign() > 0) {
768768
continue;
769769
}
@@ -777,6 +777,7 @@ struct DQFilterPPTask {
777777
}
778778
objCountersBarrel[icut] += 1; // count the pair
779779
if (fConfigQA) { // fill histograms if QA is enabled
780+
cout << "=========== filling pair for collision " << collision.globalIndex() << endl;
780781
fHistMan->FillHistClass(fBarrelPairHistNames[icut].Data(), VarManager::fgValues);
781782
}
782783
}

0 commit comments

Comments
 (0)