]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSClusterizer.h
New ALIPHOSv1: includes the light transport in the Xtal
[u/mrichter/AliRoot.git] / PHOS / AliPHOSClusterizer.h
1 #ifndef ALIPHOSCLUSTERIZER_H
2 #define ALIPHOSCLUSTERIZER_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 //  Algorithme class for the clusterization   //
10 //  interface class                           //
11 //  Version SUBATECH                          //
12 //  Author Yves Schutz     SUBATECH           //
13 //                                            //  
14 //   pABC                                     //
15 ////////////////////////////////////////////////
16
17 // --- ROOT system ---
18
19 #include "TObject.h" 
20 #include "TClonesArray.h"
21
22 // --- Standard library ---
23
24 // --- AliRoot header files ---
25
26
27 typedef TClonesArray    RecPointsList ; // a cluster has a variable size (see ROOT FAQ)  
28 typedef TClonesArray    DigitsList ; //for digits saved on disk
29
30 class AliPHOSClusterizer : public TObject {
31
32 public:
33
34   AliPHOSClusterizer() ;          // ctor            
35   virtual ~AliPHOSClusterizer() ; // dtor
36
37   virtual Float_t Calibrate(Int_t Amp) = 0 ; 
38   virtual void  GetNumberOfClustersFound(Int_t * numb) = 0 ; 
39   virtual void  MakeClusters(const DigitsList * dl, RecPointsList * emccl, RecPointsList * ppsdl) = 0 ; 
40   virtual void PrintParameters() = 0 ;  
41   virtual void SetCalibrationParameters(Float_t A, Float_t B) = 0 ; 
42   virtual void SetEmcClusteringThreshold(Float_t cluth) = 0 ; 
43   virtual void SetEmcEnergyThreshold(Float_t enth) = 0 ;  
44   virtual void SetLocalMaxCut(Float_t cut) = 0 ; 
45   virtual void SetLogWeightCut(Float_t w) = 0 ; 
46   virtual void SetPpsdClusteringThreshold(Float_t cluth) = 0 ; 
47   virtual void SetPpsdEnergyThreshold(Float_t enth) = 0 ; 
48  
49   ClassDef(AliPHOSClusterizer,1)  // clusterization interface, version 1
50
51 } ;
52
53 #endif // AliPHOSCLUSTERIZER_H