]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDCaloCluster.cxx
Put all the naming conventions into AlIQA
[u/mrichter/AliRoot.git] / STEER / AliESDCaloCluster.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
16 /* $Id$ */
17 /* $Log $ */
18
19 //-----------------------------------------------------------------
20 //           Implementation of the ESD Calorimeter cluster class
21 //   ESD = Event Summary Data
22 //   This is the class to deal with during the phisics analysis of data
23 //
24 //   J.L. Klay (LLNL)
25 //-----------------------------------------------------------------
26
27 #include <TLorentzVector.h>
28 #include "AliESDCaloCluster.h"
29
30 ClassImp(AliESDCaloCluster)
31
32 //_______________________________________________________________________
33 AliESDCaloCluster::AliESDCaloCluster() : 
34   TObject(),
35   fTracksMatched(0x0),
36   fLabels(0x0),
37   fDigitAmplitude(0x0),
38   fDigitTime(0x0),
39   fDigitIndex(0x0),
40   fEnergy(0),
41   fDispersion(0),
42   fChi2(0),
43   fM20(0),
44   fM02(0),
45   fM11(0),
46   fEmcCpvDistance(1024),
47   fDistToBadChannel(1024),
48   fID(0),
49   fNExMax(0),
50   fClusterType(kUndef)
51 {
52   //
53   // The default ESD constructor 
54   //
55   fGlobalPos[0] = fGlobalPos[1] = fGlobalPos[2] = 0.;
56   for(Int_t i=0; i<AliPID::kSPECIESN; i++) fPID[i] = 0.;
57 }
58
59 //_______________________________________________________________________
60 AliESDCaloCluster::AliESDCaloCluster(const AliESDCaloCluster& clus) : 
61   TObject(clus),
62   fTracksMatched(clus.fTracksMatched?new TArrayI(*clus.fTracksMatched):0x0),
63   fLabels(clus.fLabels?new TArrayI(*clus.fLabels):0x0),
64   fDigitAmplitude(clus.fDigitAmplitude?new TArrayS(*clus.fDigitAmplitude):0x0),
65   fDigitTime(clus.fDigitTime?new TArrayS(*clus.fDigitTime):0x0),
66   fDigitIndex(clus.fDigitIndex?new TArrayS(*clus.fDigitIndex):0x0),
67   fEnergy(clus.fEnergy),
68   fDispersion(clus.fDispersion),
69   fChi2(clus.fChi2),
70   fM20(clus.fM20),
71   fM02(clus.fM02),
72   fM11(clus.fM11),
73   fEmcCpvDistance(clus.fEmcCpvDistance),
74   fDistToBadChannel(clus.fDistToBadChannel),
75   fID(clus.fID),
76   fNExMax(clus.fNExMax),
77   fClusterType(clus.fClusterType)
78 {
79   //
80   // The copy constructor 
81   //
82   fGlobalPos[0] = clus.fGlobalPos[0];
83   fGlobalPos[1] = clus.fGlobalPos[1];
84   fGlobalPos[2] = clus.fGlobalPos[2];
85
86   for(Int_t i=0; i<AliPID::kSPECIESN; i++) fPID[i] = clus.fPID[i];
87
88 }
89
90 //_______________________________________________________________________
91 AliESDCaloCluster &AliESDCaloCluster::operator=(const AliESDCaloCluster& source)
92 {
93   // assignment operator
94
95   if(&source == this) return *this;
96   TObject::operator=(source);
97
98   fGlobalPos[0] = source.fGlobalPos[0];
99   fGlobalPos[1] = source.fGlobalPos[1];
100   fGlobalPos[2] = source.fGlobalPos[2];
101
102
103   fEnergy = source.fEnergy;
104   fDispersion = source.fDispersion;
105   fChi2 = source.fChi2;
106   fM20 = source.fM20;
107   fM02 = source.fM02;
108   fM11 = source.fM11;
109   fEmcCpvDistance = source.fEmcCpvDistance;
110   fDistToBadChannel = source.fDistToBadChannel ;
111   for(Int_t i=0; i<AliPID::kSPECIESN; i++) fPID[i] = source.fPID[i];
112   fID = source.fID;
113
114   delete fTracksMatched;
115   fTracksMatched = source.fTracksMatched?new TArrayI(*source.fTracksMatched):0x0;
116   delete fLabels;
117   fLabels = source.fLabels?new TArrayI(*source.fLabels):0x0;
118
119   delete fDigitAmplitude;
120   fDigitAmplitude = source.fDigitAmplitude?new TArrayS(*source.fDigitAmplitude):0x0;
121
122   delete fDigitTime;
123   fDigitTime = source.fDigitTime?new TArrayS(*source.fDigitTime):0x0;
124
125   delete fDigitIndex;
126   fDigitIndex = source.fDigitIndex?new TArrayS(*source.fDigitIndex):0x0;
127
128   fNExMax = source.fNExMax;
129   fClusterType = source.fClusterType;
130
131   return *this;
132
133 }
134
135
136 //_______________________________________________________________________
137 AliESDCaloCluster::~AliESDCaloCluster(){ 
138   //
139   // This is destructor according Coding Conventions 
140   //
141   delete fTracksMatched;
142   delete fLabels;
143   delete fDigitAmplitude;
144   delete fDigitTime;
145   delete fDigitIndex;
146 }
147
148 //_______________________________________________________________________
149 void AliESDCaloCluster::SetPid(const Float_t *p) {
150   // Sets the probability of each particle type
151   // Copied from AliESDtrack SetPIDValues
152   // This function copies "n" PID weights from "scr" to "dest"
153   // and normalizes their sum to 1 thus producing conditional
154   // probabilities.
155   // The negative weights are set to 0.
156   // In case all the weights are non-positive they are replaced by
157   // uniform probabilities
158
159   Int_t n = AliPID::kSPECIESN;
160
161   Float_t uniform = 1./(Float_t)n;
162
163   Float_t sum = 0;
164   for (Int_t i=0; i<n; i++)
165     if (p[i]>=0) {
166       sum+=p[i];
167       fPID[i] = p[i];
168     }
169     else {
170       fPID[i] = 0;
171     }
172
173   if(sum>0)
174     for (Int_t i=0; i<n; i++) fPID[i] /= sum;
175   else
176     for (Int_t i=0; i<n; i++) fPID[i] = uniform;
177
178 }
179
180 //_______________________________________________________________________
181 void AliESDCaloCluster::GetMomentum(TLorentzVector& p, Double_t *vertex ) {
182   // Returns TLorentzVector with momentum of the cluster. Only valid for clusters 
183   // identified as photons or pi0 (overlapped gamma) produced on the vertex
184   //Vertex can be recovered with esd pointer doing:  
185   //" Double_t vertex[3] ; esd->GetVertex()->GetXYZ(vertex) ; "
186
187   if(vertex){//calculate direction from vertex
188     fGlobalPos[0]-=vertex[0];
189     fGlobalPos[1]-=vertex[1];
190     fGlobalPos[2]-=vertex[2];
191   }
192   
193   Double_t r = TMath::Sqrt(fGlobalPos[0]*fGlobalPos[0]+
194                             fGlobalPos[1]*fGlobalPos[1]+
195                             fGlobalPos[2]*fGlobalPos[2]   ) ; 
196
197   p.SetPxPyPzE( fEnergy*fGlobalPos[0]/r,  fEnergy*fGlobalPos[1]/r,  fEnergy*fGlobalPos[2]/r,  fEnergy) ; 
198   
199 }
200 // Sep 7, 2007
201 Int_t AliESDCaloCluster::GetTrueDigitAmplitude(Int_t i, Double_t cc)
202 {
203   static Int_t amp=0; // amp is integer now
204   amp = 0;
205   if(i>=0 && i<fDigitAmplitude->GetSize() && cc>0.0) {
206     // true formula
207     amp = Int_t(Double_t(fDigitAmplitude->At(i))/500./cc+0.5);
208   }
209   return amp;
210 }
211
212 Double_t AliESDCaloCluster::GetTrueDigitEnergy(Int_t i, Double_t cc)
213 {
214   return Double_t(GetTrueDigitAmplitude(i,cc)) * cc;
215 }
216
217 Double_t AliESDCaloCluster::GetRecalibratedDigitEnergy(Int_t i, Double_t ccOld, Double_t ccNew)
218 {
219   return Double_t(GetTrueDigitAmplitude(i,ccOld)) * ccNew;
220 }