]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliTracker.h
Modification of the trigger fields in the event tag (Panos)
[u/mrichter/AliRoot.git] / STEER / AliTracker.h
1 #ifndef ALITRACKER_H
2 #define ALITRACKER_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 AliTracker
10 //   that is the base for AliTPCtracker, AliITStrackerV2 and AliTRDtracker
11 //       Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch 
12 //-------------------------------------------------------------------------
13 #include <TObject.h>
14 #include "AliMagF.h"
15
16 class AliCluster;
17 class TTree;
18 class AliKalmanTrack;
19 class AliESD;
20 class AliTrackPoint;
21
22 class AliTracker : public TObject {
23 public:
24
25   enum {kTrackInward, kTrackBack, kTrackRefit} Propagation_t; //type of propagation
26   
27   AliTracker();
28   AliTracker(const AliTracker &atr): TObject(atr)
29     {Fatal("Copy ctor","Not Implemented!\n");}
30   // AliTracker & operator=(const AliTracker &)
31   //  {Fatal("= op","Not Implemented\n");return *this;}
32   virtual ~AliTracker(){}
33   virtual Int_t Clusters2Tracks(AliESD *event)=0;
34   virtual Int_t PropagateBack(AliESD *event)=0;
35   virtual Int_t RefitInward(AliESD *event)=0;
36   void SetVertex(const Double_t *xyz, const Double_t *ers=0) { 
37      fX=xyz[0]; fY=xyz[1]; fZ=xyz[2];
38      if (ers) { fSigmaX=ers[0]; fSigmaY=ers[1]; fSigmaZ=ers[2]; } 
39   }
40
41 //protected:
42   virtual Int_t LoadClusters(TTree *)=0;
43   virtual void UnloadClusters()=0;
44   virtual AliCluster *GetCluster(Int_t index) const=0;
45   virtual Bool_t GetTrackPoint(Int_t /* index */ , AliTrackPoint& /* p */) const { return kFALSE;}
46   virtual void  UseClusters(const AliKalmanTrack *t, Int_t from=0) const;
47   virtual void  CookLabel(AliKalmanTrack *t,Float_t wrong) const; 
48   Double_t GetX() const {return fX;}
49   Double_t GetY() const {return fY;}
50   Double_t GetZ() const {return fZ;}
51   Double_t GetSigmaX() const {return fSigmaX;}
52   Double_t GetSigmaY() const {return fSigmaY;}
53   Double_t GetSigmaZ() const {return fSigmaZ;}
54
55   static void SetFieldMap(const AliMagF* map, Bool_t uni);
56   static const AliMagF *GetFieldMap() {return fgkFieldMap;}
57   static Double_t GetBz(Float_t *r) {
58     Float_t b[3]; fgkFieldMap->Field(r,b);
59     Double_t bz=-Double_t(b[2]);
60     return  (TMath::Sign(1e-13,bz) + bz);
61   }
62   static Double_t GetBz() {return fgBz;}
63   static Bool_t UniformField() {return fgUniformField;}
64
65 private:
66
67   AliTracker & operator=(const AliTracker & atr);
68
69   static Bool_t fgUniformField;       // uniform field flag
70   static const AliMagF *fgkFieldMap;  // field map
71   static Double_t fgBz;               // Nominal Bz (kG)
72
73   Double_t fX;  //X-coordinate of the primary vertex
74   Double_t fY;  //Y-coordinate of the primary vertex
75   Double_t fZ;  //Z-coordinate of the primary vertex
76
77   Double_t fSigmaX; // error of the primary vertex position in X
78   Double_t fSigmaY; // error of the primary vertex position in Y
79   Double_t fSigmaZ; // error of the primary vertex position in Z
80
81   ClassDef(AliTracker,3) //abstract tracker
82 };
83
84 #endif
85
86