1 #ifndef ALIPHOSCLUSTERIZERV1_H
2 #define ALIPHOSCLUSTERIZERV1_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
8 //_________________________________________________________________________
9 // Implementation version 1 of the clusterization algorithm
11 //*-- Author: Yves Schutz (SUBATECH)
13 // --- ROOT system ---
15 // --- Standard library ---
17 // --- AliRoot header files ---
19 #include "AliPHOSClusterizer.h"
20 #include "AliPHOSDigit.h"
21 #include "AliPHOSGeometry.h"
25 class AliPHOSClusterizerv1 : public AliPHOSClusterizer {
29 AliPHOSClusterizerv1() ; // ctor
30 virtual ~AliPHOSClusterizerv1(){} ; // dtor
32 Int_t AreNeighbours(AliPHOSDigit * d1, AliPHOSDigit * d2) ; // Checks if digits are in neighbour cells
33 Float_t Calibrate(Int_t Amp){ return (fA + fB * Amp) ;} // Tranforms Amp to energy
34 void FillandSort(const DigitsList * dl, TObjArray * tl) ; // Sorts the list according to increasing id
35 virtual void GetNumberOfClustersFound(Int_t * numb) ;
37 virtual void GetCalibrationParameters(Float_t & A, Float_t &B) { A = fA; B = fB; }
38 virtual Float_t GetEmcClusteringThreshold() { return fEmcClusteringThreshold;}
39 virtual Float_t GetEmcEnergyThreshold() { return fEmcEnergyThreshold; }
40 virtual Float_t GetLocalMaxCut() { return fLocMaxCut;}
41 virtual Float_t GetLogWeightCut() { return fW0;}
42 virtual Float_t GetLocalMaxCutCPV() { return fLocMaxCutCPV;}
43 virtual Float_t GetLogWeightCutCPV() { return fW0CPV;}
44 virtual Float_t GetPpsdClusteringThreshold() { return fPpsdClusteringThreshold; }
45 virtual Float_t GetPpsdEnergyThreshold() { return fPpsdEnergyThreshold; }
46 virtual Float_t GetCpvClusteringThreshold() { return fCpvClusteringThreshold; }
47 virtual Float_t GetCpvEnergyThreshold() { return fCpvEnergyThreshold; }
49 virtual Bool_t IsInEmc (AliPHOSDigit * digit) ; // Tells if id digit is in EMC
50 virtual Bool_t IsInPpsd(AliPHOSDigit * digit) ; // Tells if id digit is in PPSD
51 virtual Bool_t IsInCpv (AliPHOSDigit * digit) ; // Tells if id digit is in CPV
52 virtual void MakeClusters(const DigitsList * dl,
53 AliPHOSRecPoint::RecPointsList * emcl,
54 AliPHOSRecPoint::RecPointsList * ppsdl,
55 AliPHOSRecPoint::RecPointsList * cpvl) ; // does the job
56 virtual void PrintParameters() ;
57 virtual void SetCalibrationParameters(Float_t A,Float_t B){ fA = A ; fB = B;}
58 virtual void SetEmcClusteringThreshold(Float_t cluth) { fEmcClusteringThreshold = cluth ; }
59 virtual void SetEmcEnergyThreshold(Float_t enth) { fEmcEnergyThreshold = enth ; }
60 virtual void SetLocalMaxCut(Float_t cut) { fLocMaxCut = cut ; }
61 virtual void SetLogWeightCut(Float_t w) { fW0 = w ; }
62 virtual void SetLocalMaxCutCPV(Float_t cut) { fLocMaxCutCPV = cut ; }
63 virtual void SetLogWeightCutCPV(Float_t w) { fW0CPV = w ; }
64 virtual void SetPpsdClusteringThreshold(Float_t cluth) { fPpsdClusteringThreshold = cluth ; }
65 virtual void SetPpsdEnergyThreshold(Float_t enth) { fPpsdEnergyThreshold = enth ; }
66 virtual void SetCpvClusteringThreshold(Float_t cluth) { fCpvClusteringThreshold = cluth ; }
67 virtual void SetCpvEnergyThreshold(Float_t enth) { fCpvEnergyThreshold = enth ; }
71 Float_t fA ; // offset of the energy calibration
72 Float_t fB ; // gain of the energy calibration
73 AliPHOSGeometry * fGeom ; // pointer to geometry
74 Int_t fNumberOfEmcClusters ; // number of EMC clusters found
75 Float_t fEmcClusteringThreshold ; // minimum energy to include a EMC digit in a cluster
76 Float_t fEmcEnergyThreshold ; // minimum energy of EMC digit to be considered
77 Int_t fNumberOfPpsdClusters ; // number of PPSD clusters found
78 Float_t fPpsdClusteringThreshold ; // minimum energy to include a PPSD digit in a cluster
79 Float_t fPpsdEnergyThreshold ; // minimum energy of PPSD digit to be considered
80 Int_t fNumberOfCpvClusters ; // number of CPV clusters found
81 Float_t fCpvClusteringThreshold ; // minimum energy to include a CPV digit in a cluster
82 Float_t fCpvEnergyThreshold ; // minimum energy of CPV digit to be considered
83 Float_t fLocMaxCut ; // minimum energy difference to distinguish local maxima in a cluster
84 Float_t fW0 ; // logarithmic weight for the cluster center of gravity calculation
85 Float_t fLocMaxCutCPV ; // minimum energy difference to distinguish local maxima in a CPV cluster
86 Float_t fW0CPV ; // logarithmic weight for the CPV cluster center of gravity calculation
88 ClassDef(AliPHOSClusterizerv1,1) // Clusterizer implementation version 1
92 #endif // AliPHOSCLUSTERIZERV1_H