]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALReconstructor.h
Update rawdata format for trigger (Christian)
[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 ;
f6019cda 20class AliEMCALSDigitizer ;
21class AliESD ;
1d59832c 22class AliRawReader ;
f6019cda 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
4800667c 41 Bool_t Debug() const { return fDebug ; }
42
43 using AliReconstructor::FillESD;
44 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const ;
45
46 using AliReconstructor::Reconstruct;
47 virtual void Reconstruct(AliRunLoader* runLoader) const ;
48 virtual void Reconstruct(AliRunLoader* runLoader, AliRawReader* rawreader) const ;
a68156e6 49
f6019cda 50
51 AliEMCALReconstructor & operator = (const AliEMCALReconstructor & /*rvalue*/) {
52 // assignement operator requested by coding convention but not needed
53 Fatal("operator =", "not implemented") ;
54 return *this ;
55 }
56
57
58private:
59
60 Bool_t fDebug; //! verbosity controller
61
62 ClassDef(AliEMCALReconstructor,1) // Reconstruction algorithm class (Base Class)
63
64};
65
66#endif // ALIEMCALRECONSTRUCTOR_H