]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRecParticle.h
New data member (cerenkov angle) in Cerenkov data structure.
[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
83974468 26typedef TClonesArray RecParticlesList ;
27
bd46e694 28class AliPHOSRecParticle : public AliPHOSFastRecParticle {
6ad0bfa0 29
30public:
31
32 AliPHOSRecParticle() {}; // ctor
33 AliPHOSRecParticle(AliPHOSTrackSegment * ts) ; // ctor
a73f33f0 34 AliPHOSRecParticle(const AliPHOSRecParticle & rp) ; // ctor
83974468 35 virtual ~AliPHOSRecParticle(){} ; // dtor
6ad0bfa0 36
83974468 37 AliPHOSTrackSegment * GetPHOSTrackSegment() const ;
bd219a48 38 Int_t GetPHOSTrackSegmentIndex(){return fPHOSTrackSegment;}
83974468 39 Int_t * GetPrimaries(Int_t & number) ;
6ad0bfa0 40
41private:
42
83974468 43 Int_t fPHOSTrackSegment ; // pointer to the associated track segment in PHOS
6ad0bfa0 44
b2a60966 45 ClassDef(AliPHOSRecParticle,1) // Reconstructed Particle
6ad0bfa0 46};
47
48#endif // AliPHOSRECPARTICLE_H