]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSReconstructioner.h
more debug output and bugfix for sub event number
[u/mrichter/AliRoot.git] / PHOS / AliPHOSReconstructioner.h
index 40c311893c123e28e86c90fbeca91118a6e0c3fb..5de72d17cac81838e3959457bacb70165b0b6d59 100644 (file)
@@ -11,7 +11,7 @@
 //*-- Author: Gines Martinez & Yves Schutz (SUBATECH) 
 //*--         Dmitri Peressounko (SUBATECH & Kurchatov Institute)
 
-#include <stdlib.h>
+  //#include <stdlib.h>
 
 // --- ROOT system ---
 
@@ -31,16 +31,16 @@ class AliPHOSReconstructioner : public TTask {
 public:
 
   AliPHOSReconstructioner() ; //ctor            
-  AliPHOSReconstructioner(const char * headreFile, const char * branchName = "Default",Bool_t toSplit = kFALSE) ;
-  AliPHOSReconstructioner(const AliPHOSReconstructioner & rec) {
+  AliPHOSReconstructioner(const char * headreFile, const char * branchName = "Default");
+  AliPHOSReconstructioner(const AliPHOSReconstructioner & rec) : TTask(rec) {
     // cpy ctor: 
     // requested by the Coding Convention
-    abort() ; 
+    Fatal("cpy ctor", "not implemented") ;
   }
    
   virtual ~AliPHOSReconstructioner() ;
 
-  virtual void Exec(Option_t * option) ;
+  virtual void Exec(Option_t) ;
 
   AliPHOSDigitizer         * GetDigitizer()  const { return fDigitizer   ; }
   AliPHOSClusterizer       * GetClusterizer()const { return fClusterizer ; }
@@ -48,7 +48,7 @@ public:
   AliPHOSTrackSegmentMaker * GetTSMaker()    const { return fTSMaker ;     }
   AliPHOSSDigitizer        * GetSDigitizer() const { return fSDigitizer  ; }
 
-  void Print(Option_t * option)const ;
+  void Print()const ;
   
   //  void SetBranchTitle(const char* branch,const char * title) ;
   //            // Sets the branch titles to separate different reconstruction flows 
@@ -57,9 +57,9 @@ public:
   //            // From wich step reconstruction begins, 
   //            // title to be set to all reconstructed branches
 
-  AliPHOSReconstructioner & operator = (const AliPHOSReconstructioner & rvalue)  {
+  AliPHOSReconstructioner & operator = (const AliPHOSReconstructioner & /*rvalue*/)  {
     // assignement operator requested by coding convention but not needed
-    abort() ;
+    Fatal("operator =", "not implementeyd") ;
     return *this ; 
   }
   
@@ -69,8 +69,6 @@ private:
 
 private:
   
-  Bool_t   fToSplit ; 
-  TString  fHeaderFileName ;    // File with headers and gAlice
   TString  fDigitsBranch ;      // Title of digits branch
   TString  fRecPointBranch ;    // Title of RecPoints branch   
   TString  fTSBranch  ;         // Title of TrackSegments branch