]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSReconstructor.h
Important comment added.
[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 class AliRawReaderFile ; 
26
27 // --- Standard library ---
28
29 // --- AliRoot header files ---
30
31 class AliPHOSReconstructor : public AliReconstructor {
32
33 public:
34
35   AliPHOSReconstructor() ; //ctor            
36   AliPHOSReconstructor(const AliPHOSReconstructor & rec) : AliReconstructor(rec) {
37     // cpy ctor: 
38     // requested by the Coding Convention
39     Fatal("cpy ctor", "not implemented") ;
40   }
41   ~AliPHOSReconstructor() ; //dtor            
42   static void                SetDebug()   { fgDebug = kTRUE ; }
43   static void                ResetDebug() { fgDebug = kFALSE ; }
44   static Bool_t              Debug() { return fgDebug ; }
45   virtual void               FillESD(AliRunLoader* runLoader, AliESD* esd) const ;
46   virtual void               Reconstruct(AliRunLoader* runLoader) const ;
47   virtual void               Reconstruct(AliRunLoader* runLoader, AliRawReaderFile * rawreader) const ;
48
49   AliPHOSReconstructor & operator = (const AliPHOSReconstructor & /*rvalue*/)  {
50     // assignement operator requested by coding convention but not needed
51     Fatal("operator =", "not implemented") ;
52     return *this ; 
53   }
54   
55 private:
56   
57   static Bool_t fgDebug ; //! verbosity controller
58
59   ClassDef(AliPHOSReconstructor,2)  // Reconstruction algorithm class (Base Class)
60
61 }; 
62
63 #endif // ALIPHOSRECONSTRUCTOR_H