]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSRecParticle.h
Derives from AliPHOSFastRecParticle now
[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 //  Yves Schutz SUBATECH                      //
11 //  To become a general class of AliRoot ?    //  
12 //                                            //
13 ////////////////////////////////////////////////
14
15 // --- ROOT system ---
16
17 #include "TParticle.h"
18 #include "TVector3.h"
19
20 // --- Standard library ---
21
22 // --- AliRoot header files ---
23
24 #include "AliPHOSTrackSegment.h"
25 #include "AliPHOSFastRecParticle.h"
26
27 class AliPHOSRecParticle : public AliPHOSFastRecParticle {
28
29 public:
30   
31   AliPHOSRecParticle() {};          // ctor
32   AliPHOSRecParticle(AliPHOSTrackSegment * ts) ;  // ctor
33   AliPHOSRecParticle(const AliPHOSRecParticle & rp) ;  // ctor
34   virtual ~AliPHOSRecParticle() ; // dtor
35
36   AliPHOSTrackSegment * GetPHOSTrackSegment() const { return fPHOSTrackSegment ; } 
37
38 private:
39
40   AliPHOSTrackSegment * fPHOSTrackSegment ; // pointer to the associated track segment in PHOS  
41
42   ClassDef(AliPHOSRecParticle,1)  // Reconstructed Particle, version 1
43
44 };
45
46 #endif // AliPHOSRECPARTICLE_H