]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliTracker.h
Initialization of all returned variables in GetRPHIintersections
[u/mrichter/AliRoot.git] / STEER / AliTracker.h
CommitLineData
be9c5115 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
fb17acd4 6/* $Id$ */
7
be9c5115 8//-------------------------------------------------------------------------
9// class AliTracker
41377c29 10// that is the base for AliTPCtracker, AliITStrackerV2 and AliTRDtracker
be9c5115 11// Origin: Iouri Belikov, CERN, Jouri.Belikov@cern.ch
12//-------------------------------------------------------------------------
1d5fc4ea 13#include <TObject.h>
1bb2a43c 14//#include "TError.h"
be9c5115 15
16class AliKalmanTrack;
17class AliCluster;
c630aafd 18class TTree;
19class AliESD;
3b242889 20class AliMagF;
be9c5115 21
1d5fc4ea 22class AliTracker : public TObject {
be9c5115 23public:
9c9d2487 24
1bb2a43c 25 enum {kTrackInward, kTrackBack, kTrackRefit} Propagation_t; //type of propagation
9c9d2487 26
3b242889 27 AliTracker();
1bb2a43c 28 AliTracker(const AliTracker &atr): TObject(atr)
29 {Fatal("Copy ctor","Not Implemented!\n");}
90e48c0c 30 // AliTracker & operator=(const AliTracker &)
31 // {Fatal("= op","Not Implemented\n");return *this;}
be9c5115 32 virtual ~AliTracker(){}
c630aafd 33 virtual Int_t Clusters2Tracks(AliESD *event)=0;
34 virtual Int_t PropagateBack(AliESD *event)=0;
35 virtual Int_t RefitInward(AliESD *event)=0;
1d5fc4ea 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 }
61ab8ea8 40 void SetEventNumber(Int_t ev) { fEventN=ev; }
be9c5115 41
42//protected:
c630aafd 43 virtual Int_t LoadClusters(TTree *)=0;
e24ea474 44 virtual void UnloadClusters()=0;
be9c5115 45 virtual AliCluster *GetCluster(Int_t index) const=0;
46 virtual void UseClusters(const AliKalmanTrack *t, Int_t from=0) const;
47 virtual void CookLabel(AliKalmanTrack *t,Float_t wrong) const;
7f6ddf58 48 Double_t GetX() const {return fX;}
49 Double_t GetY() const {return fY;}
50 Double_t GetZ() const {return fZ;}
1d5fc4ea 51 Double_t GetSigmaX() const {return fSigmaX;}
52 Double_t GetSigmaY() const {return fSigmaY;}
53 Double_t GetSigmaZ() const {return fSigmaZ;}
61ab8ea8 54 Int_t GetEventNumber() const {return fEventN;}
7f6ddf58 55
3b242889 56 static void SetFieldMap(const AliMagF* map);
57 static const AliMagF *GetFieldMap() {return fgkFieldMap;}
41377c29 58
9c9d2487 59 Int_t IsStoringBarrel() const {return fStoreBarrel;}
60 void SetStoreBarrel(Int_t s) {fStoreBarrel = s;}
61
7f6ddf58 62private:
90e48c0c 63
64 AliTracker & operator=(const AliTracker & atr);
65
3b242889 66 static const AliMagF *fgkFieldMap; //field map
61ab8ea8 67 Int_t fEventN;//event number
68
1bb2a43c 69 Int_t fStoreBarrel; //Store Barrel information
9c9d2487 70
61ab8ea8 71 Double_t fX; //X-coordinate of the primary vertex
72 Double_t fY; //Y-coordinate of the primary vertex
73 Double_t fZ; //Z-coordinate of the primary vertex
be9c5115 74
1d5fc4ea 75 Double_t fSigmaX; // error of the primary vertex position in X
76 Double_t fSigmaY; // error of the primary vertex position in Y
77 Double_t fSigmaZ; // error of the primary vertex position in Z
78
be9c5115 79 ClassDef(AliTracker,1) //abstract tracker
80};
81
82#endif
83
84