From 83086e6cf6d3fdbd07ba09afd16109a2f1823ead Mon Sep 17 00:00:00 2001 From: loizides Date: Fri, 22 Mar 2013 14:53:31 +0000 Subject: [PATCH] set boundaries of ghosts to fEtaMax --- PWGJE/EMCALJetTasks/AliEmcalJetTask.cxx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/PWGJE/EMCALJetTasks/AliEmcalJetTask.cxx b/PWGJE/EMCALJetTasks/AliEmcalJetTask.cxx index 86f0c35d078..d1fac39f5dd 100644 --- a/PWGJE/EMCALJetTasks/AliEmcalJetTask.cxx +++ b/PWGJE/EMCALJetTasks/AliEmcalJetTask.cxx @@ -42,14 +42,14 @@ AliEmcalJetTask::AliEmcalJetTask() : fMinJetClusPt(0.15), fPhiMin(0), fPhiMax(TMath::TwoPi()), - fEtaMin(-1), - fEtaMax(1), + fEtaMin(-0.9), + fEtaMax(+0.9), fMinJetArea(0.01), fMinJetPt(1.0), fJetPhiMin(-10), - fJetPhiMax(10), + fJetPhiMax(+10), fJetEtaMin(-1), - fJetEtaMax(1), + fJetEtaMax(+1), fGhostArea(0.01), fIsInit(0), fIsPSelSet(0), @@ -78,14 +78,14 @@ AliEmcalJetTask::AliEmcalJetTask(const char *name) : fMinJetClusPt(0.15), fPhiMin(0), fPhiMax(TMath::TwoPi()), - fEtaMin(-1), - fEtaMax(1), + fEtaMin(-0.9), + fEtaMax(+0.9), fMinJetArea(0.01), fMinJetPt(1.0), fJetPhiMin(-10), - fJetPhiMax(10), + fJetPhiMax(+10), fJetEtaMin(-1), - fJetEtaMax(1), + fJetEtaMax(+1), fGhostArea(0.01), fIsInit(0), fIsPSelSet(0), @@ -168,7 +168,7 @@ void AliEmcalJetTask::FindJets() fjw.SetGhostArea(fGhostArea); fjw.SetR(fRadius); fjw.SetAlgorithm(jalgo); - fjw.SetMaxRap(1); + fjw.SetMaxRap(fEtaMax); fjw.Clear(); // get primary vertex -- 2.43.0