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