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 */
8 //_________________________________________________________________________
9 // A Particle modified by PHOS response and produced by AliPHOSvFast
10 // To become a general class of AliRoot ?
12 //*-- Author: Yves Schutz (SUBATECH)
14 // --- ROOT system ---
16 #include "TParticle.h"
19 // --- Standard library ---
21 // --- AliRoot header files ---
23 class AliPHOSFastRecParticle : public TParticle {
27 AliPHOSFastRecParticle() ;
29 AliPHOSFastRecParticle(const AliPHOSFastRecParticle & rp) ; // ctor
30 AliPHOSFastRecParticle(const TParticle & p) ; // ctor
31 virtual ~AliPHOSFastRecParticle(){
34 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py) ;
35 virtual void Draw(Option_t *option) ;
36 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py) ;
37 Int_t GetIndexInList() const {
38 // returns the index of this in the list
41 Int_t GetPrimary(){return fPrimary;}
43 const Int_t GetType() const {
44 // returns the type of the particle
48 void SetPIDBit(UInt_t fSet)
53 Bool_t TestPIDBit(UInt_t fTest){
54 if (fType & (1<<fTest) )
60 Bool_t GetPhotonHiPu_LoEf() {
62 if(TestPIDBit(8)&&TestPIDBit(7)&&TestPIDBit(6)&& //PCA
63 TestPIDBit(5)&&TestPIDBit(4)&&TestPIDBit(3)&& //TOF
64 TestPIDBit(2)&&TestPIDBit(1)&&TestPIDBit(0)) //RCPV
68 Bool_t GetPhotonMed_Pu_Ef(){
70 if(TestPIDBit(7)&&TestPIDBit(6)&& //PCA
71 TestPIDBit(5)&&TestPIDBit(4)&&TestPIDBit(3)&& //TOF
72 TestPIDBit(2)&&TestPIDBit(1)&&TestPIDBit(0)) //RCPV
76 Bool_t GetPhotonHiEf_LoPu() {
78 if(TestPIDBit(6)&& //PCA
79 TestPIDBit(5)&&TestPIDBit(4)&&TestPIDBit(3)&& //TOF
80 TestPIDBit(2)&&TestPIDBit(1)&&TestPIDBit(0)) //RCPV
86 virtual void Paint(Option_t * option="");
87 virtual void Print(const char * opt) ;
88 void SetPrimary(Int_t index) { // sets the primary particle index
92 void SetType(Int_t type) {
93 // sets the particle type
97 void SetIndexInList(Int_t val) {
98 // sets the value of the index in the list
102 enum EParticleType { kUNDEFINED=-1,
103 kCHARGEDHASLOW, kNEUTRALHASLOW, kCHARGEDHAFAST, kNEUTRALHAFAST,
104 kCHARGEDEMSLOW, kNEUTRALEMSLOW, kCHARGEDEMFAST, kNEUTRALEMFAST} ;
106 typedef TClonesArray FastRecParticlesList ;
110 Int_t fIndexInList ; // the index of this RecParticle in the list stored in TreeR (to be set by analysis)
111 Int_t fPrimary ; // primary particle index
112 Int_t fType ; // particle type obtained by "virtual" reconstruction
117 ClassDef(AliPHOSFastRecParticle,1) // Reconstructed Particle produced by the fast simulation
121 #endif // AliPHOSFASTRECPARTICLE_H