]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSClusterizer.h
New ALIPHOSv1: includes the light transport in the Xtal
[u/mrichter/AliRoot.git] / PHOS / AliPHOSClusterizer.h
CommitLineData
d15a28e7 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 */
6ad0bfa0 5
6/* $Id$ */
d15a28e7 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
27typedef TClonesArray RecPointsList ; // a cluster has a variable size (see ROOT FAQ)
28typedef TClonesArray DigitsList ; //for digits saved on disk
29
30class AliPHOSClusterizer : public TObject {
31
32public:
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 ;
6ad0bfa0 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
d15a28e7 49 ClassDef(AliPHOSClusterizer,1) // clusterization interface, version 1
50
51} ;
52
53#endif // AliPHOSCLUSTERIZER_H