3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
8 //_________________________________________________________________________
11 //*-- Author: Laurent Aphecetche & Yves Schutz (SUBATECH)
13 // --- ROOT system ---
16 // --- AliRoot header files ---
18 #include "AliDetector.h"
19 #include "AliPHOSGeometry.h"
20 #include "AliRecPoint.h"
21 #include "AliPHOSTrackSegment.h"
22 #include "AliPHOSRecParticle.h"
24 class AliPHOS : public AliDetector {
28 AliPHOS(const char* name, const char* title): AliDetector(name,title) {}
29 AliPHOS() : AliDetector() {
34 virtual void CreateMaterials() ; // defines the material of the detector
35 virtual AliPHOSRecPoint::RecPointsList * EmcRecPoints() {
36 // Getting list of RecPoints
37 return fEmcRecPoints ;
39 virtual AliPHOSGeometry * GetGeometry() = 0 ;
40 virtual AliPHOSRecPoint::RecPointsList * PpsdRecPoints()=0;// gets Array of clusters in the PPSD
41 virtual void SetTreeAddress(); // Tree Address for reconstruction lists
42 virtual AliPHOSRecParticle::RecParticlesList * RecParticles() {
43 // Getting list of RecParticles
44 return fRecParticles ;
46 virtual AliPHOSTrackSegment::TrackSegmentsList * TrackSegments() {
47 // Getting list of TrackSegments
48 return fTrackSegments ;
50 virtual TString Version() {return TString(" ") ; }
55 AliPHOSRecPoint::RecPointsList * fEmcRecPoints ; // The RecPoints (clusters) list in EMC
56 AliPHOSTrackSegment::TrackSegmentsList * fTrackSegments ;// The TrackSegment list in PHOS
57 AliPHOSRecParticle::RecParticlesList * fRecParticles ; // The reconstructed particles list in PHOS
60 ClassDef(AliPHOS,2) // Photon Spectrometer Detector (base class)