]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSTrackV1.h
Use TMath::Abs instead of fabs (Alpha)
[u/mrichter/AliRoot.git] / ITS / AliITSTrackV1.h
1 #ifndef ALIITSTRACKV1_H
2 #define ALIITSTRACKV1_H
3 //   ITS Track Class
4 //Origin  A. Badala' and G.S. Pappalardo:  e-mail Angela.Badala@ct.infn.it, Giuseppe.S.Pappalardo@ct.infn.it
5 // It contain all the usefull information for the track and the method to calculate, modify or extract them
6 #include <TObject.h>
7 #include <TMatrix.h>
8 #include <TVector.h>
9
10 #include "../TPC/AliTPCtrack.h"
11
12 class TObjArray;
13 class AliITSRad;
14
15 class AliITSTrackV1 : public TObject { 
16
17 public:
18
19   AliITSTrackV1();  // default constructor
20   AliITSTrackV1(const char *opt);  // Standard constructor
21   AliITSTrackV1(AliTPCtrack &obj);  // Standard constructor
22   AliITSTrackV1(const AliITSTrackV1 &cobj);  // copy constructor
23   AliITSTrackV1 &operator=(AliITSTrackV1 obj);  // operator =
24   ~AliITSTrackV1(); // default destructor
25   Int_t GetNumClust() const { return fNumClustInTrack;}  // gets the num of cluster in a track
26   void AddClustInTrack() { fNumClustInTrack++;}  // adds a cluster in track
27   TObjArray *GetListOfCluster() const { return flistCluster;}  // gets the list of cluster in the track
28   void SetChi2(Double_t chi2) { fChi2 = chi2;}   // sets the chisquare value for the track
29   Double_t GetChi2() const { return fChi2;}            // gets the chisquare value for the track
30   Double_t GetZ() const {return fX1;}            // gets the Z value for the track
31   Double_t GetTgl() const {return fX3;}          // gets the tgl value for the track
32   Double_t Getrtrack() const{return frtrack;}    // gets the raius value for the current track
33   Double_t Getphi()  const{return fX0;}          // gets the phi value for the track
34   Double_t GetC() const {return fX4;}            // gets the curvature value for the track
35   Double_t GetD() const{return fX2;}             // gets the radial impact parameter for the track
36   Double_t GetPt() const {return 0.299792458*0.2*fFieldFactor/(fX4*100.);} // gets the transvers momentum 
37                                                                            // value for the track           
38   void SetVertex(TVector &vert) { for(Int_t i=0;i<3;i++) fVertex(i) = vert(i);} // sets the vertex
39                                                                                 // cohordinates
40   void SetErrorVertex(TVector &evert) {for(Int_t i=0;i<3;i++) fErrorVertex(i) = evert(i);} // sets the errors
41                                                                                     //for vertex cohordinates
42
43   void LmTPC(); // trasform state vector and covariance matrix from local TPC to master
44   TVector GetVertex() const { return fVertex;}
45   TVector GetErrorVertex() const { return fErrorVertex;}
46   Long_t  GetLabel() const { return flabel;}
47   void SetLabel(Long_t label) { flabel = label;}
48   Int_t  GetLayer() const { return fLayer;}
49   
50
51   void PutCElements(Double_t C00, Double_t C10, Double_t C11, Double_t C20, Double_t C21, 
52   Double_t C22, Double_t C30, Double_t C31, Double_t C32, Double_t C33, Double_t C40, 
53   Double_t C41, Double_t C42, Double_t C43, Double_t C44);  // put elements of covariance matrix
54   
55   void GetCElements(Double_t &C00, Double_t &C10, Double_t &C11, Double_t &C20, Double_t &C21, 
56   Double_t &C22, Double_t &C30, Double_t &C31, Double_t &C32, Double_t &C33, Double_t &C40, 
57   Double_t &C41, Double_t &C42, Double_t &C43, Double_t &C44) const;  // get elements of covariance matrix
58    
59   void GetXElements(Double_t &X0, Double_t &X1, Double_t &X2, Double_t &X3, Double_t &X4) const; // get elements
60                                                                                            // of state vector
61   void PutXElements(Double_t X0, Double_t X1, Double_t X2, Double_t X3, Double_t X4);  // put elements
62  
63   void PutMass(Double_t mass) {fMass=mass;} // put the  particle mass                                                                                        // of state vector
64     
65   void SetLayer(Int_t layer) { fLayer = layer;}      // set current layer
66   AliTPCtrack *GetTPCtrack() const { return fTPCtrack;}    // get hte TPC track
67
68   void PutCluster(Int_t layerc, TVector vecclust);   // put information for clusters
69   TVector GetLabTrack(Int_t lay);                    // get the label of the track
70   void Search(TVector VecTotLabref, Long_t &labref, Int_t &freq); // determine the label and the frequency of
71                                                                   // it for the current track
72   Float_t GetZclusterTrack(Int_t lay) {return ((Float_t) (*fClusterInTrack)(lay,2));} // get the Z
73                              //cohordinate of the cluster gelonging to the track for a given layer
74   void GetClusters();     // prints the clusters belonging to the current track
75   Int_t GetLabTPC() const {return (*fTPCtrack).GetLabel();}  // get the TPC label for the current track
76   Int_t GetIdPoint(Int_t lay) {return ((Int_t) (*fClusterInTrack)(lay,4));}  // get the label identifiing the
77                                                                              //point of the track
78   Int_t GetIdModule(Int_t lay) {return ((Int_t) (*fClusterInTrack)(lay,5));} // get the label identifiing the
79                                                                              // module of the track
80   Float_t GetIdParticle(Int_t lay) {return (*fClusterInTrack)(lay,3);}       // get the label to identify
81                                                                              // the particle      
82   Int_t DoNotCross(Double_t rk) const;  // determine if the track cross a layer 
83   Double_t ArgA(Double_t rk) const;     // quantity usefull in propagation
84   Double_t Arga(Double_t rk) const;     // quantity usefull in propagation
85   Double_t ArgB(Double_t rk) const;     // quantity usefull in propagation
86   Double_t ArgC(Double_t rk) const;     // quantity usefull in propagation             
87   void  Propagation(Double_t rk) ;      // propagation of the track to a layer of radius rk
88
89   Double_t GetSigmaphi() const{return fC00;}    // gets the phi variance
90   Double_t GetSigmaZ() const{return  fC11;}     // gets the Z variance
91   void AddEL(AliITSRad *rl,Double_t signdE,  Bool_t flagtot, Double_t mass=0.1396);  // adds the energy loss
92   void AddMS(AliITSRad *rl,Double_t mass=0.1396);  // modify the covariance matrix to take into account the multiple scattering
93   void Correct(Double_t rk);  // correct the track to take into account the real detector geometry
94   void SetDv(Double_t x) {fDv=x;}  // sets the radial impact parameter for vertex constraint 
95   void SetZv(Double_t x) {fZv=x;}  // sets longitudinal impact parameter for vertex constraint
96   Double_t GetDv() const {return fDv;}   // gets the radial impact parameter for vertex constraint 
97   Double_t GetZv() const {return fZv;}   // gets longitudinal impact parameter for vertex constraint
98   void SetsigmaDv( Double_t x) {fsigmaDv=x;} // sets sigma for Dv extraction
99   void SetsigmaZv( Double_t x) {fsigmaZv=x;} // sets sigma for Zv extraction
100   void Setfnoclust() {fnoclust++;}          //modify fnoclust 
101   Double_t GetsigmaDv() const {return fsigmaDv;}   // gets sigma for Dv extraction
102   Double_t GetsigmaZv() const {return fsigmaZv;}   // gets sigma for Zv extraction
103   void PrimaryTrack(AliITSRad *rl);   // calculation of part of covariance matrix for vertex constraint
104   void Setd2(TVector &x) {for(Int_t i=0; i<6; i++){fd2(i)=x(i);}} // sets the vector fd2
105   void Settgl2(TVector &x) {for(Int_t i=0; i<6; i++){ftgl2(i)=x(i);}}  // sets the vector ftgl2
106   void Setdtgl(TVector &x) {for(Int_t i=0; i<6; i++){fdtgl(i)=x(i);}}  // sets the vector fdtgl
107   TVector Getd2() const { return fd2;}  // gets the vector fd2
108   TVector Gettgl2() const { return ftgl2;}  // gets the vector ftgl2
109   TVector Getdtgl() const { return fdtgl;}  // gets the vector dtgl
110   Double_t Getd2(Int_t i){return (Double_t)fd2(i);}     // gets the i element of the vector fd2
111   Double_t Gettgl2(Int_t i){return (Double_t)ftgl2(i);} // gets the i element of the vector tgl2
112   Double_t Getdtgl(Int_t i){return (Double_t)fdtgl(i);} // gets the i element of the vector fdtgl
113   //Double_t GetxoTPC() const {return fxoTPC;}  // gets fxoTPC
114   Int_t  Getfnoclust() const {return fnoclust;}  //gets fnoclust 
115   Double_t GetPredChi2(Double_t m[2], Double_t sigma[2]) const; //get predicted chi2
116  
117                         
118 //////////////////////////////////////////////////////////////////////////////////////// 
119
120  private:  
121    
122   AliTPCtrack     *fTPCtrack;           // reference to TPC track
123
124   Double_t        fX0,fX1,fX2,fX3,fX4;  // state vector: |phi/z/D/tgl/C 
125   Double_t        frtrack;               // radius of courrent layer     
126   
127   Double_t        fC00, fC10, fC11,     // Covariance Matrix
128                   fC20, fC21, fC22,     //      "       "
129                                                 fC30, fC31, fC32,     //      "       " 
130                                                 fC33, fC40, fC41,     //      "       " 
131                                                 fC42, fC43, fC44;     //      "       "
132       
133   Double_t        fChi2;                // fChi^2 of track         
134   TObjArray       *flistCluster;        // list of clusters of the track
135   Int_t           fNumClustInTrack;     // total number of clusters
136   Long_t          flabel;               // label of the track
137   TVector         fVertex;              // vertex coordinates of the track
138   TVector         fErrorVertex;         // error on the vertex coordinates
139   Int_t           fLayer;               // current Layer of the track
140   TMatrix        *fClusterInTrack;      // matrix of clusters belonging to the  track
141                                         // row index = layer-1; 
142                                         // cols index = master coordinates of the clusters
143
144   Double_t        fFieldFactor;         // magnetic field factor
145   Double_t          fDv;                // radial impact parameter for vertex  constraint
146   Double_t          fZv;                // longitudinal impact parameter for vertex constraint
147   Double_t          fsigmaDv;           // sigma for Dv extraction
148   Double_t          fsigmaZv;           // sigma for Zv extraction
149   TVector           fd2;                // C(2,2)  for primary track
150   TVector           ftgl2;              // C(3,3)  for primary track
151   TVector           fdtgl;              // C(2,3)  for primary track
152
153   Double_t          fMass;         //  particle mass 
154   
155   Int_t   fnoclust;  //nm of layers in which tracking doesn't add a cluster to the track
156                    
157   
158
159  
160   ClassDef(AliITSTrackV1, 1)
161    
162 };
163
164 #endif
165