]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDClusterFinder.h
new functionality and new class added
[u/mrichter/AliRoot.git] / PMD / AliPMDClusterFinder.h
1 #ifndef ALIPMDCLUSTERFINDER_H
2 #define ALIPMDCLUSTERFINDER_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5 //-----------------------------------------------------//
6 //                                                     //
7 //  Date   : August 05 2003                            //
8 //  This reads the file PMD.digits.root(TreeD),        //
9 //  calls the Clustering algorithm and stores the      //
10 //  clustering output in PMD.RecPoints.root(TreeR)     // 
11 //                                                     //
12 //-----------------------------------------------------//
13
14 class TClonesArray;
15 class TFile;
16 class TTree;
17
18 class AliLoader;
19 class AliRunLoader;
20 class AliRawReader;
21 class AliPMDCalibData;
22 class AliPMDPedestal;
23 class AliPMDHotData;
24 class AliPMDNoiseCut;
25 class AliPMDRecoParam;
26
27 class AliPMDClusterFinder : public TObject
28 {
29
30  public:
31
32   AliPMDClusterFinder();
33   AliPMDClusterFinder(AliRunLoader* runLoader);
34   AliPMDClusterFinder(const AliPMDClusterFinder &finder);  // copy constructor
35   AliPMDClusterFinder &operator=(const AliPMDClusterFinder &finder); // assignment op
36   virtual ~AliPMDClusterFinder();
37
38   void Digits2RecPoints(TTree *digitsTree, TTree *clustersTree);
39   void Digits2RecPoints(AliRawReader *rawReader, TTree *clustersTree);
40
41   void AddRecPoint(Int_t idet, Int_t ismn, Float_t * clusdata);
42   void AddRecHit(Int_t celldataX, Int_t celldataY, Int_t celldataTr,
43                  Int_t celldataPid, Float_t celldataAdc);
44   void ResetCellADC();
45   void ResetRecpoint();
46   void ResetRechit();
47   void Load();
48   void LoadClusters();
49   void UnLoad();
50   void UnLoadClusters();
51
52   AliPMDCalibData *GetCalibGain() const;
53   AliPMDPedestal  *GetCalibPed() const;
54   AliPMDHotData   *GetCalibHot() const;
55   AliPMDNoiseCut  *GetNoiseCut() const;
56
57  protected:
58   AliRunLoader *fRunLoader; // Pointer to Run Loader
59   AliLoader    *fPMDLoader; // Pointer to specific detector loader
60
61   AliPMDCalibData *fCalibGain;  //! Gain calibration data
62   AliPMDPedestal  *fCalibPed;   //! Pedestal calibration data
63   AliPMDHotData   *fCalibHot;   //! Hot data
64   AliPMDNoiseCut  *fNoiseCut;   //! Noise cut
65
66   const AliPMDRecoParam *fRecoParam; // reconstruction parameter
67
68   TTree        *fTreeD;     // Digits tree
69   TTree        *fTreeR;     // Reconstructed points
70
71   TClonesArray *fDigits;    // List of digits
72   TClonesArray *fRecpoints; // List of reconstructed points
73   TClonesArray *fRechits;   // List of cells associated with rec points
74
75   Int_t   fNpoint;          // 
76   Int_t   fNhit;            // 
77   Int_t   fDetNo;           // Detector Number (0:PRE, 1:CPV)
78
79
80   static const Int_t fgkRow = 48; // Total number of rows in one unitmodule
81   static const Int_t fgkCol = 96; // Total number of cols in one unitmodule
82   Double_t fCellADC[fgkRow][fgkCol]; // Array containing individual cell ADC
83   Int_t    fCellTrack[fgkRow][fgkCol]; // Array containing individual cell tr
84   Int_t    fCellPid[fgkRow][fgkCol]; // Array containing individual cell pid
85
86   ClassDef(AliPMDClusterFinder,17) // To run PMD clustering
87 };
88 #endif
89