]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSReconstructor.h
renamed CorrectionMatrix class
[u/mrichter/AliRoot.git] / PHOS / AliPHOSReconstructor.h
index f5b195ba1ed57e4d21250d47749211a5dd600e91..f1bef35d1bc49bcdb1f48f557492014ecf969de4 100644 (file)
@@ -5,6 +5,11 @@
 
 /* $Id$ */
 
+/* History of cvs commits:
+ *
+ * $Log$
+ */
+
 //_________________________________________________________________________
 //  Wrapping class for reconstruction
 //*--
@@ -22,6 +27,7 @@ class AliPHOSTrackSegmentMaker ;
 class AliPHOSPID ;
 class AliPHOSSDigitizer ;
 class AliESD ;
+class AliRawReaderFile ; 
 
 // --- Standard library ---
 
@@ -37,12 +43,16 @@ public:
     // requested by the Coding Convention
     Fatal("cpy ctor", "not implemented") ;
   }
-   
-  virtual ~AliPHOSReconstructor() {} ;
-
-  Bool_t                     Debug() const { return fDebug ; }
+  ~AliPHOSReconstructor() ; //dtor            
+  static void                SetDebug()   { fgDebug = kTRUE ; }
+  static void                ResetDebug() { fgDebug = kFALSE ; }
+  static Bool_t              Debug() { return fgDebug ; }
+  AliTracker *CreateTracker(AliRunLoader* runLoader) const;
+  using AliReconstructor::FillESD;
   virtual void               FillESD(AliRunLoader* runLoader, AliESD* esd) const ;
+  using AliReconstructor::Reconstruct;
   virtual void               Reconstruct(AliRunLoader* runLoader) const ;
+  virtual void               Reconstruct(AliRunLoader* runLoader, AliRawReader * rawreader) const ;
 
   AliPHOSReconstructor & operator = (const AliPHOSReconstructor & /*rvalue*/)  {
     // assignement operator requested by coding convention but not needed
@@ -52,7 +62,7 @@ public:
   
 private:
   
-  Bool_t fDebug; //! verbosity controller
+  static Bool_t fgDebug ; //! verbosity controller
 
   ClassDef(AliPHOSReconstructor,2)  // Reconstruction algorithm class (Base Class)