From: gconesab Date: Fri, 13 Jun 2014 12:57:06 +0000 (+0200) Subject: change IsTPCOnly by IsTPCConstrained since first is being removed X-Git-Url: http://git.uio.no/git/?a=commitdiff_plain;h=c860bb712c204649d403e785f974445d491acc4e;p=u%2Fmrichter%2FAliRoot.git change IsTPCOnly by IsTPCConstrained since first is being removed --- diff --git a/EMCAL/AliEMCALRecoUtils.cxx b/EMCAL/AliEMCALRecoUtils.cxx index 6268bc56ce4..be450374705 100644 --- a/EMCAL/AliEMCALRecoUtils.cxx +++ b/EMCAL/AliEMCALRecoUtils.cxx @@ -1762,7 +1762,7 @@ void AliEMCALRecoUtils::FindMatches(AliVEvent *event, if (fAODTPCOnlyTracks) { // Match with TPC only tracks, default from May 2013, before filter bit 32 //printf("Match with TPC only tracks, accept? %d, test bit 128 <%d> \n", aodTrack->IsTPCOnly(), aodTrack->TestFilterMask(128)); - if (!aodTrack->IsTPCOnly()) continue ; + if (!aodTrack->IsTPCConstrained()) continue ; } else if (fAODHybridTracks) { // Match with hybrid tracks //printf("Match with Hybrid tracks, accept? %d \n", aodTrack->IsHybridGlobalConstrainedGlobal()); if (!aodTrack->IsHybridGlobalConstrainedGlobal()) continue ;