]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALClusterizer.h
Minor changes to check for NOLOGGING env str
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALClusterizer.h
CommitLineData
483b0559 1#ifndef ALIEMCALCLUSTERIZER_H
2#define ALIEMCALCLUSTERIZER_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// Base class for the clusterization algorithm (pure abstract)
10//*-- Author: Yves Schutz (SUBATECH) & Dmitri Peressounko (SUBATECH & Kurchatov Institute)
11// --- ROOT system ---
12
13#include "TTask.h"
14
15// --- Standard library ---
16
17// --- AliRoot header files ---
18
19//#include "AliEMCALDigit.h"
20
21class AliEMCALClusterizer : public TTask {
22
23public:
24
25 AliEMCALClusterizer() ; // default ctor
26 AliEMCALClusterizer(const char * headerFile, const char * name) ;
27 virtual ~AliEMCALClusterizer() ; // dtor
28
29 virtual Float_t GetEmcClusteringThreshold()const = 0 ;
30 virtual Float_t GetEmcLocalMaxCut()const = 0 ;
31 virtual Float_t GetEmcLogWeight()const = 0 ;
32 virtual Float_t GetTimeGate() const = 0 ;
33 virtual Float_t GetCpvClusteringThreshold()const = 0 ;
34 virtual Float_t GetCpvLocalMaxCut()const = 0 ;
35 virtual Float_t GetCpvLogWeight()const = 0 ;
36 virtual char * GetRecPointsBranch() const = 0 ;
37 virtual const Int_t GetRecPointsInRun() const = 0 ;
38 virtual char * GetDigitsBranch() const = 0 ;
39
40 virtual void MakeClusters() = 0 ;
41 virtual void Print(Option_t * option)const = 0;
42
43 virtual void SetTowerClusteringThreshold(Float_t cluth) = 0 ;
44 virtual void SetTowerLocalMaxCut(Float_t cut) = 0 ;
45 virtual void SetTowerLogWeight(Float_t w) = 0 ;
46 virtual void SetTimeGate(Float_t gate) = 0 ;
47 virtual void SetPreShoClusteringThreshold(Float_t cluth) = 0 ;
48 virtual void SetPreShoLocalMaxCut(Float_t cut) = 0 ;
49 virtual void SetPreShoLogWeight(Float_t w) = 0 ;
50 virtual void SetDigitsBranch(const char * title) = 0 ;
51 virtual void SetRecPointsBranch(const char *title) = 0 ;
52 virtual void SetUnfolding(Bool_t toUnfold ) = 0 ;
53 virtual const char * Version() const = 0 ;
54
55 ClassDef(AliEMCALClusterizer,1) // Clusterization algorithm class
56
57} ;
58
59#endif // AliEMCALCLUSTERIZER_H