]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALReconstructor.h
Restoring the original CDB files
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALReconstructor.h
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" 
18 class AliEMCALDigitizer ;
19 class AliEMCALClusterizer ;
20 class AliEMCALSDigitizer ;
21 class AliESD ;
22 class AliRawReader ;
23
24 // --- Standard library ---
25
26 // --- AliRoot header files ---
27
28 class AliEMCALReconstructor : public AliReconstructor {
29
30 public:
31
32   AliEMCALReconstructor() ; //ctor            
33   AliEMCALReconstructor(const AliEMCALReconstructor & rec);
34    
35   virtual ~AliEMCALReconstructor() ; //dtor
36
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 ;
45   
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
54 private:
55   
56   Bool_t fDebug; //! verbosity controller
57  
58   ClassDef(AliEMCALReconstructor,1)  // Reconstruction algorithm class (Base Class)
59
60 }; 
61
62 #endif // ALIEMCALRECONSTRUCTOR_H