]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSFastRecParticle.h
A new (final?) geometry developed
[u/mrichter/AliRoot.git] / PHOS / AliPHOSFastRecParticle.h
CommitLineData
a73f33f0 1#ifndef ALIPHOSFASTRECPARTICLE_H
2#define ALIPHOSFASTRECPARTICLE_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 Particle modified by PHOS response and produced by AliPHOSvFast
10// To become a general class of AliRoot ?
11//
12//*-- Author: Yves Schutz (SUBATECH)
a73f33f0 13
14// --- ROOT system ---
15
16#include "TParticle.h"
17#include "TVector3.h"
18
19// --- Standard library ---
20
21// --- AliRoot header files ---
22
a73f33f0 23class AliPHOSFastRecParticle : public TParticle {
24
88714635 25 public:
a73f33f0 26
88714635 27 AliPHOSFastRecParticle() {
28 // ctor
29 };
78022019 30
a73f33f0 31 AliPHOSFastRecParticle(const AliPHOSFastRecParticle & rp) ; // ctor
32 AliPHOSFastRecParticle(const TParticle & p) ; // ctor
88714635 33 virtual ~AliPHOSFastRecParticle(){
34 // dtor
35 }
a73f33f0 36 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py) ;
37 virtual void Draw(Option_t *option) ;
b2a60966 38 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py) ;
88714635 39 Int_t GetIndexInList() const {
40 // returns the index of this in the list
41 return fIndexInList ;
42 }
78022019 43 Int_t GetPrimary(){return fPrimary;}
7b7c1533 44 const Int_t GetType() const {
88714635 45 // returns the type of the particle
46 return fType ;
47 }
a73f33f0 48 TString Name() ;
49 virtual void Paint(Option_t * option="");
2f04ed65 50 virtual void Print(const char * opt) ;
78022019 51 void SetPrimary(Int_t index) { // sets the primary particle index
88714635 52 fPrimary = index ;
53 }
54 void SetType(Int_t type) {
55 // sets the particle type
56 fType = type ;
57 }
58 void SetIndexInList(Int_t val) {
59 // sets the value of the index in the list
60 fIndexInList = val ;
61 }
62
9ec91567 63 enum EParticleType { kUNDEFINED=-1, kNEUTRALEM, kNEUTRALHA, kGAMMA , kGAMMAHA ,
64 kABSURDEM, kABSURDHA , kELECTRON, kCHARGEDHA } ;
65
c0d5b57d 66 typedef TClonesArray FastRecParticlesList ;
67
88714635 68 protected:
a73f33f0 69
83974468 70 Int_t fIndexInList ; // the index of this RecParticle in the list stored in TreeR (to be set by analysis)
78022019 71 Int_t fPrimary ; // primary particle index
83974468 72 Int_t fType ; // particle type obtained by "virtual" reconstruction
a73f33f0 73
88714635 74 private:
75
88714635 76
b2a60966 77 ClassDef(AliPHOSFastRecParticle,1) // Reconstructed Particle produced by the fast simulation
a73f33f0 78
79};
80
81#endif // AliPHOSFASTRECPARTICLE_H