]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOSClusterizer.h
Use Riostream.h to resolve the std namespace (Alpha, HP)
[u/mrichter/AliRoot.git] / PHOS / AliPHOSClusterizer.h
index 0df3eee1e7ef6ba46eb0924b0dd9b4ea26dc659b..5cd8953610dc3f2cb3dabe17b85b58132cf09885 100644 (file)
@@ -6,56 +6,59 @@
 /* $Id$ */
 
 //_________________________________________________________________________
-//  Base class for the clusterization algorithm (pure abstract)
-//*-- Author: Yves Schutz (SUBATECH)
-
+//  Base class for the clusterization algorithm 
+//*-- Author: Yves Schutz (SUBATECH) & Dmitri Peressounko (SUBATECH & Kurchatov Institute)
 // --- ROOT system ---
 
-#include "TObject.h" 
-#include "TClonesArray.h"
+#include "TTask.h" 
 
 // --- Standard library ---
+#include <iostream.h> 
 
 // --- AliRoot header files ---
 
-#include "AliPHOSDigit.h"
-#include "AliPHOSRecPoint.h"
+//#include "AliPHOSDigit.h"
 
-class AliPHOSClusterizer : public TObject {
+class AliPHOSClusterizer : public TTask {
 
 public:
 
-  AliPHOSClusterizer() ;          // ctor            
+  AliPHOSClusterizer() ;        // default ctor
+  AliPHOSClusterizer(const char * headerFile, const char * name, const Bool_t toSplit) ;
   virtual ~AliPHOSClusterizer() ; // dtor
 
-  virtual Float_t Calibrate(Int_t Amp) = 0 ; 
-  virtual Bool_t IsInEmc(AliPHOSDigit * digit)= 0 ;   
-  virtual void    GetNumberOfClustersFound(Int_t * numb) = 0 ; 
-  virtual void    GetCalibrationParameters(Float_t & A, Float_t &B) = 0 ; 
-  virtual Float_t GetEmcClusteringThreshold() = 0 ; 
-  virtual Float_t GetEmcEnergyThreshold() = 0 ;  
-  virtual Float_t GetLocalMaxCut() = 0 ; 
-  virtual Float_t GetLogWeightCut() = 0 ; 
-  virtual Float_t GetLocalMaxCutCPV() = 0 ; 
-  virtual Float_t GetLogWeightCutCPV() = 0 ; 
-  virtual Float_t GetPpsdClusteringThreshold() = 0 ; 
-  virtual Float_t GetPpsdEnergyThreshold() = 0 ; 
-
-  virtual void MakeClusters(const DigitsList * dl, AliPHOSRecPoint::RecPointsList * emccl, AliPHOSRecPoint::RecPointsList * ppsdl) = 0 ; 
-  virtual void PrintParameters() = 0 ;  
-  virtual void SetCalibrationParameters(Float_t A, Float_t B) = 0 ; 
-  virtual void SetEmcClusteringThreshold(Float_t cluth) = 0 ; 
-  virtual void SetEmcEnergyThreshold(Float_t enth) = 0 ;  
-  virtual void SetLocalMaxCut(Float_t cut) = 0 ; 
-  virtual void SetLogWeightCut(Float_t w) = 0 ; 
-  virtual void SetLocalMaxCutCPV(Float_t cut) = 0 ; 
-  virtual void SetLogWeightCutCPV(Float_t w) = 0 ; 
-  virtual void SetPpsdClusteringThreshold(Float_t cluth) = 0 ; 
-  virtual void SetPpsdEnergyThreshold(Float_t enth) = 0 ; 
-  virtual void SetCpvClusteringThreshold(Float_t cluth) = 0 ; 
-  virtual void SetCpvEnergyThreshold(Float_t enth) = 0 ;  
-  ClassDef(AliPHOSClusterizer,1)  // Clusterization algorithm class (abstract base class)
+  virtual Float_t GetEmcClusteringThreshold()const {cout << "Not Defined" << endl ; return 0. ; }  
+  virtual Float_t GetEmcLocalMaxCut()const {cout << "Not Defined" << endl ; return 0. ; } 
+  virtual Float_t GetEmcLogWeight()const {cout << "Not Defined" << endl ; return 0. ; } 
+  virtual Float_t GetEmcTimeGate() const {cout << "Not Defined" << endl ; return 0. ; }  ;
+  virtual Float_t GetCpvClusteringThreshold()const {cout << "Not Defined" << endl ; return 0. ; } 
+  virtual Float_t GetCpvLocalMaxCut()const {cout << "Not Defined" << endl ; return 0. ; } 
+  virtual Float_t GetCpvLogWeight()const {cout << "Not Defined" << endl ; return 0. ; } 
+  virtual const char *  GetRecPointsBranch() const {cout << "Not Defined" << endl ; return 0 ; }  ;
+  virtual const Int_t GetRecPointsInRun()  const {cout << "Not Defined" << endl ; return 0 ; } 
+  virtual const char *  GetDigitsBranch() const{cout << "Not Defined" << endl ; return 0 ; }   ;
+
+  virtual void MakeClusters() {cout << "Not Defined" << endl ; } 
+  virtual void Print(Option_t * option)const {cout << "Not Defined" << endl ; } 
+
+  virtual void SetEmcClusteringThreshold(Float_t cluth) {cout << "Not Defined" << endl ; } 
+  virtual void SetEmcLocalMaxCut(Float_t cut) {cout << "Not Defined" << endl ; } 
+  virtual void SetEmcLogWeight(Float_t w) {cout << "Not Defined" << endl ; } 
+  virtual void SetEmcTimeGate(Float_t gate) {cout << "Not Defined" << endl ; } 
+  virtual void SetCpvClusteringThreshold(Float_t cluth) {cout << "Not Defined" << endl ; } 
+  virtual void SetCpvLocalMaxCut(Float_t cut) {cout << "Not Defined" << endl ; } 
+  virtual void SetCpvLogWeight(Float_t w) {cout << "Not Defined" << endl ;  } 
+  virtual void SetDigitsBranch(const char * title) {cout << "Not Defined" << endl ; }  
+  virtual void SetRecPointsBranch(const char *title) {cout << "Not Defined" << endl ; } 
+  virtual void SetUnfolding(Bool_t toUnfold ){cout << "Not Defined" << endl ;}  
+  virtual const char * Version() const {cout << "Not Defined" << endl ; return 0 ; }  
+
+protected:
+
+  TFile * fSplitFile ;             //! file in which RecPoints will eventually be stored
+  Bool_t  fToSplit ;               //! Should we write to splitted file
+
+  ClassDef(AliPHOSClusterizer,2)  // Clusterization algorithm class 
 
 } ;