]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALReconstructor.h
Moving lib*.pkg
[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 AliEMCALPID ;
21 class AliEMCALSDigitizer ;
22 class AliESD ;
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) : 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
53 private:
54   
55   Bool_t fDebug; //! verbosity controller
56  
57   ClassDef(AliEMCALReconstructor,1)  // Reconstruction algorithm class (Base Class)
58
59 }; 
60
61 #endif // ALIEMCALRECONSTRUCTOR_H