]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALReconstructor.h
Introducing the raw data format
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALReconstructor.h
CommitLineData
f6019cda 1#ifndef ALIEMCALRECONSTRUCTOR_H
2#define ALIEMCALRECONSTRUCTOR_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// Wrapping class for reconstruction
10//*--
11//*-- Author: Yves Schutz (SUBATECH)
12//*-- Dmitri Peressounko (SUBATECH & Kurchatov Institute)
13
14
15// --- ROOT system ---
16
17#include "AliReconstructor.h"
18class AliEMCALDigitizer ;
19class AliEMCALClusterizer ;
20class AliEMCALPID ;
21class AliEMCALSDigitizer ;
22class AliESD ;
23
24// --- Standard library ---
25
26// --- AliRoot header files ---
27
28class AliEMCALReconstructor : public AliReconstructor {
29
30public:
31
32 AliEMCALReconstructor() ; //ctor
33 AliEMCALReconstructor(const AliEMCALReconstructor & rec) : AliReconstructor(rec) {
34 // cpy ctor:
35 // requested by the Coding Convention
36 Fatal("cpy ctor", "not implemented") ;
37 }
38
39 virtual ~AliEMCALReconstructor() ; //dtor
40
41 Bool_t Debug() const { return fDebug ; }
42 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const ;
43 virtual void Reconstruct(AliRunLoader* runLoader) const ;
44
45
46 AliEMCALReconstructor & operator = (const AliEMCALReconstructor & /*rvalue*/) {
47 // assignement operator requested by coding convention but not needed
48 Fatal("operator =", "not implemented") ;
49 return *this ;
50 }
51
52
53private:
54
55 Bool_t fDebug; //! verbosity controller
56
57 ClassDef(AliEMCALReconstructor,1) // Reconstruction algorithm class (Base Class)
58
59};
60
61#endif // ALIEMCALRECONSTRUCTOR_H