]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALClusterizerv1.h
- removing obsolote classes
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALClusterizerv1.h
1 #ifndef ALIEMCALCLUSTERIZERV1_H
2 #define ALIEMCALCLUSTERIZERV1_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 //_________________________________________________________________________
9 //  Implementation version 1 of the clusterization algorithm                     
10 //  Performs clusterization (collects neighbouring active cells) and 
11 //  unfolding of the clusters with several local maxima.  
12 //  results are stored in TreeR#, branches PHOSEmcRP (EMC recPoints),
13 //  PHOSCpvRP (CPV RecPoints) and AliPHOSClusterizer
14 //
15 //*-- Author: Yves Schutz (SUBATECH)
16 // Modif: 
17 //  August 2002 Yves Schutz: clone PHOS as closely as possible and intoduction
18 //                           of new  IO (à la PHOS)
19
20 // --- ROOT system ---
21
22 // --- Standard library ---
23
24 // --- AliRoot header files ---
25
26 #include "AliEMCALClusterizer.h"
27 class TH1F;
28 class AliEMCALRecPoint ; 
29 class AliEMCALDigit ;
30 class AliEMCALDigitizer ;
31 class AliEMCALGeometry ;
32 class AliEMCALCalibData ;
33 class AliCaloCalibPedestal ;
34
35 class AliEMCALClusterizerv1 : public AliEMCALClusterizer {
36   
37 public:
38   
39   AliEMCALClusterizerv1() ;         
40   AliEMCALClusterizerv1(AliEMCALGeometry* geometry);
41   AliEMCALClusterizerv1(AliEMCALGeometry* geometry, AliEMCALCalibData * calib, AliCaloCalibPedestal * pedestal);
42         
43   virtual ~AliEMCALClusterizerv1()  ;
44
45   virtual Int_t   AreNeighbours(AliEMCALDigit * d1, AliEMCALDigit * d2)const ; 
46                                // Checks if digits are in neighbour cells 
47
48   virtual Float_t Calibrate(Int_t amp, Int_t cellId) ;  // Tranforms Amp to energy 
49
50   virtual void    GetNumberOfClustersFound(int numb )const{ numb = fNumberOfECAClusters ;} 
51   virtual Float_t GetECAClusteringThreshold()const{ return fECAClusteringThreshold;}  
52   virtual Float_t GetECALocalMaxCut()const       { return fECALocMaxCut;} 
53   virtual Float_t GetECALogWeight()const         { return fECAW0;}
54   virtual Float_t GetMinECut()const              { return fMinECut;}
55
56   virtual Float_t GetTimeCut() const            { return fTimeCut ; }
57
58   virtual void    Digits2Clusters(Option_t *option);                // Does the job
59
60   virtual void Print(Option_t * option)const ;
61
62   virtual void SetECAClusteringThreshold(Float_t cluth)  { fECAClusteringThreshold = cluth ; }
63   virtual void SetMinECut(Float_t mine)                  { fMinECut = mine; }
64   virtual void SetECALocalMaxCut(Float_t cut)            { fECALocMaxCut = cut ; }
65   virtual void SetECALogWeight(Float_t w)                { fECAW0 = w ; }
66   virtual void SetTimeCut(Float_t gate)                  { fTimeCut = gate ;}
67   virtual void SetUnfolding(Bool_t toUnfold = kTRUE )    {fToUnfold = toUnfold ;}  
68   static Double_t ShowerShape(Double_t x, Double_t y) ; // Shape of EM shower used in unfolding; 
69                                             //class member function (not object member function)
70   static void UnfoldingChiSquare(Int_t & nPar, Double_t * Grad, Double_t & fret, Double_t * x, Int_t iflag)  ;
71                                             // Chi^2 of the fit. Should be static to be passes to MINUIT
72   virtual const char * Version() const { return "clu-v1" ; }  
73
74   void   PrintRecoInfo();                        //*MENU*
75   void   SetCalibrationParameters(AliEMCALCalibData * calib)   { fCalibData = calib ; }
76   void   SetCaloCalibPedestal(AliCaloCalibPedestal  * caloped) { fCaloPed   = caloped ; }
77
78 protected:
79
80   virtual void   MakeClusters();            
81
82 private:
83   AliEMCALClusterizerv1(const AliEMCALClusterizerv1 &); //copy ctor
84   AliEMCALClusterizerv1 & operator = (const AliEMCALClusterizerv1 &);
85
86   void    GetCalibrationParameters(void) ;
87   void    GetCaloCalibPedestal(void) ;
88
89   Bool_t  FindFit(AliEMCALRecPoint * emcRP, AliEMCALDigit ** MaxAt, const Float_t * maxAtEnergy, 
90                   Int_t NPar, Float_t * FitParametres) const; //Used in UnfoldClusters, calls TMinuit
91   void Init() ;
92   void InitParameters();
93
94   virtual void   MakeUnfolding();
95   void           UnfoldCluster(AliEMCALRecPoint * iniEmc, Int_t Nmax, 
96                                AliEMCALDigit ** maxAt,
97                                Float_t * maxAtEnergy ); //Unfolds cluster using TMinuit package
98   void           PrintRecPoints(Option_t * option) ;
99
100 private:
101   AliEMCALGeometry* fGeom;           //! pointer to geometry for utilities
102
103   Bool_t  fDefaultInit;              //! Says if the task was created by defaut ctor (only parameters are initialized)
104   Bool_t  fToUnfold ;                // To perform unfolding 
105   Int_t   fNumberOfECAClusters ;     // number of clusters found in EC section
106
107   //Calibration parameters... to be replaced by database 
108
109   AliEMCALCalibData    * fCalibData ;   //! Calibration database if aval
110   AliCaloCalibPedestal * fCaloPed   ;   //! Tower status map if aval
111
112   Float_t fADCchannelECA ;          // width of one ADC channel for EC section (GeV)
113   Float_t fADCpedestalECA ;         // pedestal of ADC for EC section (GeV) 
114  
115   Float_t fECAClusteringThreshold ;  // minimum energy to seed a EC digit in a cluster
116   Float_t fECALocMaxCut ;            // minimum energy difference to distinguish local maxima in a cluster
117   Float_t fECAW0 ;                   // logarithmic weight for the cluster center of gravity calculation
118   Float_t fTimeCut ;                // Maximum time difference between the digits in ont EMC cluster
119   Float_t fMinECut;                  // Minimum energy for a digit to be a member of a cluster
120
121   ClassDef(AliEMCALClusterizerv1,8)   // Clusterizer implementation version 1
122
123 };
124
125 #endif // AliEMCALCLUSTERIZERV1_H