]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - PHOS/AliPHOS.h
coding convention
[u/mrichter/AliRoot.git] / PHOS / AliPHOS.h
index 25b53000dba9e9dafaff5ea29da799b3b682c2ee..f612c8d644a35587ec51ea0cb5a8ccf63325a812 100644 (file)
@@ -2,7 +2,6 @@
 #define ALIPHOS_H
 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
  * See cxx source for full Copyright notice     */
-
 /* $Id$ */
 
 //_________________________________________________________________________
 //                  
 //*-- Author: Laurent Aphecetche & Yves Schutz (SUBATECH)
 
+
 // --- ROOT system ---
+class TString ; 
+class TTask ;
+class TFolder ;
+class TTree ; 
 
 // --- AliRoot header files ---
-
-#include "AliDetector.h"
-#include "AliPHOSGeometry.h" 
-#include "AliRecPoint.h"
-#include "AliPHOSTrackSegment.h"
-#include "AliPHOSRecParticle.h"
+#include "AliDetector.h" 
+class AliPHOSGeometry ; 
+class AliPHOSQAChecker ;
 
 class AliPHOS : public AliDetector {
 
  public:
 
-  AliPHOS(const char* name, const char* title): AliDetector(name,title) {} 
-  AliPHOS() : AliDetector() {} 
+  AliPHOS() ;
+  AliPHOS(const char* name, const char* title="") ;  
+  AliPHOS(const AliPHOS & phos) : AliDetector(phos) {
+    // cpy ctor: no implementation yet
+    // requested by the Coding Convention
+    Fatal("cpy ctor", "not implemented") ;
+  }
   virtual ~AliPHOS() ; 
+  virtual void   AddHit(Int_t, Int_t*, Float_t *) {
+    // do not use this definition but the one below
+    Fatal("AddHit(Int_t, Int_t*, Float_t *)", "do not use") ;
+    
+  }
+  virtual void   AddHit( Int_t shunt, Int_t primary, Int_t track, 
+                        Int_t id, Float_t *hits ) = 0 ;   
+  virtual void   CreateMaterials() ;                     
+  virtual void  FinishRun() {WriteQA();}
+  virtual AliPHOSGeometry * GetGeometry() const ;
+  virtual Int_t   IsVersion(void) const = 0 ;  
+  AliPHOSQAChecker * QAChecker() {return fQATask;}  
+  virtual void    SetTreeAddress();   
+  virtual TTree * TreeQA() const {return fTreeQA; } 
+  virtual const TString Version() const {return TString(" ") ; } 
+  virtual void WriteQA() ; 
+  AliPHOS & operator = (const AliPHOS & /*rvalue*/)  {
+    Fatal("operator =", "not implemented") ; return *this ; }
+
+  virtual AliLoader* MakeLoader(const char* topfoldername);
  
-  virtual void CreateMaterials() ;               // defines the material of the detector
-  virtual AliPHOSGeometry * GetGeometry() = 0 ;  
-  RecPointsList* EmcRecPoints() {return fEmcClusters;}               // gets Array of cluster in the crystals 
-  RecParticlesList * RecParticles() { return fRecParticles ; }      // gets Array of reconstructed particles
-  TrackSegmentsList *    TrackSegments(){return fTrackSegments ;} // gets Array of track segments
-  virtual RecPointsList* PpsdRecPoints() = 0 ;        // gets Array of clusters in the PPSD 
-
- protected:
+protected:
   
-  RecPointsList * fEmcClusters ;                  // The RecPoints (clusters) list in EMC 
-  TrackSegmentsList * fTrackSegments ;            // The TrackSegment list in PHOS
-  RecParticlesList * fRecParticles ;              // The reconstructed particles list in PHOS
-
+  AliPHOSQAChecker * fQATask ; //! PHOS checkers container
+  TTree * fTreeQA ;            // the QA tree that contains the alarms
 
   ClassDef(AliPHOS,2) // Photon Spectrometer Detector (base class)