]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliESDtrack.h
More particles.
[u/mrichter/AliRoot.git] / STEER / AliESDtrack.h
1 #ifndef ALIESDTRACK_H
2 #define ALIESDTRACK_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 //-------------------------------------------------------------------------
9 //                          Class AliESDtrack
10 //   This is the class to deal with during the physics analysis of data
11 //      
12 //         Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
13 //-------------------------------------------------------------------------
14 /*****************************************************************************
15  *  Use GetExternalParameters() and GetExternalCovariance() to access the    *
16  *      track information regardless of its internal representation.         *
17  * This formation is now fixed in the following way:                         *
18  *      external param0:   local Y-coordinate of a track (cm)                *
19  *      external param1:   local Z-coordinate of a track (cm)                *
20  *      external param2:   local sine of the track momentum azimuthal angle  *
21  *      external param3:   tangent of the track momentum dip angle           *
22  *      external param4:   1/pt (1/(GeV/c))                                  *
23  *****************************************************************************/
24
25 #include <TBits.h>
26 #include <TObject.h>
27 #include "AliPID.h"
28 class AliKalmanTrack;
29
30 const Int_t kNPlane = 6;
31
32 class AliESDtrack : public TObject {
33 public:
34   AliESDtrack();
35   AliESDtrack(const AliESDtrack& track);
36   virtual ~AliESDtrack();
37   void SetID(Int_t id) { fID =id;}
38   Int_t GetID(){ return fID;}
39   void SetStatus(ULong_t flags) {fFlags|=flags;}
40   void ResetStatus(ULong_t flags) {fFlags&=~flags;}
41   Bool_t UpdateTrackParams(const AliKalmanTrack *t, ULong_t flags);
42   void SetImpactParameters(Float_t xy,Float_t z) {fD=xy; fZ=z;}
43   void SetIntegratedLength(Double_t l) {fTrackLength=l;}
44   void SetIntegratedTimes(const Double_t *times);
45   void SetESDpid(const Double_t *p);
46   void GetESDpid(Double_t *p) const;
47   
48   ULong_t GetStatus() const {return fFlags;}
49   Int_t GetLabel() const {return fLabel;}
50   Double_t GetAlpha() const {return fRalpha;}
51   void GetExternalParameters(Double_t &x, Double_t p[5]) const;
52   void GetExternalCovariance(Double_t cov[15]) const;
53
54   Bool_t GetExternalParametersAt(Double_t x, Double_t p[5]) const;
55   Bool_t GetPxPyPzAt(Double_t x, Double_t p[3]) const;
56   Bool_t GetXYZAt(Double_t x, Double_t r[3]) const;
57
58   void GetImpactParameters(Float_t &xy,Float_t &z) const {xy=fD; z=fZ;}
59   Double_t GetIntegratedLength() const {return fTrackLength;}
60   void GetIntegratedTimes(Double_t *times) const;
61   Double_t GetMass() const;
62   Double_t GetP() const;
63   Bool_t GetPxPyPz(Double_t *p) const;
64   Bool_t GetXYZ(Double_t *r) const;
65   void GetCovariance(Double_t cov[21]) const;
66   Int_t GetSign() const {return (fRp[4]>0) ? 1 : -1;} 
67
68   void SetConstrainedTrackParams(const AliKalmanTrack *t, Double_t chi2);
69
70   Double_t GetConstrainedAlpha() const {return fCalpha;}
71   Double_t GetConstrainedChi2() const {return fCchi2;}
72   void GetConstrainedExternalParameters(Double_t &x, Double_t p[5]) const;
73   void GetConstrainedExternalCovariance(Double_t cov[15]) const;
74
75   Bool_t GetConstrainedPxPyPz(Double_t *p) const;
76   Bool_t GetConstrainedXYZ(Double_t *r) const;
77
78   Bool_t GetInnerPxPyPz(Double_t *p) const;
79   Bool_t GetInnerXYZ(Double_t *r) const;
80   void GetInnerExternalParameters(Double_t &x, Double_t p[5]) const;//skowron
81   void GetInnerExternalCovariance(Double_t cov[15]) const;//skowron
82   Double_t GetInnerAlpha() const {return fIalpha;}
83   
84   void SetITSpid(const Double_t *p);
85   void SetITSChi2MIP(const Float_t *chi2mip);
86   void SetITStrack(AliKalmanTrack * track){fITStrack=track;}
87   void GetITSpid(Double_t *p) const;
88   Float_t GetITSsignal() const {return fITSsignal;}
89   Float_t GetITSchi2() const {return fITSchi2;}
90   Int_t GetITSclusters(UInt_t *idx) const;
91   Int_t GetITSLabel() const {return fITSLabel;}
92   Float_t GetITSFakeRatio() const {return fITSFakeRatio;}
93   AliKalmanTrack * GetITStrack(){return fITStrack;}
94
95   void SetTPCpid(const Double_t *p);
96   void GetTPCpid(Double_t *p) const;
97   void SetTPCPoints(Float_t points[4]){for (Int_t i=0;i<4;i++) fTPCPoints[i]=points[i];}
98   void SetKinkIndexes(Int_t points[3]) {for (Int_t i=0;i<3;i++) fKinkIndexes[i] = points[i];}
99   void SetV0Indexes(Int_t points[3]) {for (Int_t i=0;i<3;i++) fV0Indexes[i] = points[i];}
100   Float_t GetTPCsignal() const {return fTPCsignal;}
101   Float_t GetTPCchi2() const {return fTPCchi2;}
102   Int_t GetTPCclusters(Int_t *idx) const;
103   Int_t GetTPCLabel() const {return fTPCLabel;}
104   Int_t GetKinkIndex(Int_t i) const { return fKinkIndexes[i];}
105   Int_t GetV0Index(Int_t i) const { return fV0Indexes[i];}
106   const TBits& GetTPCClusterMap() const {return fTPCClusterMap;}
107   
108   void SetTRDpid(const Double_t *p);
109   void SetTRDtrack(AliKalmanTrack * track){fTRDtrack=track;}
110   void SetTRDsignals(Float_t dedx, Int_t i) {fTRDsignals[i]=dedx;}
111   void SetTRDTimBin(Int_t timbin, Int_t i) {fTRDTimBin[i]=timbin;}
112   void GetTRDpid(Double_t *p) const;
113   Float_t GetTRDsignal() const {return fTRDsignal;}
114   Float_t GetTRDsignals(Int_t i) const {return fTRDsignals[i];}
115   Int_t GetTRDTimBin(Int_t i) const {return fTRDTimBin[i];}
116   Float_t GetTRDchi2() const {return fTRDchi2;}
117   Int_t GetTRDclusters(UInt_t *idx) const;
118   Int_t GetTRDncls() const {return fTRDncls;}
119   void    SetTRDpid(Int_t iSpecies, Float_t p);
120   Float_t GetTRDpid(Int_t iSpecies) const;
121   Int_t GetTRDLabel() const {return fTRDLabel;}
122   void GetTRDExternalParameters(Double_t &x, Double_t &alpha, Double_t p[5], Double_t cov[15]) const;//MI
123   AliKalmanTrack * GetTRDtrack(){return fTRDtrack;}
124
125   void SetTOFsignal(Double_t tof) {fTOFsignal=tof;}
126   Float_t GetTOFsignal() const {return fTOFsignal;}
127   Float_t GetTOFchi2() const {return fTOFchi2;}
128   void    SetTOFpid(const Double_t *p);
129   void    SetTOFLabel(const Int_t *p);
130   void    GetTOFpid(Double_t *p) const;
131   void    GetTOFLabel(Int_t *p) const;
132   void    GetTOFInfo(Float_t *info) const;
133   void    SetTOFInfo(Float_t *info);
134   UInt_t  GetTOFcluster() const {return fTOFindex;}
135   void  SetTOFcluster(UInt_t index) {fTOFindex=index;}
136   
137   void    SetRICHsignal(Double_t beta) {fRICHsignal=beta;}
138   Float_t GetRICHsignal() const {return fRICHsignal;}
139   void    SetRICHpid(const Double_t *p);
140   void    GetRICHpid(Double_t *p) const;
141   
142   void SetPHOSposition(const Double_t *pos)  {
143     fPHOSpos[0] = pos[0]; fPHOSpos[1]=pos[1]; fPHOSpos[2]=pos[2];
144   }
145   void SetPHOSsignal(Double_t ene) {fPHOSsignal = ene; }
146   void SetPHOSpid(const Double_t *p);
147   void GetPHOSposition(Double_t *pos) const {
148     pos[0]=fPHOSpos[0]; pos[1]=fPHOSpos[1]; pos[2]=fPHOSpos[2];
149   }
150   Float_t GetPHOSsignal() const {return fPHOSsignal;}
151   void GetPHOSpid(Double_t *p) const;  
152
153   void SetEMCALposition(const Double_t *pos)  {
154     fEMCALpos[0] = pos[0]; fEMCALpos[1]=pos[1]; fEMCALpos[2]=pos[2];
155   }
156   void SetEMCALsignal(Double_t ene) {fEMCALsignal = ene; }
157   void SetEMCALpid(const Double_t *p);
158   void GetEMCALposition(Double_t *pos) const {
159     pos[0]=fEMCALpos[0]; pos[1]=fEMCALpos[1]; pos[2]=fEMCALpos[2];
160   }
161   Float_t GetEMCALsignal() const {return fEMCALsignal;}
162   void GetEMCALpid(Double_t *p) const;  
163
164   Bool_t IsOn(Int_t mask) const {return (fFlags&mask)>0;}
165   Bool_t IsRICH()  const {return fFlags&kRICHpid;}
166   Bool_t IsPHOS()  const {return fFlags&kPHOSpid;}
167   Bool_t IsEMCAL() const {return fFlags&kEMCALpid;}
168
169   virtual void Print(Option_t * opt) const ; 
170
171   enum {
172     kITSin=0x0001,kITSout=0x0002,kITSrefit=0x0004,kITSpid=0x0008,
173     kTPCin=0x0010,kTPCout=0x0020,kTPCrefit=0x0040,kTPCpid=0x0080,
174     kTRDin=0x0100,kTRDout=0x0200,kTRDrefit=0x0400,kTRDpid=0x0800,
175     kTOFin=0x1000,kTOFout=0x2000,kTOFrefit=0x4000,kTOFpid=0x8000,
176     kPHOSpid=0x10000, kRICHpid=0x20000, kEMCALpid=0x40000,
177     kTRDbackup=0x80000,
178     kTRDStop=0x20000000,
179     kESDpid=0x40000000,
180     kTIME=0x80000000
181   }; 
182 protected:
183   ULong_t   fFlags;        // Reconstruction status flags 
184   Int_t     fLabel;        // Track label
185   Int_t     fID;           // Unique ID of the track
186   Float_t   fTrackLength;  // Track length
187   Float_t   fD;            // Impact parameter in XY-plane
188   Float_t   fZ;            // Impact parameter in Z 
189   Float_t   fTrackTime[AliPID::kSPECIES]; // TOFs estimated by the tracking
190   Float_t   fR[AliPID::kSPECIES];         // combined "detector response probability"
191
192   Int_t     fStopVertex;          // Index of stop vertex
193
194 //Running track parameters
195   Double_t fRalpha;  // track rotation angle
196   Double_t fRx;      // X-coordinate of the track reference plane 
197   Double_t fRp[5];   // external track parameters  
198   Double_t fRc[15];  // external cov. matrix of the track parameters
199
200 //Track parameters constrained to the primary vertex
201   Double_t fCalpha;   // Track rotation angle
202   Double_t fCx;       // x-coordinate of the track reference plane
203   Double_t fCp[5];    // external track parameters
204   Double_t fCc[15];   // external cov. matrix of the track parameters
205   Double_t fCchi2; //chi2 at the primary vertex
206
207 //Track parameters at the inner wall of the TPC
208   Double_t fIalpha;   // Track rotation angle
209   Double_t fIx;       // x-coordinate of the track reference plane
210   Double_t fIp[5];    // external track parameters
211   Double_t fIc[15];   // external cov. matrix of the track parameters
212
213 //Track parameters at the inner wall of the TRD 
214   Double_t fTalpha;   // Track rotation angle
215   Double_t fTx;       // x-coordinate of the track reference plane
216   Double_t fTp[5];    // external track parameters
217   Double_t fTc[15];   // external cov. matrix of the track parameters
218
219   // ITS related track information
220   Float_t fITSchi2;        // chi2 in the ITS
221   Float_t fITSchi2MIP[12];     // chi2s in the ITS
222   Int_t   fITSncls;        // number of clusters assigned in the ITS
223   UInt_t  fITSindex[6];    //! indices of the assigned ITS clusters
224   Float_t fITSsignal;      // detector's PID signal
225   Float_t fITSr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
226   Int_t   fITSLabel;       // label according TPC
227   Float_t fITSFakeRatio;   // ration of fake tracks
228   AliKalmanTrack * fITStrack; //! OWNER: pointer to the ITS track -- currently for debug purpose
229   
230   // TPC related track information
231   Float_t fTPCchi2;        // chi2 in the TPC
232   Int_t   fTPCncls;        // number of clusters assigned in the TPC
233   Int_t  fTPCindex[180];  //! indices of the assigned TPC clusters
234   TBits   fTPCClusterMap;  // Map of clusters, one bit per padrow; 1 if has a cluster on given padrow
235   Float_t fTPCsignal;      // detector's PID signal
236   Float_t fTPCr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
237   Int_t   fTPCLabel;       // label according TPC
238   Float_t fTPCPoints[4];   // TPC points -first, max. dens, last and max density
239   Int_t   fKinkIndexes[3]; // array of indexes of posible kink candidates 
240   Int_t   fV0Indexes[3]; // array of indexes of posible kink candidates 
241
242   // TRD related track information
243   Float_t fTRDchi2;        // chi2 in the TRD
244   Int_t   fTRDncls;        // number of clusters assigned in the TRD
245   Int_t   fTRDncls0;       // number of clusters assigned in the TRD before first material cross
246   UInt_t  fTRDindex[130];   //! indices of the assigned TRD clusters
247   Float_t fTRDsignal;      // detector's PID signal
248   Float_t fTRDsignals[kNPlane];  // TRD signals from all six planes
249   Int_t fTRDTimBin[kNPlane];     // Time bin of Max cluster from all six planes
250   Float_t fTRDr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
251   Int_t   fTRDLabel;       // label according TRD
252   AliKalmanTrack * fTRDtrack; //! OWNER: pointer to the TRD track -- currently for debug purpose
253
254   // TOF related track information
255   Float_t fTOFchi2;        // chi2 in the TOF
256   UInt_t  fTOFindex;       // index of the assigned TOF cluster
257   Float_t fTOFsignal;      // detector's PID signal
258   Float_t fTOFr[AliPID::kSPECIES]; // "detector response probabilities" (for the PID)
259   Int_t   fTOFLabel[3];       // TOF label 
260   Float_t fTOFInfo[10];       //! TOF informations
261
262   // PHOS related track information 
263   Float_t fPHOSpos[3]; // position localised by PHOS in global coordinate system
264   Float_t fPHOSsignal; // energy measured by PHOS
265   Float_t fPHOSr[AliPID::kSPECIESN]; // PID information from PHOS
266
267   // EMCAL related track information 
268   Float_t fEMCALpos[3]; //position localised by EMCAL in global coordinate system
269   Float_t fEMCALsignal; // energy measured by EMCAL
270   Float_t fEMCALr[AliPID::kSPECIESN]; // PID information from EMCAL
271
272   // HMPID related track information
273   Float_t fRICHsignal;     // detector's PID signal (beta for RICH)
274   Float_t fRICHr[AliPID::kSPECIES];// "detector response probabilities" (for the PID)
275         
276   ClassDef(AliESDtrack,11)  //ESDtrack 
277 };
278
279 #endif 
280