]> git.uio.no Git - u/mrichter/AliRoot.git/blob - 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
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. 
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
22 //
23 //
24 //*-- Author: Gustavo Conesa (LNF-INFN) 
25 //////////////////////////////////////////////////////////////////////////////
26   
27   
28 // --- ROOT system --- 
29 //#include <Riostream.h>
30 #include <TLorentzVector.h>
31 #include <TObjArray.h>
32
33 // --- AliRoot system --- 
34 #include "AliIsolationCut.h" 
35 #include "AliAODPWG4ParticleCorrelation.h"
36 #include "AliAODTrack.h"
37 #include "AliAODCaloCluster.h"
38 #include "AliCaloTrackReader.h"
39
40 ClassImp(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 }
54 /*
55 //____________________________________________________________________________
56 AliIsolationCut::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
64   
65 }
66
67 //_________________________________________________________________________
68 AliIsolationCut & AliIsolationCut::operator = (const AliIsolationCut & source)
69 {
70   // assignment operator
71   
72   if(&source == this) return *this;
73   
74   fConeSize = source.fConeSize ;
75   fPtThreshold = source.fPtThreshold ; 
76   fICMethod = source.fICMethod ;
77   fPtFraction = source.fPtFraction ;
78
79   return *this;
80   
81 }
82 */
83 //____________________________________________________________________________
84 TString AliIsolationCut::GetICParametersList()
85 {
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; 
103 }
104
105 //____________________________________________________________________________
106 void AliIsolationCut::InitParameters()
107 {
108   //Initialize the parameters of the analysis.
109   
110   fConeSize          = 0.4 ; 
111   fPtThreshold       = 1. ; 
112   fPtFraction        = 0.1 ; 
113   
114   fICMethod = kPtThresIC; // 0 pt threshol method, 1 cone pt sum method
115   
116 }
117
118 //__________________________________________________________________
119 void  AliIsolationCut::MakeIsolationCut(TObjArray * const plCTS,  TObjArray * const plNe, AliCaloTrackReader * const reader, 
120                                         const Bool_t fillAOD, AliAODPWG4ParticleCorrelation  *pCandidate, 
121                                         const TString aodArrayRefName,
122                                         Int_t & n, Int_t & nfrac, Float_t &coneptsum,  Bool_t  &isolated) const
123 {  
124   //Search in cone around a candidate particle if it is isolated 
125   Float_t phiC  = pCandidate->Phi() ;
126   Float_t etaC  = pCandidate->Eta() ;
127   Float_t ptC   = pCandidate->Pt() ;
128   Float_t pt    = -100. ;
129   Float_t eta   = -100.  ;
130   Float_t phi   = -100.  ;
131   Float_t rad   = -100 ;
132   n = 0 ;
133   coneptsum = 0.; 
134   isolated = kFALSE;
135
136   //Initialize the array with refrences
137   TObjArray * refclusters = 0x0;
138   TObjArray * reftracks   = 0x0;
139   Int_t ntrackrefs   = 0;
140   Int_t nclusterrefs = 0;
141   
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) {
160           ntrackrefs++;
161           if(ntrackrefs == 1){
162             reftracks = new TObjArray(0);
163             reftracks->SetName(aodArrayRefName+"Tracks");
164             reftracks->SetOwner(kFALSE);
165           }
166           reftracks->Add(track);
167         }
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){
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         }
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 ; 
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();
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) {
213           nclusterrefs++;
214           if(nclusterrefs==1){
215             refclusters = new TObjArray(0);
216             refclusters->SetName(aodArrayRefName+"Clusters");
217             refclusters->SetOwner(kFALSE);
218           }
219           refclusters->Add(calo);
220         }
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   
231   //Add reference arrays to AOD when filling AODs only
232   if(fillAOD) {
233     if(refclusters)     pCandidate->AddObjArray(refclusters);
234     if(reftracks)       pCandidate->AddObjArray(reftracks);
235   }
236
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   }
252
253   //if(refclusters) delete refclusters;
254   //if(reftracks)   delete reftracks;
255
256 }
257
258 //__________________________________________________________________
259 void 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