]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - EMCAL/AliEMCAL.h
switch on special cuts process
[u/mrichter/AliRoot.git] / EMCAL / AliEMCAL.h
index 467938d7345242da09f3ebbcb676b10e964d9ceb..670c5f5ff72c5e4ea36da13f6ef0a0f3eb60f9bc 100644 (file)
 //                  
 //*-- Author: Yves Schutz (SUBATECH)
 
-#include <assert.h>
+#include <stdlib.h>
 
 // --- ROOT system ---
+
 class TString ;
-class TClonesArray ;
+class TTask ;
+class TFolder ;
 
 // --- AliRoot header files ---
-#include <stdlib.h>
+
 #include "AliDetector.h"
-#include "AliEMCALGeometry.h"
 class AliEMCALGeometry ; 
+//class AliEMCALQAChecker ;
 
 class AliEMCAL : public AliDetector {
 
@@ -31,34 +33,39 @@ class AliEMCAL : public AliDetector {
   AliEMCAL(const AliEMCAL & emcal) {
     // cpy ctor: no implementation yet
     // requested by the Coding Convention
-    abort() ; 
+    Fatal("cpy ctor", "not implemented") ;  
   }
   virtual ~AliEMCAL() ; 
   virtual void   AddHit(Int_t, Int_t*, Float_t *) {
     // do not use this definition but the one below
-    abort() ;
+    Fatal("AddHit(Int_t, Int_t*, Float_t *", 
+         "not to be used: use AddHit( Int_t shunt, Int_t primary, Int_t track,Int_t id, Float_t *hits )") ;  
+
   }
-  virtual void   AddHit( Int_t shunt, Int_t primary, Int_t track, 
+  virtual void  AddHit( Int_t shunt, Int_t primary, Int_t track, 
                         Int_t id, Float_t *hits ) = 0 ;
-
-
-  virtual void   CreateMaterials() ;                     
-  //virtual AliEMCALGeometry * GetGeometry()  = 0 ;   
-  Int_t   IsVersion(void) const { return -1 ; } 
-  virtual void  SetTreeAddress() ;               
-  virtual TString Version() {return TString(" ") ; }  
+  virtual void  CreateMaterials() ;   
+  virtual void  FinishRun() {WriteQA();}                  
+  virtual AliEMCALGeometry * GetGeometry() const ;   
+  virtual Int_t   IsVersion(void) const = 0 ; 
+  //AliEMCALQAChecker * QAChecker() const {return fQATask;}  
+  virtual void  SetTreeAddress() ;
+  virtual TTree * TreeQA() const {return fTreeQA; }                
+  virtual const TString Version() const {return TString(" ") ; }  
+  virtual void WriteQA() ; 
   AliEMCAL & operator = (const AliEMCAL & rvalue)  {
     // assignement operator requested by coding convention
     // but not needed
-    abort() ;
+    Fatal("operator =", "not implemented") ;  
     return *this ; 
   }
  
 protected:
 
-  AliEMCALGeometry * fGeom ;                       // Geometry definition
+  //AliEMCALQAChecker * fQATask ; //! PHOS checkers container
+  TTree * fTreeQA ;            // the QA tree that contains the alarms
 
-  ClassDef(AliEMCAL,1) // Electromagnetic calorimeter (base class)
+  ClassDef(AliEMCAL,2) // Electromagnetic calorimeter (base class)
 
 } ;