]>
Commit | Line | Data |
---|---|---|
5f20d3fb | 1 | #ifndef ALIPHOSV4_H |
2 | #define ALIPHOSV4_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 | ||
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 | ||
17 | // --- ROOT system --- | |
18 | #include "TClonesArray.h" | |
19 | #include "TRandom.h" | |
20 | ||
cede8016 | 21 | class TVector3 ; |
2ab0c725 | 22 | class TFile; |
23 | ||
5f20d3fb | 24 | // --- AliRoot header files --- |
25 | #include "AliPHOS.h" | |
cede8016 | 26 | class AliPHOSGeometry ; |
27 | class AliPHOSFastRecParticle ; | |
5f20d3fb | 28 | |
29 | class AliPHOSv4 : public AliPHOS { | |
30 | ||
31 | public: | |
32 | ||
25132bb9 | 33 | AliPHOSv4() { |
34 | //ctor | |
35 | fGeom=0; | |
36 | } | |
37 | AliPHOSv4(const char *name, const char *title="") ; | |
5f20d3fb | 38 | AliPHOSv4(const AliPHOSv4 & fast) { |
39 | // cpy ctor: no implementation yet | |
40 | // requested by the Coding Convention | |
41 | assert(0==1) ; | |
42 | } | |
43 | virtual ~AliPHOSv4(void) ; | |
44 | ||
88bdfa12 | 45 | virtual void AddHit( Int_t shunt, Int_t primary, Int_t track, Int_t id, Float_t *hits ) { |
46 | // useless since there are no hits | |
47 | assert(0==1) ; | |
48 | } | |
5f20d3fb | 49 | void AddRecParticle(const AliPHOSFastRecParticle & rp) ; // adds primary particle to the RecParticles list |
50 | virtual void BuildGeometry(void) ; // creates the geometry for the ROOT display | |
51 | virtual void CreateGeometry(void) ; // creates the geometry for GEANT | |
baef0810 | 52 | Float_t GetBigBox(Int_t index) const; |
5f20d3fb | 53 | virtual void Init(void) ; // does nothing |
e04976bd | 54 | virtual Int_t IsVersion(void) const { |
88bdfa12 | 55 | // Gives the version number |
56 | return 4 ; | |
57 | } | |
58 | ||
9e1a0ddb | 59 | void MakeBranch(Option_t* opt, const char *file=0) ; |
5f20d3fb | 60 | Double_t MakeEnergy(const Double_t energy) ; // makes the detected energy |
61 | TVector3 MakePosition(const Double_t energy, const TVector3 pos, const Double_t th, const Double_t ph) ; | |
62 | // makes the detected position | |
63 | void MakeRecParticle(const Int_t modid, const TVector3 pos, AliPHOSFastRecParticle & rp) ; // makes a reconstructes particle from primary | |
64 | Int_t MakeType(AliPHOSFastRecParticle & rp) ; // gets the detected type of particle | |
65 | // gets TClonesArray of reconstructed particles | |
baef0810 | 66 | TClonesArray * FastRecParticles() const { return fFastRecParticles ; } |
5f20d3fb | 67 | virtual void ResetPoints() ; |
68 | void ResetFastRecParticles() ; | |
69 | void SetBigBox(Int_t index, Float_t value) ; | |
70 | Double_t SigmaE(Double_t energy) ; // calulates the energy resolution at a given Energy | |
71 | Double_t SigmaP(Double_t energy, Int_t inc) ; // calulates the position resolution at a given Energy at a given incidence | |
72 | virtual void StepManager(void) ; // does the tracking through PHOS and a preliminary digitalization | |
88bdfa12 | 73 | virtual TString Version(void){ |
74 | // As IsVersion | |
75 | return TString("v4") ; | |
76 | } | |
5f20d3fb | 77 | |
2f04ed65 | 78 | AliPHOSv4 & operator = (const AliPHOSv4 & ) { |
baef0810 | 79 | // assignement operator requested by coding convention but not needed |
5f20d3fb | 80 | assert(0==1) ; |
81 | return *this ; | |
82 | } | |
83 | ||
84 | private: | |
85 | ||
86 | Float_t fBigBoxX ; // main box containing all PHOS (EMC+PPSD) | |
87 | Float_t fBigBoxY ; // main box containing all PHOS (EMC+PPSD) | |
88 | Float_t fBigBoxZ ; // main box containing all PHOS (EMC+PPSD) | |
cede8016 | 89 | TClonesArray * fFastRecParticles ; // list of particles modified by the response function |
5f20d3fb | 90 | Int_t fNRecParticles ; // number of detected particles |
91 | TRandom fRan ; // random number generator | |
92 | Double_t fResPara1 ; // parameter for the energy resolution dependence | |
93 | Double_t fResPara2 ; // parameter for the energy resolution dependence | |
94 | Double_t fResPara3 ; // parameter for the energy resolution dependence | |
95 | Double_t fPosParaA0 ; // parameter for the position resolution | |
96 | Double_t fPosParaA1 ; // parameter for the position resolution | |
97 | Double_t fPosParaB0 ; // parameter for the position resolution | |
98 | Double_t fPosParaB1 ; // parameter for the position resolution | |
99 | Double_t fPosParaB2 ; // parameter for the position resolution | |
100 | ||
101 | ClassDef(AliPHOSv4,1) // Implementation of the PHOS manager class for fast simulations | |
102 | ||
103 | }; | |
104 | ||
105 | #endif // AliPHOSV4_H |