]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRecParticle.h
In the dtor call the current getter rather than passing the filename.
[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 ?
2f04ed65 11// why not
b2a60966 12//*-- Author: Yves Schutz (SUBATECH)
6ad0bfa0 13
14// --- ROOT system ---
15
6ad0bfa0 16// --- Standard library ---
17
18// --- AliRoot header files ---
19
bd46e694 20#include "AliPHOSFastRecParticle.h"
8f3968d8 21class TParticle ;
d956e9b7 22#include "TVector3.h"
6ad0bfa0 23
bd46e694 24class AliPHOSRecParticle : public AliPHOSFastRecParticle {
6ad0bfa0 25
baef0810 26 public:
6ad0bfa0 27
51d189f4 28 AliPHOSRecParticle() { fPHOSTrackSegment = 0 ; fDebug = kFALSE ; }
a73f33f0 29 AliPHOSRecParticle(const AliPHOSRecParticle & rp) ; // ctor
9995f078 30 virtual ~AliPHOSRecParticle(){ }
2731cd1e 31
a278df55 32 Int_t GetPHOSTSIndex()const { return fPHOSTrackSegment ; }
33 virtual const Int_t GetNPrimariesToRecParticles() const ;
34 virtual const Int_t GetNPrimaries() const ;
d956e9b7 35 TVector3 GetPos() const { return fPos ; }
a278df55 36 virtual const TParticle * GetPrimary(Int_t index) const ;
37 void SetDebug() { fDebug = kTRUE ; }
d956e9b7 38 void SetPos(TVector3 pos) { fPos.SetXYZ( pos.X(), pos.Y(), pos.Z() ); }
a278df55 39 void UnsetDebug() { fDebug = kFALSE ; }
40 void SetTrackSegment(Int_t index){fPHOSTrackSegment = index; }
6ad0bfa0 41
88714635 42 typedef TClonesArray RecParticlesList ;
c0d5b57d 43
44 private:
88714635 45
c0d5b57d 46 Int_t fPHOSTrackSegment ; // pointer to the associated track segment in PHOS
d956e9b7 47 Bool_t fDebug ; // to steer debug output
48 TVector3 fPos ; // position in the global alice coordinate system
51d189f4 49
50 ClassDef(AliPHOSRecParticle,2) // Reconstructed Particle
6ad0bfa0 51};
52
53#endif // AliPHOSRECPARTICLE_H