]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSReconstructor.h
Added debug methods
[u/mrichter/AliRoot.git] / PHOS / AliPHOSReconstructor.h
1 #ifndef ALIPHOSRECONSTRUCTOR_H
2 #define ALIPHOSRECONSTRUCTOR_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 // Reconstruction class. Redesigned from the old AliReconstructionner class and 
13 // derived from STEER/AliReconstructor. 
14 //_________________________________________________________________________
15
16 // --- ROOT system ---
17
18 #include "AliReconstructor.h" 
19 class AliPHOSDigitizer ;
20 class AliPHOSClusterizer ;
21 class AliPHOSTrackSegmentMaker ;
22 class AliPHOSPID ;
23 class AliPHOSSDigitizer ;
24 class AliESD ;
25
26 // --- Standard library ---
27
28 // --- AliRoot header files ---
29
30 class AliPHOSReconstructor : public AliReconstructor {
31
32 public:
33
34   AliPHOSReconstructor() ; //ctor            
35   AliPHOSReconstructor(const AliPHOSReconstructor & rec) : AliReconstructor(rec) {
36     // cpy ctor: 
37     // requested by the Coding Convention
38     Fatal("cpy ctor", "not implemented") ;
39   }
40   ~AliPHOSReconstructor() ; //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
46   AliPHOSReconstructor & operator = (const AliPHOSReconstructor & /*rvalue*/)  {
47     // assignement operator requested by coding convention but not needed
48     Fatal("operator =", "not implemented") ;
49     return *this ; 
50   }
51   
52 private:
53   
54   Bool_t fDebug; //! verbosity controller
55
56   ClassDef(AliPHOSReconstructor,2)  // Reconstruction algorithm class (Base Class)
57
58 }; 
59
60 #endif // ALIPHOSRECONSTRUCTOR_H