]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFClusterFinder.h
Measured field map as objects of type AliMagFCheb (R. Shahoyan)
[u/mrichter/AliRoot.git] / TOF / AliTOFClusterFinder.h
CommitLineData
d08a92dd 1#ifndef ALITOFCLUSTERFINDER_H
2#define ALITOFCLUSTERFINDER_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
340693af 5// AliTOFClusterFinder Class
6// Task: Transform digits/raw data to TOF Clusters, to fill TOF RecPoints
7// and feed TOF tracking
d08a92dd 8
0e46b9ae 9#include "TObject.h"
d08a92dd 10
11class TClonesArray;
12class TFile;
13class TTree;
14
15class AliLoader;
16class AliRunLoader;
0e46b9ae 17class AliRawReader;
d08a92dd 18
19class AliTOFGeometry;
0e46b9ae 20class AliTOFcluster;
d08a92dd 21
22class AliTOFClusterFinder : public TObject
23{
24
25 enum {kTofMaxCluster=77777}; //maximal number of the TOF clusters
26
27 public:
28
29 AliTOFClusterFinder();
30 AliTOFClusterFinder(AliRunLoader* runLoader);
7aeeaf38 31 AliTOFClusterFinder(const AliTOFClusterFinder &source); // copy constructor
32 AliTOFClusterFinder& operator=(const AliTOFClusterFinder &source); // ass. op.
d08a92dd 33 virtual ~AliTOFClusterFinder();
34
35 void Digits2RecPoints(Int_t ievt);
36 void Digits2RecPoints(AliRawReader *rawReader, TTree *clustersTree);
37 void Digits2RecPoints(Int_t ievt, AliRawReader *rawReader);
38 void Raw2Digits(Int_t ievt, AliRawReader *rawReader); // temporary solution
39 void FillRecPoint();
40 void ResetRecpoint();
41 void Load();
42 void LoadClusters();
43 void UnLoad();
44 void UnLoadClusters();
15ec34b9 45 void SetVerbose(Int_t Verbose){fVerbose=Verbose;} // To set the verbose level
d08a92dd 46
47 protected:
48 AliRunLoader *fRunLoader; // Pointer to Run Loader
49 AliLoader *fTOFLoader; // Pointer to specific detector loader
50
51 TTree *fTreeD; // Digits tree
52 TTree *fTreeR; // Reconstructed points
53
54 AliTOFcluster *fTofClusters[kTofMaxCluster]; // pointers to the TOF clusters
55
56 AliTOFGeometry *fTOFGeometry; // Pointer to TOF geometry
57 TClonesArray *fDigits; // List of digits
58 TClonesArray *fRecPoints; // List of reconstructed points
59
60 Int_t fNumberOfTofClusters; // Number of TOF Clusters
61
62 private:
63
64 //Int_t InsertCluster(Int_t *aa, Double_t *bb); // Fills TofClusters Array
65 //Int_t InsertCluster(Int_t *aa, Double_t *bb, Int_t *cc, Int_t d); // Fills TofClusters Array
66 Int_t InsertCluster(AliTOFcluster *tofCluster); // Fills TofClusters Array
67 Int_t FindClusterIndex(Double_t z) const; // Returns cluster index
37879eed 68 void CalibrateRecPoint(); // Apply calibration pars to Clusters
d08a92dd 69
15ec34b9 70 Int_t fVerbose; //Verbose level (0:no msg, 1:msg, 2:digits in txt files)
d08a92dd 71
72 ClassDef(AliTOFClusterFinder,1) // To run TOF clustering
73};
74#endif
75