]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - ITS/AliITSTrackerV1.h
New default values for baselines (F.Prino)
[u/mrichter/AliRoot.git] / ITS / AliITSTrackerV1.h
... / ...
CommitLineData
1//Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved.
2//See cxx source for full Copyright notice
3//
4//The purpose of this class is to permorm the ITS tracking.
5//
6// The constructor has the task to inizialize some private members.
7// The method DoTracking is written to be called by a macro. It gets the event
8// number, the minimum and maximum order number of TPC tracks that are to be
9// tracked trough the ITS, and the file where the recpoints are registered.
10//
11// The method AliiTStracking is a recursive function that performs the
12// tracking trough the ITS
13//
14// The method Intersection found the layer, ladder and detector where the
15// intersection take place and caluclate the cohordinates of this
16// intersection. It returns an integer that is 0 if the intersection has
17// been found successfully.
18//
19// The two mwthods Kalmanfilter and kalmanfiltervert operate the
20// kalmanfilter without and with the verteximposition respectively.
21
22#ifndef ALIITSTRACKERV1_H
23#define ALIITSTRACKERV1_H
24
25#include <TObject.h>
26#include <TVectorfwd.h>
27
28class TObjArray;
29class AliITSTrackV1;
30class AliITSRad;
31class TStopwatch;
32
33class AliITSTrackerV1 : public TObject {
34 public:
35 AliITSTrackerV1();
36 AliITSTrackerV1(Int_t evnumber, Bool_t flag);
37 AliITSTrackerV1(const AliITSTrackerV1 &cobj);
38 ~AliITSTrackerV1();
39 AliITSTrackerV1 &operator=(const AliITSTrackerV1 &obj);
40// void DelMatrix(Int_t NumOfModules);
41 void DoTracking(Int_t evNumber, Int_t minTr, Int_t maxTr, TFile *file, Bool_t realmass=0);
42 void RecursiveTracking(TList *trackITSlist);
43 Int_t Intersection(AliITSTrackV1 &track, Int_t layer,Int_t &ladder,
44 Int_t &detector);
45 void KalmanFilter(AliITSTrackV1 *newtrack, TVector &cluster,
46 Double_t sigma[2]);
47 void KalmanFilterVert(AliITSTrackV1 *newtrack, TVector &cluster,
48 Double_t sigma[2]);
49 //void KalmanFilterVert(AliITSTrackV1 *newtrack, TVector &cluster,
50 // Double_t sigma[2], Double_t chi2pred);
51
52 private:
53 //AliITS* fITS; //! pointer to AliITS
54 AliITSDetTypeRec *fDetTypeRec;//ITS obj. for reconstruction
55 AliITSTrackV1 *fresult; // result is a pointer to the final best track
56 Double_t fPtref; // transvers momentum obtained from TPC tracking
57 Double_t fChi2max; // chi2 cut
58 //Double_t fepsphi; //eps for definition window in phi
59 // Double_t fepsz; //eps for definition window in z
60 TClonesArray *frecPoints; // pointer to RecPoints
61 Int_t **fvettid; // flag vector of used clusters
62 Bool_t fflagvert; // a flag to impose or not the vertex constraint
63 AliITSRad *frl; // pointer to get the radiation lenght matrix
64/// To be put in a specific geometric class
65 Int_t fNlad[6]; // Number of ladders for a given layer
66 Int_t fNdet[6]; // Number of detector for a given layer
67 Double_t fAvrad[6]; // Average radius for a given layer
68 Double_t fDetx[6];// Semidimension of detectors along x axis for a given layer
69 Double_t fDetz[6];// Semidimension of detectors along z axis for a given layer
70 Double_t **fzmin;// Matrix of zmin for a given layer and a given detector
71 Double_t **fzmax;// Matrix of zmax for a given layer and a given detector
72 Double_t **fphimin;// Matrix of phimin for a given layer and a given ladder
73 Double_t **fphimax;// Matrix of phimax for a given layer and a given ladder
74 Double_t **fphidet; // azimuthal angle for a given layer and a given ladder
75 Int_t *fNRecPoints; // pointer to the vector giving the number of recpoints for a given module
76 /*
77 Float_t **fRecCylR; // pointer to the matrix giving the R cylindric cohordinate of a recpoint
78 Float_t **fRecCylPhi; // pointer to the matrix giving the Phi cylindric cohordinate of a recpoint
79 Float_t **fRecCylZ; // pointer to the matrix giving the Z cylindric cohordinate of a recpoint
80 */
81 Double_t **fRecCylR; // pointer to the matrix giving the R cylindric cohordinate of a recpoint
82 Double_t **fRecCylPhi; // pointer to the matrix giving the Phi cylindric cohordinate of a recpoint
83 Double_t **fRecCylZ; // pointer to the matrix giving the Z cylindric cohordinate of a recpoint
84/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
85 Double_t fFieldFactor; // Magnetic field factor
86
87 ClassDef(AliITSTrackerV1,2)
88};
89
90#endif