]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSRecParticle.h
Added 2 methos to retrieve the primary particles
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecParticle.h
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                               */
5
6 /* $Id$ */
7
8 //_________________________________________________________________________
9 //  A Reconstructed Particle in PHOS    
10 //  To become a general class of AliRoot ?        
11 //  why not      
12 //*-- Author: Yves Schutz (SUBATECH)
13
14 // --- ROOT system ---
15
16 // --- Standard library ---
17
18 // --- AliRoot header files ---
19
20 #include "AliPHOSFastRecParticle.h"
21 class TParticle ;
22
23 class AliPHOSRecParticle : public AliPHOSFastRecParticle {
24
25  public:
26   
27   AliPHOSRecParticle() {  }
28   AliPHOSRecParticle(const AliPHOSRecParticle & rp) ;  // ctor
29   virtual ~AliPHOSRecParticle(){  }
30
31   Int_t  GetPHOSTSIndex()const {    return fPHOSTrackSegment ;  }
32   const Int_t AliPHOSRecParticle::GetNPrimaries() const ; 
33   const TParticle * AliPHOSRecParticle::GetPrimary(Int_t index) const ;  
34   void   SetTraskSegment(Int_t index){fPHOSTrackSegment = index; }
35
36   typedef TClonesArray RecParticlesList ; 
37   
38  private:
39
40   Int_t fPHOSTrackSegment ; // pointer to the associated track segment in PHOS  
41   
42   ClassDef(AliPHOSRecParticle,1)  // Reconstructed Particle
43 };
44
45 #endif // AliPHOSRECPARTICLE_H