From 8e4cd3ab2126984f20f09a1cc980109631af2c34 Mon Sep 17 00:00:00 2001 From: rbertens Date: Mon, 16 Jun 2014 10:45:01 +0200 Subject: [PATCH] small fix: cut on maximum difference between v0m and trk multiplicity when selecting tpc multiplicity outlier cut for aod analysis (was only enablened for esd) --- PWG/FLOW/Tasks/AliFlowEventCuts.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PWG/FLOW/Tasks/AliFlowEventCuts.cxx b/PWG/FLOW/Tasks/AliFlowEventCuts.cxx index 5812de92edf..d0784f90c2e 100644 --- a/PWG/FLOW/Tasks/AliFlowEventCuts.cxx +++ b/PWG/FLOW/Tasks/AliFlowEventCuts.cxx @@ -415,7 +415,7 @@ Bool_t AliFlowEventCuts::PassesCuts(AliVEvent *event, AliMCEvent *mcevent) if( TMath::Abs(tVtxZ-tSPDVtxZ) > 0.5 ) pass = kFALSE; } AliCentrality* centr = aodevent->GetHeader()->GetCentralityP(); - if(fCutTPCmultiplicityOutliers){ + if(fCutTPCmultiplicityOutliers || fCutTPCmultiplicityOutliersAOD){ Double_t v0Centr = centr->GetCentralityPercentile("V0M"); Double_t trkCentr = centr->GetCentralityPercentile("TRK"); if(TMath::Abs(v0Centr-trkCentr) > 5) pass = kFALSE; -- 2.43.0