1 #ifndef ALIPHOSRECPARTICLE_H
2 #define ALIPHOSRECPARTICLE_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
8 //_________________________________________________________________________
9 // A Reconstructed Particle in PHOS
10 // To become a general class of AliRoot ?
12 //*-- Author: Yves Schutz (SUBATECH)
14 // --- ROOT system ---
16 // --- Standard library ---
18 // --- AliRoot header files ---
20 #include "AliPHOSFastRecParticle.h"
22 class AliPHOSRecParticle : public AliPHOSFastRecParticle {
26 AliPHOSRecParticle() { }
27 AliPHOSRecParticle(const AliPHOSRecParticle & rp) ; // ctor
28 virtual ~AliPHOSRecParticle(){ }
30 Int_t GetPHOSTSIndex()const { return fPHOSTrackSegment ; }
31 void SetTraskSegment(Int_t index){fPHOSTrackSegment = index; }
33 typedef TClonesArray RecParticlesList ;
37 Int_t fPHOSTrackSegment ; // pointer to the associated track segment in PHOS
39 ClassDef(AliPHOSRecParticle,1) // Reconstructed Particle
42 #endif // AliPHOSRECPARTICLE_H