]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALReconstructor.h
Obsolete material removed.
[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 ;
a68156e6 23class AliRawReaderFile ;
f6019cda 24
25// --- Standard library ---
26
27// --- AliRoot header files ---
28
29class AliEMCALReconstructor : public AliReconstructor {
30
31public:
32
33 AliEMCALReconstructor() ; //ctor
34 AliEMCALReconstructor(const AliEMCALReconstructor & rec) : AliReconstructor(rec) {
35 // cpy ctor:
36 // requested by the Coding Convention
37 Fatal("cpy ctor", "not implemented") ;
38 }
39
40 virtual ~AliEMCALReconstructor() ; //dtor
41
42 Bool_t Debug() const { return fDebug ; }
43 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const ;
44 virtual void Reconstruct(AliRunLoader* runLoader) const ;
a68156e6 45 virtual void Reconstruct(AliRunLoader* runLoader, AliRawReaderFile * rawreader) const ;
46
f6019cda 47
48 AliEMCALReconstructor & operator = (const AliEMCALReconstructor & /*rvalue*/) {
49 // assignement operator requested by coding convention but not needed
50 Fatal("operator =", "not implemented") ;
51 return *this ;
52 }
53
54
55private:
56
57 Bool_t fDebug; //! verbosity controller
58
59 ClassDef(AliEMCALReconstructor,1) // Reconstruction algorithm class (Base Class)
60
61};
62
63#endif // ALIEMCALRECONSTRUCTOR_H