]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALReconstructor.h
TRD1, 12 SM, 110 degree as default
[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 class AliRawReaderFile ; 
24
25 // --- Standard library ---
26
27 // --- AliRoot header files ---
28
29 class AliEMCALReconstructor : public AliReconstructor {
30
31 public:
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 ;
45   virtual void               Reconstruct(AliRunLoader* runLoader, AliRawReaderFile * rawreader) const ;
46   
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
55 private:
56   
57   Bool_t fDebug; //! verbosity controller
58  
59   ClassDef(AliEMCALReconstructor,1)  // Reconstruction algorithm class (Base Class)
60
61 }; 
62
63 #endif // ALIEMCALRECONSTRUCTOR_H