]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliKalmanTrack.h
Possibility to calculate the DCA between two ESD track. The V0 and cascade vertexes...
[u/mrichter/AliRoot.git] / STEER / AliKalmanTrack.h
1 #ifndef ALIKALMANTRACK_H
2 #define ALIKALMANTRACK_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8
9 //-------------------------------------------------------------------------
10 //                          Class AliKalmanTrack
11 //      fixed the interface for the derived reconstructed track classes 
12 //            Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
13 //-------------------------------------------------------------------------
14
15 #include <TObject.h>
16 #include "AliLog.h"
17 #include "AliPID.h"
18
19 class AliCluster;
20
21 class AliKalmanTrack : public TObject {
22 public:
23   AliKalmanTrack();
24   AliKalmanTrack(const AliKalmanTrack &t);
25
26   virtual ~AliKalmanTrack(){};
27   void SetLabel(Int_t lab) {fLab=lab;}
28   void SetFakeRatio(Float_t ratio) {fFakeRatio=ratio;}
29
30   Bool_t   IsSortable() const {return kTRUE;}
31   Int_t    GetLabel()   const {return fLab;}
32   Float_t    GetFakeRatio()   const {return fFakeRatio;}
33   Double_t GetChi2()    const {return fChi2;}
34   Double_t GetMass()    const {return fMass;}
35   Int_t    GetNumberOfClusters() const {return fN;}
36   virtual Int_t GetClusterIndex(Int_t) const { //reserved for AliTracker
37     AliWarning("Method must be overloaded !\n");
38     return 0;
39   } 
40   virtual Double_t GetPIDsignal() const {
41     AliWarning("Method must be overloaded !\n");
42     return 0.;
43   }
44
45   virtual Double_t GetAlpha() const {
46     AliWarning("Method must be overloaded !\n");
47     return 0.;
48   }
49   virtual Double_t GetSigmaY2() const {
50     AliWarning("Method must be overloaded !\n");
51     return 0.;
52   }
53   virtual Double_t GetSigmaZ2() const {
54     AliWarning("Method must be overloaded !\n");
55     return 0.;
56   }
57
58   virtual Int_t Compare(const TObject *) const {return 0;} 
59
60   virtual void GetExternalParameters(Double_t&/*xr*/,Double_t/*x*/[5]) const=0;
61   virtual void GetExternalCovariance(Double_t /*cov*/[15]) const = 0;
62
63   virtual Double_t GetPredictedChi2(const AliCluster *) const = 0;
64   virtual Int_t PropagateTo(Double_t/*xr*/,Double_t/*x0*/,Double_t/*rho*/) = 0;
65
66   virtual Int_t Update(const AliCluster*, Double_t /*chi2*/, UInt_t) = 0;
67
68   static Double_t MeanMaterialBudget(Double_t *start, Double_t *end, Double_t *mparam);
69  
70   // Time integration (S.Radomski@gsi.de)
71   void   StartTimeIntegral();
72   void SetIntegratedLength(Double_t l) {fIntegratedLength=l;}
73   void SetIntegratedTimes(const Double_t *times);
74
75   Bool_t IsStartedTimeIntegral() const {return fStartTimeIntegral;}
76   void     AddTimeStep(Double_t length);
77   void GetIntegratedTimes(Double_t *times) const;
78   Double_t GetIntegratedTime(Int_t pdg) const;
79   Double_t GetIntegratedLength() const {return fIntegratedLength;}
80   virtual void GetXYZ(Float_t r[3]) const = 0;
81
82   static Double_t GetConvConst();
83   void SetNumberOfClusters(Int_t n) {fN=n;} 
84 protected:
85   void     SaveLocalConvConst();
86   Double_t GetLocalConvConst() const {return fLocalConvConst;}
87
88   void External2Helix(Double_t helix[6]) const;
89
90   void SetChi2(Double_t chi2) {fChi2=chi2;} 
91   void SetMass(Double_t mass) {fMass=mass;}
92
93   Int_t fLab;             // track label
94   Float_t fFakeRatio;     // fake ratio
95   Double_t fChi2;         // total chi2 value for this track
96   Double_t fMass;         // mass hypothesis
97   Int_t fN;               // number of associated clusters
98
99 private:
100   Double_t fLocalConvConst;   //local conversion "curvature(1/cm) -> pt(GeV/c)"
101
102   // variables for time integration (S.Radomski@gsi.de)
103   Bool_t  fStartTimeIntegral;       // indicator wether integrate time
104   Double_t fIntegratedTime[AliPID::kSPECIES];       // integrated time
105   Double_t fIntegratedLength;        // integrated length
106   
107   ClassDef(AliKalmanTrack,5)    // Reconstructed track
108 };
109
110 #endif
111
112