From 7c67e40643d0f170cd50bf2d5ea77e2c60804c0b Mon Sep 17 00:00:00 2001 From: martinez Date: Mon, 29 May 2000 17:05:16 +0000 Subject: [PATCH] Adding a SetTreeAddress in AliPHOS and AliPHOSv0 classes for the re-analysis of the reconstructed objects --- PHOS/AliPHOS.h | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/PHOS/AliPHOS.h b/PHOS/AliPHOS.h index 2b17d8fc306..8c5a8b947dd 100644 --- a/PHOS/AliPHOS.h +++ b/PHOS/AliPHOS.h @@ -31,15 +31,24 @@ class AliPHOS : public AliDetector { } virtual ~AliPHOS() ; - virtual void CreateMaterials() ; // defines the material of the detector - virtual AliPHOSGeometry * GetGeometry() = 0 ; - AliPHOSRecPoint::RecPointsList* EmcRecPoints(Int_t evt=0) ; // gets Array of cluster in the crystals - AliPHOSRecParticle::RecParticlesList* RecParticles(Int_t evt = 0) ; // gets Array of reconstructed particles - AliPHOSTrackSegment::TrackSegmentsList* TrackSegments(Int_t evt=0) ;// gets Array of track segments - virtual AliPHOSRecPoint::RecPointsList* PpsdRecPoints(Int_t evt=0)=0;// gets Array of clusters in the PPSD - virtual TString Version() { - // gives the version number (void for the base class) - return TString(" ") ; } + virtual void CreateMaterials() ; // defines the material of the detector + virtual RecPointsList * EmcRecPoints() { + // Getting list of RecPoints + return fEmcRecPoints ; + } + virtual AliPHOSGeometry * GetGeometry() = 0 ; + virtual RecPointsList * PpsdRecPoints()=0;// gets Array of clusters in the PPSD + virtual void SetTreeAddress(); // Tree Address for reconstruction lists + virtual RecParticlesList * RecParticles() { + // Getting list of RecParticles + return fRecParticles ; + } + virtual TrackSegmentsList * TrackSegments() { + // Getting list of TrackSegments + return fTrackSegments ; + } + virtual TString Version() {return TString(" ") ; } + protected: -- 2.39.3