]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRecParticle.h
Corrections to comply with coding convention
[u/mrichter/AliRoot.git] / PHOS / AliPHOSRecParticle.h
CommitLineData
6ad0bfa0 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
b2a60966 8//_________________________________________________________________________
9// A Reconstructed Particle in PHOS
10// To become a general class of AliRoot ?
11//
12//*-- Author: Yves Schutz (SUBATECH)
6ad0bfa0 13
14// --- ROOT system ---
15
16#include "TParticle.h"
17#include "TVector3.h"
18
19// --- Standard library ---
20
21// --- AliRoot header files ---
22
23#include "AliPHOSTrackSegment.h"
bd46e694 24#include "AliPHOSFastRecParticle.h"
6ad0bfa0 25
bd46e694 26class AliPHOSRecParticle : public AliPHOSFastRecParticle {
6ad0bfa0 27
28public:
29
88714635 30 AliPHOSRecParticle() {
31 // ctor
32 }
6ad0bfa0 33 AliPHOSRecParticle(AliPHOSTrackSegment * ts) ; // ctor
a73f33f0 34 AliPHOSRecParticle(const AliPHOSRecParticle & rp) ; // ctor
88714635 35 virtual ~AliPHOSRecParticle(){
36 // dtor
37 }
83974468 38 AliPHOSTrackSegment * GetPHOSTrackSegment() const ;
bd219a48 39 Int_t GetPHOSTrackSegmentIndex(){return fPHOSTrackSegment;}
83974468 40 Int_t * GetPrimaries(Int_t & number) ;
6ad0bfa0 41
42private:
43
83974468 44 Int_t fPHOSTrackSegment ; // pointer to the associated track segment in PHOS
6ad0bfa0 45
88714635 46 typedef TClonesArray RecParticlesList ;
47
48
b2a60966 49 ClassDef(AliPHOSRecParticle,1) // Reconstructed Particle
6ad0bfa0 50};
51
52#endif // AliPHOSRECPARTICLE_H