]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSvFast.h
Including assert.h (Sun)
[u/mrichter/AliRoot.git] / PHOS / AliPHOSvFast.h
CommitLineData
3decf5cb 1#ifndef ALIPHOSVFAST_H
2#define ALIPHOSVFAST_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
3decf5cb 6/* $Id$ */
7
b2a60966 8//_________________________________________________________________________
9// Implementation of the PHOS manager class for fast simulations
10// Tracks particles until the reach a grossly designed PHOS module
11// Modify the particles property (momentum, energy, type) according to
12// the PHOS response function. The result is called a virtual reconstructed
13// particle.
14//
15//*-- Author: Yves Schutz (SUBATECH)
16
d6274846 17#include <assert.h>
18
3decf5cb 19// --- ROOT system ---
20#include "TClonesArray.h"
a73f33f0 21#include "TRandom.h"
3decf5cb 22
3a4295ee 23class TVector3 ;
24class TFile;
25
3decf5cb 26// --- AliRoot header files ---
27#include "AliPHOS.h"
3a4295ee 28class AliPHOSGeometry ;
cede8016 29class AliPHOSFastRecParticle ;
3decf5cb 30
31class AliPHOSvFast : public AliPHOS {
32
33public:
34
3a4295ee 35 AliPHOSvFast() ;
3decf5cb 36 AliPHOSvFast(const char *name, const char *title="") ;
839ffcb3 37 AliPHOSvFast(const AliPHOSvFast & fast) {
38 // cpy ctor: no implementation yet
39 // requested by the Coding Convention
40 assert(0==1) ;
41 }
3decf5cb 42 virtual ~AliPHOSvFast(void) ;
43
3a4295ee 44 virtual void AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t id, Float_t *hits ) {
45 // useless since there are no hits
46 assert(0==1) ;
47 }
a73f33f0 48 void AddRecParticle(const AliPHOSFastRecParticle & rp) ; // adds primary particle to the RecParticles list
49 virtual void BuildGeometry(void) ; // creates the geometry for the ROOT display
50 virtual void CreateGeometry(void) ; // creates the geometry for GEANT
3a4295ee 51 Float_t GetBigBox(Int_t index) const;
a73f33f0 52 virtual void Init(void) ; // does nothing
3a4295ee 53 virtual Int_t IsVersion(void) const {
54 // Gives the version number
bd46a237 55 return 99 ;
3a4295ee 56 }
57
9e1a0ddb 58 void MakeBranch(Option_t* opt, const char *file=0) ;
a73f33f0 59 Double_t MakeEnergy(const Double_t energy) ; // makes the detected energy
b1aa729d 60 TVector3 MakePosition(const Double_t energy, const TVector3 pos, const Double_t th, const Double_t ph) ;
61 // makes the detected position
62 void MakeRecParticle(const Int_t modid, const TVector3 pos, AliPHOSFastRecParticle & rp) ; // makes a reconstructes particle from primary
63 Int_t MakeType(AliPHOSFastRecParticle & rp) ; // gets the detected type of particle
88714635 64 // gets TClonesArray of reconstructed particles
3a4295ee 65 TClonesArray * FastRecParticles() const { return fFastRecParticles ; }
f96d3dc7 66 virtual void ResetPoints() ;
67 void ResetFastRecParticles() ;
b1aa729d 68 void SetBigBox(Int_t index, Float_t value) ;
69 Double_t SigmaE(Double_t energy) ; // calulates the energy resolution at a given Energy
7a9d98f9 70 Double_t SigmaP(Double_t energy, Double_t inc) ; // calulates the position resolution at a given Energy at a given incidence
b1aa729d 71 virtual void StepManager(void) ; // does the tracking through PHOS and a preliminary digitalization
bd46a237 72 virtual const TString Version(void)const {
3a4295ee 73 // As IsVersion
74 return TString("vFast") ;
75 }
839ffcb3 76
3a4295ee 77 AliPHOSvFast & operator = (const AliPHOSvFast & ) {
78 // assignement operator requested by coding convention but not needed
839ffcb3 79 assert(0==1) ;
80 return *this ;
81 }
3decf5cb 82
83private:
84
a73f33f0 85 Float_t fBigBoxX ; // main box containing all PHOS (EMC+PPSD)
86 Float_t fBigBoxY ; // main box containing all PHOS (EMC+PPSD)
87 Float_t fBigBoxZ ; // main box containing all PHOS (EMC+PPSD)
cede8016 88 TClonesArray * fFastRecParticles ; // list of particles modified by the response function
a73f33f0 89 Int_t fNRecParticles ; // number of detected particles
90 TRandom fRan ; // random number generator
b1aa729d 91 Double_t fResPara1 ; // parameter for the energy resolution dependence
92 Double_t fResPara2 ; // parameter for the energy resolution dependence
93 Double_t fResPara3 ; // parameter for the energy resolution dependence
94 Double_t fPosParaA0 ; // parameter for the position resolution
95 Double_t fPosParaA1 ; // parameter for the position resolution
96 Double_t fPosParaB0 ; // parameter for the position resolution
97 Double_t fPosParaB1 ; // parameter for the position resolution
98 Double_t fPosParaB2 ; // parameter for the position resolution
3decf5cb 99
b2a60966 100 ClassDef(AliPHOSvFast,1) // Implementation of the PHOS manager class for fast simulations
3decf5cb 101
102};
103
104#endif // AliPHOSVFAST_H