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