#ifndef ALIPHOSRECPARTICLE_H #define ALIPHOSRECPARTICLE_H /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * See cxx source for full Copyright notice */ /* $Id$ */ //_________________________________________________________________________ // A Reconstructed Particle in PHOS // To become a general class of AliRoot ? // why not //*-- Author: Yves Schutz (SUBATECH) // --- ROOT system --- // --- Standard library --- // --- AliRoot header files --- #include "AliPHOSFastRecParticle.h" class AliPHOSRecParticle : public AliPHOSFastRecParticle { public: AliPHOSRecParticle() { } AliPHOSRecParticle(const AliPHOSRecParticle & rp) ; // ctor virtual ~AliPHOSRecParticle(){ } Int_t GetPHOSTSIndex()const { return fPHOSTrackSegment ; } void SetTraskSegment(Int_t index){fPHOSTrackSegment = index; } typedef TClonesArray RecParticlesList ; private: Int_t fPHOSTrackSegment ; // pointer to the associated track segment in PHOS ClassDef(AliPHOSRecParticle,1) // Reconstructed Particle }; #endif // AliPHOSRECPARTICLE_H