]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TOF/AliTOFClusterFinder.h
Coverity 10113
[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
97986e79 9#include "TTask.h"
d08a92dd 10
0275b7df 11#include "AliTOFRawStream.h"
12
d08a92dd 13class TClonesArray;
14class TFile;
15class TTree;
16
17class AliLoader;
18class AliRunLoader;
0e46b9ae 19class AliRawReader;
d08a92dd 20
21class AliTOFGeometry;
0e46b9ae 22class AliTOFcluster;
94f5f8f2 23class AliTOFcalib;
d08a92dd 24
97986e79 25class AliTOFClusterFinder : public TTask
d08a92dd 26{
27
28 enum {kTofMaxCluster=77777}; //maximal number of the TOF clusters
29
30 public:
31
94f5f8f2 32 AliTOFClusterFinder(AliTOFcalib *calib);
33 AliTOFClusterFinder(AliRunLoader* runLoader, AliTOFcalib *calib);
7aeeaf38 34 AliTOFClusterFinder(const AliTOFClusterFinder &source); // copy constructor
35 AliTOFClusterFinder& operator=(const AliTOFClusterFinder &source); // ass. op.
d08a92dd 36 virtual ~AliTOFClusterFinder();
ba66add8 37
94f5f8f2 38 void Digits2RecPoints(TTree* digitsTree, TTree* clusterTree);
d08a92dd 39 void Digits2RecPoints(Int_t ievt);
40 void Digits2RecPoints(AliRawReader *rawReader, TTree *clustersTree);
41 void Digits2RecPoints(Int_t ievt, AliRawReader *rawReader);
42 void Raw2Digits(Int_t ievt, AliRawReader *rawReader); // temporary solution
94f5f8f2 43 void Raw2Digits(AliRawReader *rawReader, TTree* digitsTree);
d08a92dd 44 void FillRecPoint();
45 void ResetRecpoint();
46 void Load();
47 void LoadClusters();
48 void UnLoad();
49 void UnLoadClusters();
15ec34b9 50 void SetVerbose(Int_t Verbose){fVerbose=Verbose;} // To set the verbose level
7813bb1a 51 void SetDecoderVersion(Int_t version){fDecoderVersion=version;} // To set the decoder version
5b4ed716 52 Int_t GetDecoderVersion() const {return fDecoderVersion;} // To get the decoder version
0e74c396 53 UShort_t GetClusterVolIndex(const Int_t * const ind) const; //Volume Id getter
ac359ffe 54 void GetClusterPars(Int_t *ind, Double_t *pos, Double_t *cov) const; //cluster par getter
d08a92dd 55
56 protected:
57 AliRunLoader *fRunLoader; // Pointer to Run Loader
58 AliLoader *fTOFLoader; // Pointer to specific detector loader
59
60 TTree *fTreeD; // Digits tree
61 TTree *fTreeR; // Reconstructed points
62
63 AliTOFcluster *fTofClusters[kTofMaxCluster]; // pointers to the TOF clusters
64
d08a92dd 65 TClonesArray *fDigits; // List of digits
66 TClonesArray *fRecPoints; // List of reconstructed points
67
68 Int_t fNumberOfTofClusters; // Number of TOF Clusters
69
70 private:
71
72 //Int_t InsertCluster(Int_t *aa, Double_t *bb); // Fills TofClusters Array
73 //Int_t InsertCluster(Int_t *aa, Double_t *bb, Int_t *cc, Int_t d); // Fills TofClusters Array
74 Int_t InsertCluster(AliTOFcluster *tofCluster); // Fills TofClusters Array
75 Int_t FindClusterIndex(Double_t z) const; // Returns cluster index
f04b3a69 76 void CalibrateRecPoint(UInt_t timestamp = 0); // Apply calibration pars to Clusters
d08a92dd 77
2bf66a2d 78 Int_t fVerbose; // Verbose level (0:no msg,
79 // 1:msg, 2:digits in txt files)
5b4ed716 80 Int_t fDecoderVersion; //setting whether to use the new decoder version
2bf66a2d 81 AliTOFcalib *fTOFcalib; // pointer to the TOF calibration info
0275b7df 82 AliTOFRawStream fTOFRawStream; // AliTOFRawStream variable
83
97986e79 84 ClassDef(AliTOFClusterFinder,6) // To run TOF clustering
d08a92dd 85};
86#endif
87