]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSRecParticle.h
Inheritance from TObject. Automatic streamers.
[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"
6ad0bfa0 21
bd46e694 22class AliPHOSRecParticle : public AliPHOSFastRecParticle {
6ad0bfa0 23
baef0810 24 public:
6ad0bfa0 25
2731cd1e 26 AliPHOSRecParticle() { }
a73f33f0 27 AliPHOSRecParticle(const AliPHOSRecParticle & rp) ; // ctor
9995f078 28 virtual ~AliPHOSRecParticle(){ }
2731cd1e 29
baef0810 30 Int_t GetPHOSTSIndex()const { return fPHOSTrackSegment ; }
9995f078 31 void SetTraskSegment(Int_t index){fPHOSTrackSegment = index; }
6ad0bfa0 32
88714635 33 typedef TClonesArray RecParticlesList ;
c0d5b57d 34
35 private:
88714635 36
c0d5b57d 37 Int_t fPHOSTrackSegment ; // pointer to the associated track segment in PHOS
38
b2a60966 39 ClassDef(AliPHOSRecParticle,1) // Reconstructed Particle
6ad0bfa0 40};
41
42#endif // AliPHOSRECPARTICLE_H