]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EMCAL/AliEMCALReconstructor.h
added loading libTestShuttle.so
[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
0a4cb131 33 AliEMCALReconstructor(const AliEMCALReconstructor & rec);
f6019cda 34
35 virtual ~AliEMCALReconstructor() ; //dtor
36
4800667c 37 Bool_t Debug() const { return fDebug ; }
38
39 using AliReconstructor::FillESD;
40 virtual void FillESD(AliRunLoader* runLoader, AliESD* esd) const ;
41
42 using AliReconstructor::Reconstruct;
43 virtual void Reconstruct(AliRunLoader* runLoader) const ;
44 virtual void Reconstruct(AliRunLoader* runLoader, AliRawReader* rawreader) const ;
a68156e6 45
f6019cda 46
47 AliEMCALReconstructor & operator = (const AliEMCALReconstructor & /*rvalue*/) {
48 // assignement operator requested by coding convention but not needed
49 Fatal("operator =", "not implemented") ;
50 return *this ;
51 }
52
53
54private:
55
56 Bool_t fDebug; //! verbosity controller
57
58 ClassDef(AliEMCALReconstructor,1) // Reconstruction algorithm class (Base Class)
59
60};
61
62#endif // ALIEMCALRECONSTRUCTOR_H