]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PWG4/PartCorrBase/AliIsolationCut.cxx
Comment out copy ctors and assignment opetators from classes source code, not needed.
[u/mrichter/AliRoot.git] / PWG4 / PartCorrBase / AliIsolationCut.cxx
CommitLineData
1c5acb87 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15/* $Id: $ */
16
17//_________________________________________________________________________
18// Class containing methods for the isolation cut.
591cc579 19// An AOD candidate (AliAODPWG4ParticleCorrelation type)
20// is passed. Look in a cone around the candidate and study
21// the hadronic activity inside to decide if the candidate is isolated
1c5acb87 22//
23//
24//*-- Author: Gustavo Conesa (LNF-INFN)
25//////////////////////////////////////////////////////////////////////////////
26
27
28// --- ROOT system ---
29//#include <Riostream.h>
30#include <TLorentzVector.h>
591cc579 31#include <TObjArray.h>
1c5acb87 32
33// --- AliRoot system ---
34#include "AliIsolationCut.h"
1c5acb87 35#include "AliAODPWG4ParticleCorrelation.h"
36#include "AliAODTrack.h"
37#include "AliAODCaloCluster.h"
233e0df8 38#include "AliCaloTrackReader.h"
1c5acb87 39
40ClassImp(AliIsolationCut)
41
42//____________________________________________________________________________
43 AliIsolationCut::AliIsolationCut() :
44 TObject(),
45 fConeSize(0.),fPtThreshold(0.), fPtFraction(0.), fICMethod(0)
46
47{
48 //default ctor
49
50 //Initialize parameters
51 InitParameters();
52
53}
78219bac 54/*
1c5acb87 55//____________________________________________________________________________
56AliIsolationCut::AliIsolationCut(const AliIsolationCut & g) :
57 TObject(g),
58 fConeSize(g.fConeSize),
59 fPtThreshold(g.fPtThreshold),
60 fPtFraction(g.fPtFraction),
61 fICMethod(g.fICMethod)
62{
63 // cpy ctor
477d6cee 64
1c5acb87 65}
66
67//_________________________________________________________________________
68AliIsolationCut & AliIsolationCut::operator = (const AliIsolationCut & source)
69{
70 // assignment operator
71
72 if(&source == this) return *this;
477d6cee 73
1c5acb87 74 fConeSize = source.fConeSize ;
75 fPtThreshold = source.fPtThreshold ;
76 fICMethod = source.fICMethod ;
77 fPtFraction = source.fPtFraction ;
78
79 return *this;
80
81}
78219bac 82*/
1c5acb87 83//____________________________________________________________________________
84TString AliIsolationCut::GetICParametersList()
85{
477d6cee 86 //Put data member values in string to keep in output container
87
88 TString parList ; //this will be list of parameters used for this analysis.
89 char onePar[255] ;
90
91 sprintf(onePar,"--- AliIsolationCut ---\n") ;
92 parList+=onePar ;
93 sprintf(onePar,"fConeSize: (isolation cone size) %1.2f\n",fConeSize) ;
94 parList+=onePar ;
95 sprintf(onePar,"fPtThreshold =%1.2f (isolation pt threshold) \n",fPtThreshold) ;
96 parList+=onePar ;
97 sprintf(onePar,"fPtFraction=%1.2f (isolation pt threshold fraction ) \n",fPtFraction) ;
98 parList+=onePar ;
99 sprintf(onePar,"fICMethod=%d (isolation cut case) \n",fICMethod) ;
100 parList+=onePar ;
101
102 return parList;
1c5acb87 103}
104
105//____________________________________________________________________________
106void AliIsolationCut::InitParameters()
107{
108 //Initialize the parameters of the analysis.
477d6cee 109
7787a778 110 fConeSize = 0.4 ;
111 fPtThreshold = 1. ;
1c5acb87 112 fPtFraction = 0.1 ;
477d6cee 113
1c5acb87 114 fICMethod = kPtThresIC; // 0 pt threshol method, 1 cone pt sum method
477d6cee 115
1c5acb87 116}
117
118//__________________________________________________________________
233e0df8 119void AliIsolationCut::MakeIsolationCut(TObjArray * const plCTS, TObjArray * const plNe, AliCaloTrackReader * const reader,
1c5acb87 120 const Bool_t fillAOD, AliAODPWG4ParticleCorrelation *pCandidate,
a3aebfff 121 const TString aodArrayRefName,
1c5acb87 122 Int_t & n, Int_t & nfrac, Float_t &coneptsum, Bool_t &isolated) const
123{
477d6cee 124 //Search in cone around a candidate particle if it is isolated
125 Float_t phiC = pCandidate->Phi() ;
9ccc5a0b 126 Float_t etaC = pCandidate->Eta() ;
127 Float_t ptC = pCandidate->Pt() ;
128 Float_t pt = -100. ;
477d6cee 129 Float_t eta = -100. ;
9ccc5a0b 130 Float_t phi = -100. ;
477d6cee 131 Float_t rad = -100 ;
477d6cee 132 n = 0 ;
133 coneptsum = 0.;
134 isolated = kFALSE;
a3aebfff 135
136 //Initialize the array with refrences
591cc579 137 TObjArray * refclusters = 0x0;
9ccc5a0b 138 TObjArray * reftracks = 0x0;
139 Int_t ntrackrefs = 0;
4ba526c9 140 Int_t nclusterrefs = 0;
141
477d6cee 142 //Check charged particles in cone.
143 if(plCTS){
144 TVector3 p3;
145 for(Int_t ipr = 0;ipr < plCTS->GetEntries() ; ipr ++ ){
146 AliAODTrack* track = (AliAODTrack *)(plCTS->At(ipr)) ;
147 //Do not count the candidate (pion, conversion photon) or the daughters of the candidate
148 if(track->GetID() == pCandidate->GetTrackLabel(0) || track->GetID() == pCandidate->GetTrackLabel(1)) continue ;
149 p3.SetXYZ(track->Px(),track->Py(),track->Pz());
150 pt = p3.Pt();
151 eta = p3.Eta();
152 phi = p3.Phi() ;
153 if(phi<0) phi+=TMath::TwoPi();
154
155 //Check if there is any particle inside cone with pt larger than fPtThreshold
156 rad = TMath::Sqrt((eta-etaC)*(eta-etaC)+ (phi-phiC)*(phi-phiC));
157
158 if(rad < fConeSize){
159 if(fillAOD) {
4ba526c9 160 ntrackrefs++;
9ccc5a0b 161 if(ntrackrefs == 1){
162 reftracks = new TObjArray(0);
4ba526c9 163 reftracks->SetName(aodArrayRefName+"Tracks");
164 reftracks->SetOwner(kFALSE);
165 }
a3aebfff 166 reftracks->Add(track);
1c5acb87 167 }
477d6cee 168 //printf("charged in isolation cone pt %f, phi %f, eta %f, R %f \n",pt,phi,eta,rad);
169 coneptsum+=pt;
170 if(pt > fPtThreshold ) n++;
171 if(pt > fPtFraction*ptC ) nfrac++;
172 }
173 }// charged particle loop
174 }//Tracks
175
176 //Check neutral particles in cone.
177 if(plNe){
233e0df8 178
179 //Get vertex for photon momentum calculation
180 Double_t vertex[] = {0,0,0} ; //vertex ;
181 Double_t vertex2[] = {0,0,0} ; //vertex second AOD input ;
182 if(!reader->GetDataType()== AliCaloTrackReader::kMC)
183 {
184 reader->GetVertex(vertex);
185 if(reader->GetSecondInputAODTree()) reader->GetSecondInputAODVertex(vertex2);
186 }
477d6cee 187 TLorentzVector mom ;
188 for(Int_t ipr = 0;ipr < plNe->GetEntries() ; ipr ++ ){
189 AliAODCaloCluster * calo = (AliAODCaloCluster *)(plNe->At(ipr)) ;
190
191 //Do not count the candidate (photon or pi0) or the daughters of the candidate
192 if(calo->GetID() == pCandidate->GetCaloLabel(0) || calo->GetID() == pCandidate->GetCaloLabel(1)) continue ; //Skip matched clusters with tracks
193
194 if(calo->GetNTracksMatched() > 0) continue ;
4ba526c9 195 //Input from second AOD?
196 Int_t input = 0;
197 if (pCandidate->GetDetector() == "EMCAL" && reader->GetAODEMCALNormalInputEntries() <= ipr) input = 1 ;
198 else if(pCandidate->GetDetector() == "PHOS" && reader->GetAODPHOSNormalInputEntries() <= ipr) input = 1;
199
200 //Get Momentum vector,
201 if (input == 0) calo->GetMomentum(mom,vertex) ;//Assume that come from vertex in straight line
202 else if(input == 1) calo->GetMomentum(mom,vertex2);//Assume that come from vertex in straight line
203
204 pt = mom.Pt();
477d6cee 205 eta = mom.Eta();
206 phi = mom.Phi() ;
207 if(phi<0) phi+=TMath::TwoPi();
208
209 //Check if there is any particle inside cone with pt larger than fPtThreshold
210 rad = TMath::Sqrt((eta-etaC)*(eta-etaC)+ (phi-phiC)*(phi-phiC));
211 if(rad < fConeSize){
212 if(fillAOD) {
4ba526c9 213 nclusterrefs++;
214 if(nclusterrefs==1){
9ccc5a0b 215 refclusters = new TObjArray(0);
4ba526c9 216 refclusters->SetName(aodArrayRefName+"Clusters");
9ccc5a0b 217 refclusters->SetOwner(kFALSE);
4ba526c9 218 }
a3aebfff 219 refclusters->Add(calo);
1c5acb87 220 }
477d6cee 221 //printf("neutral in isolation cone pt %f, phi %f, eta %f, R %f \n",pt,phi,eta,rad);
222 coneptsum+=pt;
223 if(pt > fPtThreshold ) n++;
224 if(pt > fPtFraction*ptC ) nfrac++;
225 }//in cone
226 }// neutral particle loop
227 }//neutrals
228
229 //printf("Isolation Cut: in cone with: pT>pTthres %d, pT > pTfrac*pTcandidate %d \n",n,nfrac);
230
a3aebfff 231 //Add reference arrays to AOD when filling AODs only
232 if(fillAOD) {
4ba526c9 233 if(refclusters) pCandidate->AddObjArray(refclusters);
234 if(reftracks) pCandidate->AddObjArray(reftracks);
a3aebfff 235 }
236
477d6cee 237 //Check isolation, depending on method.
238 if( fICMethod == kPtThresIC){
239 if(n==0) isolated = kTRUE ;
240 }
241 else if( fICMethod == kSumPtIC){
242 if(coneptsum < fPtThreshold)
243 isolated = kTRUE ;
244 }
245 else if( fICMethod == kPtFracIC){
246 if(nfrac==0) isolated = kTRUE ;
247 }
248 else if( fICMethod == kSumPtFracIC){
249 if(coneptsum < fPtFraction*ptC)
250 isolated = kTRUE ;
251 }
4ba526c9 252
9ccc5a0b 253 //if(refclusters) delete refclusters;
4ba526c9 254 //if(reftracks) delete reftracks;
255
1c5acb87 256}
257
258//__________________________________________________________________
259void AliIsolationCut::Print(const Option_t * opt) const
260{
261
262 //Print some relevant parameters set for the analysis
263 if(! opt)
264 return;
265
266 printf("**** Print %s %s **** \n", GetName(), GetTitle() ) ;
267
268 printf("IC method = %d\n", fICMethod) ;
269 printf("Cone Size = %1.2f\n", fConeSize) ;
270 printf("pT threshold = %2.1f\n", fPtThreshold) ;
271 printf("pT fraction = %3.1f\n", fPtFraction) ;
272
273 printf(" \n") ;
274
275}