1 #ifndef ALITOFTRACKER_H
2 #define ALITOFTRACKER_H
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
9 //----------------------------------------------------------------------//
11 // AliTOFtracker Class //
12 // Task: Perform association of the ESD tracks to TOF Clusters //
13 // and Update ESD track with associated TOF Cluster parameters //
15 // -- Authors : S. Arcelli, C. Zampolli (Bologna University and INFN) //
16 // -- Contacts: Annalisa.De.Caro@cern.ch //
17 // -- : Chiara.Zampolli@bo.infn.it //
18 // -- : Silvia.Arcelli@bo.infn.it //
21 #include "AliTracker.h"
36 class AliTOFRecoParam;
39 class AliTOFtrackPoint : public TObject {
44 fIndex(0),fDistance(0),fDistanceZ(0),
45 fDistanceY(0),fDistanceX(0),fPropRadius(0),fLength(0) { };
46 AliTOFtrackPoint(Int_t index,Float_t dist,Float_t distZ,
47 Float_t distY,Float_t distX,Float_t radius,Float_t length) :
49 fIndex(index),fDistance(dist),fDistanceZ(distZ),
50 fDistanceY(distY),fDistanceX(distX),fPropRadius(radius),fLength(length) { };
51 AliTOFtrackPoint(const AliTOFtrackPoint & source) :
53 fIndex(source.fIndex),
54 fDistance(source.fDistance),
55 fDistanceZ(source.fDistanceZ),
56 fDistanceY(source.fDistanceY),
57 fDistanceX(source.fDistanceX),
58 fPropRadius(source.fPropRadius),
59 fLength(source.fLength) { };
60 AliTOFtrackPoint & operator=(const AliTOFtrackPoint & source)
61 { if (this == &source) return *this;
62 TObject::operator=(source);
63 fDistance=source.fDistance;fDistanceZ=source.fDistanceZ;fDistanceY=source.fDistanceY;fDistanceX=source.fDistanceX;
64 fPropRadius=source.fPropRadius;fLength=source.fLength;
67 Int_t Index() const {return fIndex;} // cluster index
68 Float_t Distance() const {return fDistance;} // distance
69 Float_t DistanceZ() const {return fDistanceZ;} // distance, Z component
70 Float_t DistanceY() const {return fDistanceY;} // distance, Y component
71 Float_t DistanceX() const {return fDistanceX;} // distance, X component
72 Float_t PropRadius() const {return fPropRadius;} // propagation radius at TOF
73 Float_t Length() const {return fLength;} // reconstructed track length at TOF
77 Int_t fIndex; // cluster index
78 Float_t fDistance; // track-cluster distance
79 Float_t fDistanceZ; // Z component of track-cluster distance
80 Float_t fDistanceY; // Y component of track-cluster distance
81 Float_t fDistanceX; // X component of track-cluster distance
82 Float_t fPropRadius; // track propagation radius
83 Float_t fLength; // receonstructed track length
85 //ClassDef(AliTOFtrackPoint, 2) // TOF matchable cluster
89 class AliTOFtracker : public AliTracker {
95 virtual ~AliTOFtracker();
96 virtual void GetPidSettings(AliESDpid *esdPID);
97 virtual Int_t Clusters2Tracks(AliESDEvent* /*event*/) {return -1;};
98 virtual Int_t PropagateBack(AliESDEvent * const event);
99 virtual Int_t RefitInward(AliESDEvent* /*event*/) {return -1;};
100 virtual Int_t LoadClusters(TTree * cTree); // Load Clusters
101 virtual void UnloadClusters();// UnLoad Clusters
102 virtual AliCluster *GetCluster(Int_t index) const
103 {if (index==-1 || index >= fN) return NULL;
104 return (AliCluster *) fClusters[index];};
105 Bool_t GetTrackPoint(Int_t index, AliTrackPoint& p) const;
106 Int_t GetNumberOfMatchedTOFtracks() const {return fnmatch;}
107 void InitCheckHists();
108 void SaveCheckHists();
109 void FillClusterArray(TObjArray* arr) const;
113 enum {kMaxCluster=77777}; //maximal number of the TOF clusters
115 AliTOFtracker(const AliTOFtracker &t); //Copy Ctor
116 AliTOFtracker& operator=(const AliTOFtracker &source); // ass. op.
118 Int_t FindClusterIndex(Double_t z) const; // Returns cluster index
119 void MatchTracks(Bool_t mLastStep); // Matching Algorithm
120 void CollectESD(); // Select starting Set for Matching
121 Float_t CorrectTimeWalk(Float_t dist,Float_t tof) const; // Time Walk correction
123 const AliTOFRecoParam* fkRecoParam; // Pointer to TOF Recon. Pars
124 AliTOFGeometry* fGeom; // Pointer to TOF geometry
125 AliTOFcluster *fClusters[kMaxCluster]; // pointers to the TOF clusters
127 Int_t fN; // Number of Clusters
128 Int_t fNseeds; // Number of track seeds
129 Int_t fNseedsTOF; // TPC BP tracks
130 Int_t fngoodmatch; // Correctly matched tracks
131 Int_t fnbadmatch; // Wrongly matched tracks
132 Int_t fnunmatch; // Unmatched tracks
133 Int_t fnmatch; // Total matched tracks
135 TClonesArray* fTracks; //! pointer to the TClonesArray with TOF tracks
136 TObjArray* fSeeds; //! pointer to the TObjArray with ESD tracks
137 //Digits/Reco QA histos
138 TObjArray* fTOFtrackPoints; //! pointer to TObjArray of matchable TOF
141 TH2F * fHDigClusMap; //Digits QA, Cluster Map
142 TH1F * fHDigNClus; //Digits QA, # of clusters on TOF/event
143 TH1F * fHDigClusTime;//Digits QA, Cluster Time (ns)
144 TH1F * fHDigClusToT; //Digits QA, Cluster ToT (ns)
145 TH1F * fHRecNClus; //Reco QA, cluster occupancy in search window
146 TH1F * fHRecDist;//Reco QA, track-TOF cluster closest distance (cm)
147 TH2F * fHRecSigYVsP;//Reco QA, track error in Y at TOF inner surface (cm)
148 TH2F * fHRecSigZVsP; //Reco QA, track error in Z at TOF inner surface (cm)
149 TH2F * fHRecSigYVsPWin;//Reco QA, search window size in Y (cm)
150 TH2F * fHRecSigZVsPWin;//Reco QA, search window size in X (cm)
151 TTree * fCalTree; // Tree for on-the-fly offline Calibration
152 // internal variables in tree for on-the-fly TOF Calibration
154 Int_t fIch; //TOF channel number
155 Float_t fToT; // Time over Threshold, ns
156 Float_t fTime; //TOF time, ps
157 Float_t fExpTimePi; // exp time, Pions
158 Float_t fExpTimeKa; // exp time, Kaons
159 Float_t fExpTimePr; // exp time, Protons
161 ClassDef(AliTOFtracker, 6) // TOF tracker