]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOS.h
Include AliDecayer.h instead of GenTypeDefs.h
[u/mrichter/AliRoot.git] / PHOS / AliPHOS.h
1 #ifndef ALIPHOS_H
2 #define ALIPHOS_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice     */
5
6 /* $Id$ */
7
8 //_________________________________________________________________________
9 //  Base Class for PHOS     
10 //                  
11 //*-- Author: Laurent Aphecetche & Yves Schutz (SUBATECH)
12
13 // --- ROOT system ---
14 #include "TString.h"
15
16 // --- AliRoot header files ---
17
18 #include "AliDetector.h"
19 #include "AliPHOSGeometry.h" 
20 #include "AliRecPoint.h"
21 #include "AliPHOSTrackSegment.h"
22 #include "AliPHOSRecParticle.h"
23
24 class AliPHOS : public AliDetector {
25
26  public:
27
28   AliPHOS() ;
29   AliPHOS(const char* name, const char* title="");
30   AliPHOS(const AliPHOS & phos) {
31     // cpy ctor: no implementation yet
32     // requested by the Coding Convention
33     assert(0==1) ; 
34   }
35   virtual ~AliPHOS() ; 
36   virtual void   AddHit(Int_t, Int_t*, Float_t *) {
37     // do not used this definition but the one below
38     assert(0==1) ; 
39   }
40   virtual void   AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t id, Float_t *hits ) = 0 ;   
41   virtual void   CreateMaterials() ;                     
42   AliPHOSRecPoint::RecPointsList *  EmcRecPoints() const {
43     // Getting list of RecPoints
44     return fEmcRecPoints ;
45   }
46   virtual  AliPHOSGeometry * GetGeometry() = 0 ;
47
48   Int_t   IsVersion(void) const { return -1 ; } 
49   AliPHOSRecPoint::RecPointsList * PpsdRecPoints() const {
50     // to be redefined when ppsd is present
51     return  fPpsdRecPoints ;
52   } 
53   virtual void  SetTreeAddress();                
54   AliPHOSRecParticle::RecParticlesList *  RecParticles() const {
55     // Getting list of RecParticles
56     return fRecParticles ;
57   }
58   TClonesArray *SDigits() const {return fSDigits;}
59
60   AliPHOSTrackSegment::TrackSegmentsList *  TrackSegments() const {
61     // Getting list of TrackSegments
62     return fTrackSegments ;
63   }
64   virtual TString Version() {return TString(" ") ; } 
65  
66   AliPHOS & operator = (const AliPHOS & rvalue)  {
67     // assignement operator requested by coding convention
68     // but not needed
69     assert(0==1) ;
70     return *this ; 
71   }
72  
73 protected:
74   TClonesArray                           *fSDigits      ; // List of summable digits
75   AliPHOSRecPoint::RecPointsList         *fEmcRecPoints ; // The RecPoints (clusters) list in EMC 
76   AliPHOSRecPoint::RecPointsList         *fPpsdRecPoints ;// The RecPoints (clusters) list in PPSD (veto)
77   AliPHOSTrackSegment::TrackSegmentsList *fTrackSegments ;// The TrackSegment list in PHOS
78   AliPHOSRecParticle::RecParticlesList   *fRecParticles ; // The reconstructed particles list in PHOS
79
80   ClassDef(AliPHOS,2) // Photon Spectrometer Detector (base class)
81
82 } ;
83
84 #endif // ALIPHOS_H