]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITStrackerSA.h
New class AliESDEvent, backward compatibility with the old AliESD (Christian)
[u/mrichter/AliRoot.git] / ITS / AliITStrackerSA.h
CommitLineData
13918578 1#ifndef ALIITSTRACKERSA_H
2#define ALIITSTRACKERSA_H
3
4
5
e43c066c 6#include "AliITStrackerMI.h"
13918578 7
8/* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
9 * See cxx source for full Copyright notice */
10
11////////////////////////////////////////////////////
12// Stand alone tracker class //
13// Origin: Elisabetta Crescio //
14// e-mail: crescio@to.infn.it //
15////////////////////////////////////////////////////
16
17class AliITSclusterTable;
18class AliITStrackSA;
d681bb2d 19class AliESDVertex;
13918578 20class AliITSVertexer;
2257f27e 21class TTree;
af885e0f 22class AliESDEvent;
7e5bf5af 23class TArrayD;
13918578 24
e43c066c 25class AliITStrackerSA : public AliITStrackerMI {
13918578 26
27
28 public:
29
30 AliITStrackerSA();
cc088660 31 AliITStrackerSA(const Char_t *geom);
32 AliITStrackerSA(const Char_t *geom,AliESDVertex *vert);
33 AliITStrackerSA(const Char_t *geom,AliITSVertexer *vertexer);
7d62fb64 34 AliITStrackerSA(const AliITStrackerSA& tracker);
e399f961 35 AliITStrackerSA& operator=(const AliITStrackerSA& source);
13918578 36 virtual ~AliITStrackerSA();
af885e0f 37 virtual Int_t Clusters2Tracks(AliESDEvent *event);
38 Int_t FindTracks(AliESDEvent* event);
13918578 39
7e5bf5af 40 AliITStrackV2* FitTrack(AliITStrackSA* tr,Double_t* primaryVertex);
41
42 Int_t FindTrackLowChiSquare(TObjArray* tracklist, Int_t dim) const;
e43c066c 43 Int_t LoadClusters(TTree *cf) {Int_t rc=AliITStrackerMI::LoadClusters(cf); SetClusterTree(cf);SetSixPoints(kTRUE); return rc;}
d681bb2d 44 void SetVertex(AliESDVertex *vtx){fVert = vtx;}
2257f27e 45 void SetClusterTree(TTree * itscl){fITSclusters = itscl;}
7e5bf5af 46 void SetSixPoints(Bool_t sp = kFALSE){fSixPoints = sp;}
2257f27e 47 Bool_t GetSixPoints() const {return fSixPoints;}
1966f03c 48 void SetSAFlag(Bool_t fl){fITSStandAlone=fl;} // StandAlone flag setter
49 Bool_t GetSAFlag() const {return fITSStandAlone;} // StandAlone flag getter
13918578 50 void SetWindowSizes(Int_t n=46, Double_t *phi=0, Double_t *lam=0);
13918578 51
627b6db6 52 enum {kSAflag=0x8000}; //flag to mark clusters used in the SA tracker
53
13918578 54 protected:
55
13918578 56 //Initialization
57 void Init();
4e05ab9a 58 void ResetForFinding();
59 void UpdatePoints();
13918578 60
61 static Double_t Curvature(Double_t x1,Double_t y1,Double_t x2,Double_t y2,
bef31448 62 Double_t x3,Double_t y3);
13918578 63
64 Double_t ChoosePoint(Double_t p1, Double_t p2, Double_t pp);
65
66 static Int_t FindIntersection(Float_t a1, Float_t b1, Float_t c1, Float_t c2,
67 Float_t& x1,Float_t& y1, Float_t& x2, Float_t& y2);
68 static Int_t FindEquation(Float_t x1, Float_t y1, Float_t x2, Float_t y2,
69 Float_t x3, Float_t y3,Float_t& a, Float_t& b,
70 Float_t& c);
71
72 static Int_t FindLabel(Int_t l1, Int_t l2, Int_t l3, Int_t l4, Int_t l5, Int_t l6);
73 static Int_t Label(Int_t gl1, Int_t gl2, Int_t gl3, Int_t gl4, Int_t gl5,
74 Int_t gl6,Int_t gl7, Int_t gl8, Int_t gl9, Int_t gl10,Int_t gl11,
75 Int_t gl12, Int_t gl13, Int_t gl14,Int_t gl15, Int_t gl16,
76 Int_t gl17, Int_t gl18, Int_t numberofpoints=6);
bef31448 77
13918578 78 Int_t SearchClusters(Int_t layer,Double_t phiwindow,Double_t lambdawindow,
cfe729e0 79 AliITStrackSA* trs,Double_t zvertex,Int_t flagp);
7e5bf5af 80
cc088660 81 void GetCoorAngles(AliITSRecPoint* cl,Double_t &phi,Double_t &lambda,Float_t &x,Float_t &y,Float_t &z,Double_t* vertex);
82 void GetCoorErrors(AliITSRecPoint* cl,Float_t &sx,Float_t &sy, Float_t &sz);
7e5bf5af 83
84 AliITSclusterTable* GetClusterCoord(Int_t layer,Int_t n) const {return (AliITSclusterTable*)fCluCoord[layer]->UncheckedAt(n);}
85 void RemoveClusterCoord(Int_t layer, Int_t n) {fCluCoord[layer]->RemoveAt(n);fCluCoord[layer]->Compress();}
86
87
13918578 88 Double_t fPhiEstimate; //Estimation of phi angle on next layer
1966f03c 89 Bool_t fITSStandAlone; //Tracking is performed in the ITS alone if kTRUE
4e05ab9a 90 Float_t fPoint1[2]; //! coord. of 1-st point to evaluate the curvature
91 Float_t fPoint2[2]; //! coord. of 2-nd point to evaluate the curvature
92 Float_t fPoint3[2]; //! coord. of 3-rd point to evaluate the curvature
93 Float_t fPointc[2]; //! current point coord (for curvature eval.)
13918578 94 Double_t fLambdac; //! current value of the Lambda angle in the window
95 Double_t fPhic; //! current value of the Phi angle in the window
96 Float_t fCoef1; //! param. of the equation of the circ. approx a layer
97 Float_t fCoef2; //! param. of the equation of the circ. approx a layer
98 Float_t fCoef3; //! param. of the equation of the circ. approx a layer
99 Int_t fNloop; // Number of iterqations on phi and lambda windows
100 Double_t *fPhiWin; // phi window sizes
101 Double_t *fLambdaWin; // lambda window sizes
d681bb2d 102 AliESDVertex *fVert; //! primary vertex
13918578 103 AliITSVertexer *fVertexer; //! vertexer
4e05ab9a 104 TObjArray *fListOfTracks; //! container for found tracks
2257f27e 105 TTree *fITSclusters; //! pointer to ITS tree of clusters
2257f27e 106 Bool_t fSixPoints; // If true 6/6 points are required (default). 5/6 otherwise
7e5bf5af 107
108 TClonesArray** fCluLayer; //! array with clusters
109 TClonesArray** fCluCoord; //! array with cluster info
110
af885e0f 111 ClassDef(AliITStrackerSA,5)
13918578 112};
113
114#endif
115