]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALReconstructor.h
Coding conventions (A.Pavlinov)
[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 AliRawReaderFile ; 
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
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 ;
49   
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
58 private:
59   
60   Bool_t fDebug; //! verbosity controller
61  
62   ClassDef(AliEMCALReconstructor,1)  // Reconstruction algorithm class (Base Class)
63
64 }; 
65
66 #endif // ALIEMCALRECONSTRUCTOR_H