#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 --- #include "TParticle.h" #include "TVector3.h" // --- Standard library --- // --- AliRoot header files --- #include "AliPHOSFastRecParticle.h" class AliPHOSRecParticle : public AliPHOSFastRecParticle { public: AliPHOSRecParticle() { } AliPHOSRecParticle(const AliPHOSRecParticle & rp) ; // ctor virtual ~AliPHOSRecParticle(){ // dtor } Int_t GetPHOSTSIndex(){ return fPHOSTrackSegment ; } Int_t * GetPrimaries(Int_t & number) ; 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