]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PHOS/AliPHOSvFast.h
removing duplicated code (Christian)
[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
702ab87e 8/* History of cvs commits:
9 *
10 * $Log$
43fbaae1 11 * Revision 1.25 2005/05/28 14:19:05 schutz
12 * Compilation warnings fixed by T.P.
13 *
702ab87e 14 */
15
b2a60966 16//_________________________________________________________________________
17// Implementation of the PHOS manager class for fast simulations
18// Tracks particles until the reach a grossly designed PHOS module
19// Modify the particles property (momentum, energy, type) according to
20// the PHOS response function. The result is called a virtual reconstructed
21// particle.
22//
23//*-- Author: Yves Schutz (SUBATECH)
24
3decf5cb 25// --- ROOT system ---
e957fea8 26//#include "TClonesArray.h"
a73f33f0 27#include "TRandom.h"
3decf5cb 28
3a4295ee 29class TVector3 ;
30class TFile;
31
3decf5cb 32// --- AliRoot header files ---
33#include "AliPHOS.h"
3a4295ee 34class AliPHOSGeometry ;
cede8016 35class AliPHOSFastRecParticle ;
3decf5cb 36
37class AliPHOSvFast : public AliPHOS {
38
39public:
40
3a4295ee 41 AliPHOSvFast() ;
3decf5cb 42 AliPHOSvFast(const char *name, const char *title="") ;
43fbaae1 43 AliPHOSvFast(AliPHOSvFast & fast);
44
3decf5cb 45 virtual ~AliPHOSvFast(void) ;
46
702ab87e 47 virtual void Copy(TObject &fast) const;
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
88cb7938 58 void MakeBranch(Option_t* opt);
fc7e2f43 59 Double_t MakeEnergy(Double_t energy) ; // makes the detected energy
60 TVector3 MakePosition(Double_t energy, TVector3 pos, Double_t th, Double_t ph) ;
b1aa729d 61 // makes the detected position
fc7e2f43 62 void MakeRecParticle(Int_t modid, TVector3 pos, AliPHOSFastRecParticle & rp) ; // makes a reconstructes particle from primary
b1aa729d 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
88cb7938 77 AliPHOSvFast & operator = (const AliPHOSvFast & ) {
721eb17e 78 Fatal("operator =", "not implemented") ; return *this ;
88cb7938 79 }
3decf5cb 80
81private:
82
a73f33f0 83 Float_t fBigBoxX ; // main box containing all PHOS (EMC+PPSD)
84 Float_t fBigBoxY ; // main box containing all PHOS (EMC+PPSD)
85 Float_t fBigBoxZ ; // main box containing all PHOS (EMC+PPSD)
cede8016 86 TClonesArray * fFastRecParticles ; // list of particles modified by the response function
a73f33f0 87 Int_t fNRecParticles ; // number of detected particles
88 TRandom fRan ; // random number generator
b1aa729d 89 Double_t fResPara1 ; // parameter for the energy resolution dependence
90 Double_t fResPara2 ; // parameter for the energy resolution dependence
91 Double_t fResPara3 ; // parameter for the energy resolution dependence
92 Double_t fPosParaA0 ; // parameter for the position resolution
93 Double_t fPosParaA1 ; // parameter for the position resolution
94 Double_t fPosParaB0 ; // parameter for the position resolution
95 Double_t fPosParaB1 ; // parameter for the position resolution
96 Double_t fPosParaB2 ; // parameter for the position resolution
3decf5cb 97
b2a60966 98 ClassDef(AliPHOSvFast,1) // Implementation of the PHOS manager class for fast simulations
3decf5cb 99
100};
101
102#endif // AliPHOSVFAST_H