]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSReconstructioner.h
new design: derived from TTask
[u/mrichter/AliRoot.git] / PHOS / AliPHOSReconstructioner.h
index 217687a6a524ea6db26be51f6840b9225c0cf905..ddb6cd38ddbc20f43d0a8fd35dd2830614099b76 100644 (file)
@@ -6,45 +6,81 @@
 /* $Id$ */
 
 //_________________________________________________________________________
-//  Algorithm class for the reconstruction: clusterizer
-//                                          track segment maker
-//                                          particle identifier   
-//                  
-//*-- Author: Gines Martinez & Yves Schutz (SUBATECH)
+//  Supervising class for reconstruction
+//*--
+//*-- Author: Gines Martinez & Yves Schutz (SUBATECH) 
+//*--         Dmitri Peressounko (SUBATECH & Kurchatov Institute)
 
 // --- ROOT system ---
 
-#include "TObject.h"
-#include "AliPHOSClusterizer.h"
-#include "AliPHOSTrackSegmentMaker.h"
-#include "AliPHOSPID.h"
-#include "TClonesArray.h" 
+#include "TTask.h"
+class AliPHOSDigitizer ;
+class AliPHOSClusterizer ;
+class AliPHOSTrackSegmentMaker ;
+class AliPHOSPID ;
+class AliPHOSSDigitizer ;
 
 // --- Standard library ---
 
 // --- AliRoot header files ---
 
-class AliPHOSReconstructioner : public TObject {
+class AliPHOSReconstructioner : public TTask {
 
 public:
 
-  AliPHOSReconstructioner(){} //ctor            
-  AliPHOSReconstructioner(AliPHOSClusterizer * Clusterizer, AliPHOSTrackSegmentMaker * Tracker, 
-                         AliPHOSPID * Identifier); //ctor            
-  ~AliPHOSReconstructioner(){} // dtor
+  AliPHOSReconstructioner() ; //ctor            
+  AliPHOSReconstructioner(const char * headreFile) ;
+  AliPHOSReconstructioner(const AliPHOSReconstructioner & rec) {
+    // cpy ctor: 
+    // requested by the Coding Convention
+    abort() ; 
+  }
+   
+  virtual ~AliPHOSReconstructioner() ;
 
-  AliPHOSClusterizer * GetClusterizer() { return fClusterizer ; }
-  void Init(AliPHOSClusterizer * Clusterizer, AliPHOSTrackSegmentMaker * Tracker, 
-                         AliPHOSPID * Identifier) ;  
-  void Make(TClonesArray * DL, RecPointsList * emccl, RecPointsList * ppsdl, 
-           TrackSegmentsList * trsl, RecParticlesList * rpl) ; // does the job
+  virtual void Exec(Option_t * option) ;
 
+  AliPHOSDigitizer         * GetDigitizer()  { return fDigitizer   ; }
+  AliPHOSClusterizer       * GetClusterizer(){ return fClusterizer ; }
+  AliPHOSPID               * GetPID()        { return fPID;          }
+  AliPHOSTrackSegmentMaker * GetTSMaker()    { return fTSMaker ;     }
+  AliPHOSSDigitizer        * GetSDigitizer() { return fSDigitizer  ; }
+
+  void Print(Option_t * option)const ;
+  
+  void SetBranchTitle(const char* branch,const char * title) ;
+            // Sets files, to which branch will be written 
+
+  void StartFrom(Option_t * option = "AliPHOSSDigitizer") ;
+            // From wich step reconstruction begins
+
+  AliPHOSReconstructioner & operator = (const AliPHOSReconstructioner & rvalue)  {
+    // assignement operator requested by coding convention but not needed
+    abort() ;
+    return *this ; 
+  }
+  
+
+private:
+  void Init() ;  
 
 private:
   
-  AliPHOSClusterizer * fClusterizer ;             // Method for clusterization 
-  AliPHOSTrackSegmentMaker * fTrackSegmentMaker ; // Method for track segments finding
-  AliPHOSPID * fPID ;                             // Method for identifying the type of particle
+  TString  fHeaderFileName ;    // File with headers and gAlice
+  TString  fDigitsBranch ;      // Title of digits branch
+  TString  fRecPointBranch ;    // -"-      RecPoints     -"-
+  TString  fTSBranch  ;         // -"-      TrackSegments -"-
+  TString  fRecPartBranch ;     // -"-      RecParticles  -"-
+  TString  fSDigitsBranch ;     // -"-      SDigits       -"-
+
+
+  AliPHOSDigitizer         * fDigitizer ;
+  AliPHOSClusterizer       * fClusterizer ;
+  AliPHOSPID               * fPID ;
+  AliPHOSTrackSegmentMaker * fTSMaker ;
+  AliPHOSSDigitizer        * fSDigitizer ;
+
+  Bool_t   fIsInitialized ;
  
   ClassDef(AliPHOSReconstructioner,1)  // Reconstruction algorithm class (Base Class)