]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSFastRecParticle.h
Script supersceeded by AliForwarddNdetaTask.C and
[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
702ab87e 8/* History of cvs commits:
9 *
10 * $Log$
85c60a8e 11 * Revision 1.36 2005/05/28 14:19:04 schutz
12 * Compilation warnings fixed by T.P.
13 *
702ab87e 14 */
15
b2a60966 16//_________________________________________________________________________
17// A Particle modified by PHOS response and produced by AliPHOSvFast
3f6cb8ae 18// This is also a base class for AliPHOSRecParticle produced by AliPHOSPIDv1
19// Defines the particle type
b2a60966 20// To become a general class of AliRoot ?
3f6cb8ae 21//--
b2a60966 22//*-- Author: Yves Schutz (SUBATECH)
a73f33f0 23
24// --- ROOT system ---
25
0fbb8738 26class TClonesArray;
a73f33f0 27#include "TParticle.h"
85c60a8e 28#include "AliPID.h"
a73f33f0 29// --- Standard library ---
30
31// --- AliRoot header files ---
32
a73f33f0 33class AliPHOSFastRecParticle : public TParticle {
cfeebab6 34
88714635 35 public:
a73f33f0 36
03c03c49 37 AliPHOSFastRecParticle() ;
cfeebab6 38
a73f33f0 39 AliPHOSFastRecParticle(const AliPHOSFastRecParticle & rp) ; // ctor
40 AliPHOSFastRecParticle(const TParticle & p) ; // ctor
3f6cb8ae 41 virtual ~AliPHOSFastRecParticle(){ } //dtor
42
a73f33f0 43 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py) ;
44 virtual void Draw(Option_t *option) ;
b2a60966 45 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py) ;
88714635 46 Int_t GetIndexInList() const {
47 // returns the index of this in the list
48 return fIndexInList ;
49 }
17323043 50 virtual Int_t GetNPrimaries() const {return 0 ;}
90cceaf6 51 virtual const TParticle * GetPrimary(Int_t) const {return 0 ;}
17323043 52 Int_t GetType() const {
88714635 53 // returns the type of the particle
54 return fType ;
55 }
6a40c29e 56
3f6cb8ae 57 void SetPIDBit(UInt_t fSet) {
58 // Set PID bit number fSet
59 fType |= (1<<fSet) ;
60 }
cfeebab6 61
3f6cb8ae 62 Bool_t TestPIDBit(UInt_t fTest) const {
63 // Check PID bit number fTest
64 if (fType & (1<<fTest) ) return kTRUE ;
65 else return kFALSE ;
a3d4377c 66 }
794c2bc3 67
3d8b8082 68 Bool_t IsPhoton (TString purity = "low") const;
69 Bool_t IsPi0 (TString purity = "low") const;
70 Bool_t IsElectron (TString purity = "low") const;
e3817e5f 71 Bool_t IsHardPhoton () const;
72 Bool_t IsHardPi0 () const;
3f6cb8ae 73 Bool_t IsHadron () const;
74 Bool_t IsChargedHadron () const;
75 Bool_t IsNeutralHadron () const;
76 Bool_t IsFastChargedHadron() const;
77 Bool_t IsSlowChargedHadron() const;
78 Bool_t IsFastNeutralHadron() const;
79 Bool_t IsSlowNeutralHadron() const;
948a4b24 80 Bool_t IsEleCon(TString purity = "low") const;
a3d4377c 81
14f6a871 82 TString Name() const ;
a73f33f0 83 virtual void Paint(Option_t * option="");
702ab87e 84 virtual void Print(const Option_t * = "") const ;
6a40c29e 85
43dc5270 86 void SetTof(Float_t tof) { fTof = tof ; }
87 Float_t ToF() const { return fTof ; }
14f6a871 88 void SetType(Int_t type) ;
cfeebab6 89
88714635 90 void SetIndexInList(Int_t val) {
91 // sets the value of the index in the list
92 fIndexInList = val ;
cfeebab6 93 }
94 //This has to disappear
43dc5270 95 enum EParticleType { kTYPE = 8,
96 kUNDEFINED=-1,
a3d4377c 97 kNEUTRALEMFAST, kNEUTRALHAFAST, kNEUTRALEMSLOW, kNEUTRALHASLOW,
98 kCHARGEDEMFAST, kCHARGEDHAFAST, kCHARGEDEMSLOW, kCHARGEDHASLOW } ;
99
c0d5b57d 100 typedef TClonesArray FastRecParticlesList ;
cfeebab6 101
88714635 102 protected:
a73f33f0 103
83974468 104 Int_t fIndexInList ; // the index of this RecParticle in the list stored in TreeR (to be set by analysis)
43dc5270 105 Float_t fTof ; // time of fliht
83974468 106 Int_t fType ; // particle type obtained by "virtual" reconstruction
85c60a8e 107 Float_t fPID[AliPID::kSPECIESN] ; // PID probability densities
cc1fe362 108
88714635 109 private:
110
794c2bc3 111 ClassDef(AliPHOSFastRecParticle,2) // Reconstructed Particle produced by the fast simulation
a73f33f0 112
113};
114
115#endif // AliPHOSFASTRECPARTICLE_H