]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliAODRecoDecay.h
AliTPCcalibCalib.cxx - use also alignmnet - not implemented yet
[u/mrichter/AliRoot.git] / STEER / AliAODRecoDecay.h
CommitLineData
7de7497b 1#ifndef ALIAODRECODECAY_H
2#define ALIAODRECODECAY_H
3/* Copyright(c) 1998-2006, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6//***********************************************************
7// Class AliAODRecoDecay
8// base class for AOD reconstructed decays
9// Author: A.Dainese, andrea.dainese@lnl.infn.it
10//***********************************************************
11
12#include <TMath.h>
5cc73331 13#include <TRef.h>
bfd68286 14#include <TClonesArray.h>
7de7497b 15#include "AliAODVertex.h"
58b0186f 16#include "AliAODTrack.h"
e045ffda 17#include "AliVTrack.h"
7de7497b 18
e045ffda 19class AliAODRecoDecay : public AliVTrack {
7de7497b 20
21 public:
22
23 AliAODRecoDecay();
24 AliAODRecoDecay(AliAODVertex *vtx2,Int_t nprongs,Short_t charge,
25 Double_t *px,Double_t *py,Double_t *pz,
26 Double_t *d0);
27 AliAODRecoDecay(AliAODVertex *vtx2,Int_t nprongs,Short_t charge,
28 Double_t *d0);
29 virtual ~AliAODRecoDecay();
30
31 AliAODRecoDecay(const AliAODRecoDecay& source);
32 AliAODRecoDecay& operator=(const AliAODRecoDecay& source);
33
34
35 // decay vertex
5cc73331 36 Double_t GetSecVtxX() const {return GetSecondaryVtx()->GetX();}
37 Double_t GetSecVtxY() const {return GetSecondaryVtx()->GetY();}
38 Double_t GetSecVtxZ() const {return GetSecondaryVtx()->GetZ();}
7de7497b 39 Double_t RadiusSecVtx() const;
40 void SetSecondaryVtx(AliAODVertex *vtx2) {fSecondaryVtx=vtx2;}
a11de4a0 41 AliAODVertex* GetSecondaryVtx() const { return (((AliAODVertex*)fSecondaryVtx.GetObject()) ? (AliAODVertex*)fSecondaryVtx.GetObject() : GetOwnSecondaryVtx()); }
42 void SetOwnSecondaryVtx(AliAODVertex *vtx2) {fOwnSecondaryVtx=vtx2;}
43 AliAODVertex* GetOwnSecondaryVtx() const {return fOwnSecondaryVtx;}
7de7497b 44 void GetSecondaryVtx(Double_t vtx[3]) const;
5cc73331 45 Double_t GetReducedChi2() const {return GetSecondaryVtx()->GetChi2perNDF();}
7de7497b 46 Short_t Charge() const {return fCharge;}
47 Short_t GetCharge() const {return fCharge;}
48 void SetCharge(Short_t charge=0) {fCharge=charge;}
49
bfd68286 50 // Match to MC signal:
51 // check if this candidate is matched to a MC signal
52 // If no, return -1
53 // If yes, return label (>=0) of the AliAODMCParticle
9c4d0454 54 // if ndgCk>0, checks also daughters PDGs
55 Int_t MatchToMC(Int_t pdgabs,TClonesArray *mcArray,Int_t ndgCk=0,Int_t *pdgDg=0) const;
bfd68286 56
7de7497b 57 // PID
58 void SetPID(Int_t nprongs,Double_t *pid);
59 Double_t *GetPID() const { return fPID; }
60 void GetPIDProng(Int_t ip,Double_t *pid) const;
61 virtual const Double_t *PID() const { return fPID; }
62
63 // prong-to-prong DCAs
5cc73331 64 void SetDCAs(Int_t nDCA,Double_t *dca);
65 void SetDCA(Double_t dca); // 2 prong
66 Double_t GetDCA(Int_t i=0) const {return fDCA[i];}
7de7497b 67
68 //event and run number
69 void SetEventRunNumbers(Int_t en,Int_t rn)
70 { fEventNumber=en; fRunNumber=rn; return; }
71 Int_t GetEventNumber() const { return fEventNumber; }
72 Int_t GetRunNumber() const { return fRunNumber; }
73
e045ffda 74 // methods of AliVTrack
75 virtual Int_t GetID() const { return -1; }
76 virtual UChar_t GetITSClusterMap() const;
77 virtual ULong_t GetStatus() const;
78 virtual Bool_t GetXYZ(Double_t *p) const { return XvYvZv(p); }
79 virtual Bool_t GetCovarianceXYZPxPyPz(Double_t cv[21]) const;
80
7de7497b 81 // kinematics & topology
82 Double_t Px() const;
83 Double_t Py() const;
84 Double_t Pz() const;
85 Double_t P() const {return TMath::Sqrt(Px()*Px()+Py()*Py()+Pz()*Pz());}
86 Double_t Pt() const {return TMath::Sqrt(Px()*Px()+Py()*Py());}
87 Double_t OneOverPt() const {return (Pt() ? 1./Pt() : 0.);}
c683ddc2 88 Bool_t PxPyPz(Double_t p[3]) const { p[0] = Px(); p[1] = Py(); p[2] = Pz(); return kTRUE; }
1eab4b5c 89 Double_t Phi() const {return TMath::Pi()+TMath::ATan2(-Py(),-Px());}
7de7497b 90 Double_t Theta() const {return 0.5*TMath::Pi()-TMath::ATan(Pz()/(Pt()+1.e-13));}
91 Double_t Eta() const {return 0.5*TMath::Log((P()+Pz())/(P()-Pz()+1.e-13));}
c683ddc2 92 Double_t Xv() const { return GetSecVtxX(); }
93 Double_t Yv() const { return GetSecVtxY(); }
94 Double_t Zv() const { return GetSecVtxZ(); }
95 virtual Bool_t XvYvZv(Double_t x[3]) const { x[0] = Xv(); x[1] = Yv(); x[2] = Zv(); return kTRUE; }
7de7497b 96 Double_t E(UInt_t pdg) const;
97 Double_t Y(UInt_t pdg) const {return 0.5*TMath::Log((E(pdg)+Pz())/(E(pdg)-Pz()+1.e-13));}
98 Double_t DecayLength(Double_t point[3]) const;
99 Double_t DecayLength(AliAODVertex *vtx1) const
5cc73331 100 {return GetSecondaryVtx()->DistanceToVertex(vtx1);}
7de7497b 101 Double_t DecayLengthError(AliAODVertex *vtx1) const
5cc73331 102 {return GetSecondaryVtx()->ErrorDistanceToVertex(vtx1);}
7de7497b 103 Double_t NormalizedDecayLength(AliAODVertex *vtx1) const
104 {return DecayLength(vtx1)/DecayLengthError(vtx1);}
105 Double_t DecayLengthXY(Double_t point[3]) const;
106 Double_t DecayLengthXY(AliAODVertex *vtx1) const
5cc73331 107 {return GetSecondaryVtx()->DistanceXYToVertex(vtx1);}
7de7497b 108 Double_t DecayLengthXYError(AliAODVertex *vtx1) const
5cc73331 109 {return GetSecondaryVtx()->ErrorDistanceXYToVertex(vtx1);}
7de7497b 110 Double_t NormalizedDecayLengthXY(AliAODVertex *vtx1) const
111 {return DecayLengthXY(vtx1)/DecayLengthXYError(vtx1);}
112 Double_t Ct(UInt_t pdg,Double_t point[3]) const;
113 Double_t Ct(UInt_t pdg,AliAODVertex *vtx1) const;
114 Double_t CosPointingAngle(Double_t point[3]) const;
115 Double_t CosPointingAngle(AliAODVertex *vtx1) const;
116 Double_t CosPointingAngleXY(Double_t point[3]) const;
117 Double_t CosPointingAngleXY(AliAODVertex *vtx1) const;
118 Double_t CosThetaStar(Int_t ip,UInt_t pdgvtx,UInt_t pdgprong0,UInt_t pdgprong1) const;
119 Double_t InvMass(Int_t npdg,UInt_t *pdg) const;
120 Double_t ImpParXY(Double_t point[3]) const;
121 Double_t ImpParXY(AliAODVertex *vtx1) const;
122
123 // prongs
e045ffda 124 Int_t GetNProngs() const {return fNProngs;}
125 Int_t GetNDaughters() const {return GetSecondaryVtx()->GetNDaughters();}
126 TObject *GetDaughter(Int_t i) const {return (GetNDaughters()>i ? GetSecondaryVtx()->GetDaughter(i) : 0x0);}
7de7497b 127
e045ffda 128 Short_t ChargeProng(Int_t ip) const;
7de7497b 129 Double_t Getd0Prong(Int_t ip) const {return fd0[ip];}
130 Double_t Prodd0d0(Int_t ip1=0,Int_t ip2=0) const {return fd0[ip1]*fd0[ip2];}
131 Double_t PxProng(Int_t ip) const {return fPx[ip];}
132 Double_t PyProng(Int_t ip) const {return fPy[ip];}
133 Double_t PzProng(Int_t ip) const {return fPz[ip];}
134 Double_t PtProng(Int_t ip) const;
135 Double_t PProng(Int_t ip) const;
136 Double_t PhiProng(Int_t ip) const
137 {return TMath::ATan2(PyProng(ip),PxProng(ip));}
138 Double_t ThetaProng(Int_t ip) const
139 {return 0.5*TMath::Pi()-TMath::ATan(PzProng(ip)/(PtProng(ip)+1.e-13));}
140 Double_t EtaProng(Int_t ip) const
141 {return -TMath::Log(TMath::Tan(0.5*ThetaProng(ip)));}
142 Double_t EProng(Int_t ip,UInt_t pdg) const;
143 Double_t YProng(Int_t ip,UInt_t pdg) const
144 {return 0.5*TMath::Log((EProng(ip,pdg)+PzProng(ip))/(EProng(ip,pdg)-PzProng(ip)+1.e-13));}
145 Double_t Alpha() const; // for Armenteros-Podolanski plot (V0's)
146 Double_t QlProng(Int_t ip) const;
147 Double_t QtProng(Int_t ip=0) const; // for Armenteros-Podolanski plot (V0's)
148 Double_t QlProngFlightLine(Int_t ip,Double_t point[3]) const;
149 Double_t QlProngFlightLine(Int_t ip,AliAODVertex *vtx1) const;
150 Double_t QtProngFlightLine(Int_t ip,Double_t point[3]) const;
151 Double_t QtProngFlightLine(Int_t ip,AliAODVertex *vtx1) const;
152 Double_t InvMass2Prongs(Int_t ip1,Int_t ip2,UInt_t pdg1,UInt_t pdg2) const;
153 Double_t ProngsRelAngle(Int_t ip1=0,Int_t ip2=1) const;
154
155 // relate to other objects
156 //Double_t DistanceToVertex(AliAODVertex *vtx) // distance to a AliAODVertex
157 //Double_t DistanceToTrack(AliAODTrack *trk) // distance to a AliAODTrack
158
159
160 // print
161 void Print(Option_t* option = "") const;
5cc73331 162 //void PrintIndices() const {GetSecondaryVtx()->PrintIndices();}
7de7497b 163
ff7c57dd 164 // dummy functions for inheritance from AliVParticle
7de7497b 165 Double_t E() const
166 {printf("Dummy function; use AliAODRecoDecay::E(UInt_t pdg) instead"); return (Double_t)-999.;}
167 Double_t Y() const
168 {printf("Dummy function; use AliAODRecoDecay::Y(UInt_t pdg) instead"); return (Double_t)-999.;}
169 Double_t M() const
170 {printf("Dummy function"); return (Double_t)-999.;}
3c43fb2b 171 Int_t GetLabel() const {return -1;}
7de7497b 172 protected:
173
9c4d0454 174 Int_t MatchToMC(Int_t pdgabs,TClonesArray *mcArray,Int_t dgLabels[10],Int_t ndg,Int_t ndgCk=0,Int_t *pdgDg=0) const;
8862e6bf 175 Int_t MatchToMC(Int_t pdgabs,TClonesArray *mcArray,Int_t dgLabels[10]) const { return MatchToMC(pdgabs,mcArray,dgLabels,GetNDaughters()); }
176
5cc73331 177 TRef fSecondaryVtx; // decay vertex
a11de4a0 178 AliAODVertex *fOwnSecondaryVtx; // temporary solution (to work outside AliAODEvent)
5cc73331 179 Short_t fCharge; // charge, use this convention for prongs charges:
180 // if(charge== 0) even-index prongs are +
181 // odd-index prongs are -
182 // if(charge==+1) even-index prongs are +
183 // odd-index prongs are -
184 // if(charge==-1) even-index prongs are -
185 // odd-index prongs are +
7de7497b 186
187 // TEMPORARY, to be removed when we do analysis on AliAODEvent
5cc73331 188 Int_t fNProngs; // number of prongs
189 Int_t fNDCA; // number of dca's
190 Int_t fNPID; // number of PID probabilities
191 Double32_t *fPx; //[fNProngs] px of tracks at the vertex [GeV/c]
192 Double32_t *fPy; //[fNProngs] py of tracks at the vertex [GeV/c]
193 Double32_t *fPz; //[fNProngs] pz of tracks at the vertex [GeV/c]
194 Double32_t *fd0; //[fNProngs] rphi impact params w.r.t. Primary Vtx [cm]
195 Double32_t *fDCA; //[fNDCA] prong-to-prong DCA [cm]
196 // convention:fDCA[0]=p0p1,fDCA[1]=p0p2,fDCA[2]=p1p2,...
197 Double32_t *fPID; //[fNPID] combined pid
198 // (combined detector response probabilities)
7de7497b 199
200 // TEMPORARY, to be removed when we do analysis on AliAODEvent
201 Int_t fEventNumber;
202 Int_t fRunNumber;
203 // TO BE PUT IN SPECIAL MC CLASS
204 //Bool_t fSignal; // TRUE if signal, FALSE if background (for simulation)
7de7497b 205 //Int_t fTrkNum[2]; // numbers of the two decay tracks
206 //Int_t fPdg[2]; // PDG codes of the two tracks (for sim.)
207 //Int_t fMum[2]; // PDG codes of the mothers (for sim.)
208
209 //
210
e045ffda 211 ClassDef(AliAODRecoDecay,4) // base class for AOD reconstructed decays
7de7497b 212};
213
214
215inline Short_t AliAODRecoDecay::ChargeProng(Int_t ip) const
216{
217 if(fCharge==0 || fCharge==+1) {
218 if(ip%2==0) {
219 return (Short_t)1;
220 } else {
221 return (Short_t)-1;
222 }
223 } else { // fCharge==-1
224 if(ip%2==0) {
225 return (Short_t)-1;
226 } else {
227 return (Short_t)1;
228 }
229 }
230}
231
232inline Double_t AliAODRecoDecay::RadiusSecVtx() const
233{
234 return TMath::Sqrt(GetSecVtxX()*GetSecVtxX()+GetSecVtxY()*GetSecVtxY());
235}
236
237inline void AliAODRecoDecay::GetSecondaryVtx(Double_t vtx[3]) const
238{
5cc73331 239 GetSecondaryVtx()->GetPosition(vtx);
7de7497b 240 return;
241}
242
243inline Double_t AliAODRecoDecay::Px() const
244{
245 Double_t px=0.;
246 for(Int_t i=0;i<GetNProngs();i++) px+=PxProng(i);
247 return px;
248}
249
250inline Double_t AliAODRecoDecay::Py() const
251{
252 Double_t py=0.;
253 for(Int_t i=0;i<GetNProngs();i++) py+=PyProng(i);
254 return py;
255}
256
257inline Double_t AliAODRecoDecay::Pz() const
258{
259 Double_t pz=0.;
260 for(Int_t i=0;i<GetNProngs();i++) pz+=PzProng(i);
261 return pz;
262}
263
264inline Double_t AliAODRecoDecay::Ct(UInt_t pdg,AliAODVertex *vtx1) const
265{
266 Double_t v[3];
267 vtx1->GetPosition(v);
268 return Ct(pdg,v);
269}
270
271inline Double_t AliAODRecoDecay::CosPointingAngle(AliAODVertex *vtx1) const
272{
273 Double_t v[3];
274 vtx1->GetPosition(v);
275 return CosPointingAngle(v);
276}
277
278inline Double_t AliAODRecoDecay::CosPointingAngleXY(AliAODVertex *vtx1) const
279{
280 Double_t v[3];
281 vtx1->GetPosition(v);
282 return CosPointingAngleXY(v);
283}
284
285inline Double_t AliAODRecoDecay::ImpParXY(AliAODVertex *vtx1) const
286{
287 Double_t v[3];
288 vtx1->GetPosition(v);
289 return ImpParXY(v);
290}
291
292inline Double_t AliAODRecoDecay::PtProng(Int_t ip) const
293{
294 return TMath::Sqrt(PxProng(ip)*PxProng(ip)+PyProng(ip)*PyProng(ip));
295}
296
297inline Double_t AliAODRecoDecay::PProng(Int_t ip) const
298{
299 return TMath::Sqrt(PtProng(ip)*PtProng(ip)+PzProng(ip)*PzProng(ip));
300}
301
302inline Double_t AliAODRecoDecay::QlProngFlightLine(Int_t ip,AliAODVertex *vtx1) const
303{
304 Double_t v[3];
305 vtx1->GetPosition(v);
306 return QlProngFlightLine(ip,v);
307}
308
309inline Double_t AliAODRecoDecay::QtProngFlightLine(Int_t ip,AliAODVertex *vtx1) const
310{
311 Double_t v[3];
312 vtx1->GetPosition(v);
313 return QtProngFlightLine(ip,v);
314}
315
5cc73331 316inline void AliAODRecoDecay::SetDCAs(Int_t nDCA,Double_t *dca)
7de7497b 317{
318 if(nDCA!=(GetNProngs()*(GetNProngs()-1)/2)) {
319 printf("Wrong number of DCAs, must be nProngs*(nProngs-1)/2");
320 return;
321 }
322 if(fDCA) delete [] fDCA;
94de4057 323 fNDCA = nDCA;
5cc73331 324 fDCA = new Double32_t[nDCA];
7de7497b 325 for(Int_t i=0;i<nDCA;i++)
326 fDCA[i] = dca[i];
327 return;
328}
329
5cc73331 330inline void AliAODRecoDecay::SetDCA(Double_t dca)
7de7497b 331{
5cc73331 332 Double_t ddca[1]; ddca[0]=dca;
7de7497b 333 SetDCAs(1,ddca);
334 return;
335}
336
337inline void AliAODRecoDecay::SetPID(Int_t nprongs,Double_t *pid)
338{
339 if(nprongs!=GetNProngs()) {
340 printf("Wrong number of prongs");
341 return;
342 }
343 if(fPID) delete [] fPID;
58b0186f 344 fNPID = nprongs*5;
5cc73331 345 fPID = new Double32_t[nprongs*5];
7de7497b 346 for(Int_t i=0;i<nprongs;i++)
347 for(Int_t j=0;j<5;j++)
348 fPID[i*5+j] = pid[i*5+j];
349 return;
350}
351
352inline void AliAODRecoDecay::GetPIDProng(Int_t ip,Double_t *pid) const
353{
354 for(Int_t j=0;j<5;j++)
355 pid[j] = fPID[ip*5+j];
356 return;
357}
358
359
360
361#endif
bfd68286 362