From a27e96f1ebfe599e03ed5bd7e2fa60d2d84e8544 Mon Sep 17 00:00:00 2001 From: saiola Date: Fri, 13 Jun 2014 11:25:13 -0400 Subject: [PATCH] Bug fix: tracks outside EMCal acceptance were propagated instead of tracks inside --- PWG/EMCAL/AliEmcalAodTrackFilterTask.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWG/EMCAL/AliEmcalAodTrackFilterTask.cxx b/PWG/EMCAL/AliEmcalAodTrackFilterTask.cxx index fe4794afa16..874227387c7 100644 --- a/PWG/EMCAL/AliEmcalAodTrackFilterTask.cxx +++ b/PWG/EMCAL/AliEmcalAodTrackFilterTask.cxx @@ -163,7 +163,7 @@ void AliEmcalAodTrackFilterTask::UserExec(Option_t *) else if (!newt->IsExtrapolatedToEMCAL()) { if (fAttemptProp) propthistrack = kTRUE; - else if (fAttemptPropMatch && !newt->IsEMCAL()) + else if (fAttemptPropMatch && newt->IsEMCAL()) propthistrack = kTRUE; } if (propthistrack) -- 2.43.0