]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFtrackerV1.h
Compilation on Windows/Cygwin
[u/mrichter/AliRoot.git] / TOF / AliTOFtrackerV1.h
1 #ifndef ALITOFTRACKERV1_H
2 #define ALITOFTRACKERV1_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8
9 //----------------------------------------------------------------------//
10 //                                                                      //
11 // AliTOFtrackerV1 Class                                                  //
12 // Task: Perform association of the ESD tracks to TOF Clusters          //
13 // and Update ESD track with associated TOF Cluster parameters          //
14 //                                                                      //
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                               //
19 //                                                                      //
20 //----------------------------------------------------------------------//
21
22 #include "AliTracker.h"
23 //#include "AliTOFpidESD.h"
24
25 class TClonesArray;
26 class TH1F;
27 class TH2F;
28
29 class AliESDEvent;
30
31 class AliTOFcluster;
32 class AliTOFRecoParam;
33 class AliTOFpidESD;
34
35 class AliTOFtrackerV1 : public AliTracker {
36
37 enum {kMaxCluster=77777}; //maximal number of the TOF clusters
38
39 public:
40
41  AliTOFtrackerV1(); 
42  AliTOFtrackerV1(const AliTOFtrackerV1 &t); //Copy Ctor 
43  AliTOFtrackerV1& operator=(const AliTOFtrackerV1 &source); // ass. op.
44
45  virtual ~AliTOFtrackerV1();
46  virtual Int_t Clusters2Tracks(AliESDEvent* /*event*/) {return -1;};
47  virtual Int_t PropagateBack(AliESDEvent* event);
48  virtual Int_t RefitInward(AliESDEvent* /*event*/) {return -1;};
49  virtual Int_t LoadClusters(TTree * cTree); // Load Clusters
50  virtual void  UnloadClusters();// UnLoad Clusters
51  virtual AliCluster *GetCluster(Int_t /*index*/) const {return NULL;};
52  Bool_t GetTrackPoint(Int_t index, AliTrackPoint& p) const;
53  void InitCheckHists();
54  void SaveCheckHists();
55
56 private:
57
58  Int_t FindClusterIndex(Double_t z) const; // Returns cluster index 
59  void  MatchTracks(); // Matching Algorithm 
60  void  CollectESD(); // Select starting Set for Matching 
61  Float_t  GetTimeZerofromTOF(AliESDEvent* /*event*/) const; // T0 from TOF
62  Float_t  GetTimeZerofromT0(AliESDEvent* event) const; // T0 from T0
63  Float_t  CorrectTimeWalk(Float_t dist,Float_t tof); // Time Walk correction
64
65  AliTOFRecoParam* fRecoParam;           // Pointer to TOF Recon. Pars
66  AliTOFpidESD*    fPid;               // Pointer to TOF PID
67  AliTOFcluster *fClusters[kMaxCluster];  // pointers to the TOF clusters
68
69  Int_t fN;              // Number of Clusters
70  Int_t fNseeds;         // Number of track seeds  
71  Int_t fNseedsTOF;      // TPC BP tracks
72  Int_t fngoodmatch;     // Correctly matched  tracks
73  Int_t fnbadmatch;      // Wrongly matched tracks
74  Int_t fnunmatch;       // Unmatched tracks
75  Int_t fnmatch;         // Total matched tracks
76  
77  TClonesArray* fTracks; //! pointer to the TClonesArray with TOF tracks
78  TClonesArray* fSeeds;  //! pointer to the TClonesArray with ESD tracks
79  //Digits/Reco QA histos
80
81  TH2F * fHDigClusMap; //Digits QA, Cluster Map 
82  TH1F * fHDigNClus;   //Digits QA, # of clusters on TOF/event
83  TH1F * fHDigClusTime;//Digits QA, Cluster Time (ns)
84  TH1F * fHDigClusToT; //Digits QA, Cluster ToT (ns)
85  TH1F * fHRecNClus; //Reco QA, cluster occupancy in search window
86  TH1F * fHRecChi2;//Reco QA, track-best TOF cluster chi2
87  TH1F * fHRecDistZ;//Reco QA, track-TOF cluster closest distance (cm)
88  TH2F * fHRecSigYVsP;//Reco QA, track error in Y at TOF inner surface (cm)
89  TH2F * fHRecSigZVsP; //Reco QA, track error in Z at TOF inner surface (cm)
90  TH2F * fHRecSigYVsPWin;//Reco QA, search window size in Y (cm)
91  TH2F * fHRecSigZVsPWin;//Reco QA, search window size in X (cm)
92
93  ClassDef(AliTOFtrackerV1, 1) // TOF tracker 
94 };
95
96 #endif