1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
#ifndef CALORIMETRYMANAGER_H
#define CALORIMETRYMANAGER_H
#include "SimDataFormats/CaloHit/interface/PCaloHitContainer.h"
#include "SimG4CMS/Calo/interface/CaloHitID.h"
// FastSimulation headers
#include "FastSimulation/Calorimetry/interface/HCALResponse.h"
#include "DataFormats/DetId/interface/DetId.h"
#include "FastSimulation/Utilities/interface/FamosDebug.h"
#include "SimDataFormats/Track/interface/SimTrackContainer.h"
#include "FastSimulation/CaloHitMakers/interface/EcalHitMaker.h"
#include "FastSimulation/CaloHitMakers/interface/HcalHitMaker.h"
#include "FastSimulation/CaloHitMakers/interface/PreshowerHitMaker.h"
#include "FastSimulation/Calorimetry/interface/KKCorrectionFactors.h"
#include "FWCore/Framework/interface/FrameworkfwdMostUsed.h"
// For the uint32_t
//#include <boost/cstdint.hpp>
#include <map>
#include <algorithm>
class FSimEvent;
class FSimTrack;
class CaloGeometryHelper;
class Histos;
class HSParameters;
class LandauFluctuationGenerator;
class GammaFunctionGenerator;
class MaterialEffects;
class RandomEngineAndDistribution;
//Gflash
class GflashHadronShowerProfile;
class GflashPiKShowerProfile;
class GflashProtonShowerProfile;
class GflashAntiProtonShowerProfile;
// FastHFshowerLibrary
class FastHFShowerLibrary;
class CalorimetryManager {
public:
CalorimetryManager();
CalorimetryManager(FSimEvent* aSimEvent,
const edm::ParameterSet& fastCalo,
const edm::ParameterSet& MuonECALPars,
const edm::ParameterSet& MuonHCALPars,
const edm::ParameterSet& fastGflash,
edm::ConsumesCollector&&);
~CalorimetryManager();
// Does the real job
void initialize(RandomEngineAndDistribution const* random);
void reconstructTrack(FSimTrack& myTrack, RandomEngineAndDistribution const*);
void reconstruct(RandomEngineAndDistribution const*);
// Return the address of the Calorimeter
CaloGeometryHelper* getCalorimeter() const { return myCalorimeter_; }
// Return the address of the FastHFShowerLibrary
FastHFShowerLibrary* getHFShowerLibrary() const { return theHFShowerLibrary; }
// load container from edm::Event
void loadFromEcalBarrel(edm::PCaloHitContainer& c) const;
void loadFromEcalEndcap(edm::PCaloHitContainer& c) const;
void loadFromHcal(edm::PCaloHitContainer& c) const;
void loadFromPreshower(edm::PCaloHitContainer& c) const;
void loadMuonSimTracks(edm::SimTrackContainer& m) const;
void harvestMuonSimTracks(edm::SimTrackContainer& m) const;
private:
// Simulation of electromagnetic showers in PS, ECAL, HCAL
void EMShowerSimulation(const FSimTrack& myTrack, RandomEngineAndDistribution const*);
void reconstructHCAL(const FSimTrack& myTrack, RandomEngineAndDistribution const*);
void MuonMipSimulation(const FSimTrack& myTrack, RandomEngineAndDistribution const*);
/// Hadronic Shower Simulation
void HDShowerSimulation(const FSimTrack& myTrack, RandomEngineAndDistribution const*);
// Read the parameters
void readParameters(const edm::ParameterSet& fastCalo);
void updateECAL(const std::map<CaloHitID, float>& hitMap, int onEcal, int trackID = 0, float corr = 1.0);
void updateHCAL(const std::map<CaloHitID, float>& hitMap, int trackID = 0, float corr = 1.0);
void updatePreshower(const std::map<CaloHitID, float>& hitMap, int trackID = 0, float corr = 1.0);
void respCorr(double);
void clean();
private:
FSimEvent* mySimEvent;
CaloGeometryHelper* myCalorimeter_;
Histos* myHistos;
HCALResponse* myHDResponse_;
HSParameters* myHSParameters_;
std::vector<std::pair<CaloHitID, float> > EBMapping_;
std::vector<std::pair<CaloHitID, float> > EEMapping_;
std::vector<std::pair<CaloHitID, float> > HMapping_;
std::vector<std::pair<CaloHitID, float> > ESMapping_;
bool debug_;
std::vector<unsigned int> evtsToDebug_;
bool unfoldedMode_;
//Digitizer
bool EcalDigitizer_;
bool HcalDigitizer_;
std::vector<double> samplingHBHE_;
std::vector<double> samplingHF_;
std::vector<double> samplingHO_;
int ietaShiftHB_, ietaShiftHE_, ietaShiftHO_, ietaShiftHF_;
std::vector<double> timeShiftHB_;
std::vector<double> timeShiftHE_;
std::vector<double> timeShiftHF_;
std::vector<double> timeShiftHO_;
/// A few pointers to save time
RawParticle myElec;
RawParticle myPosi;
RawParticle myPart;
// Parameters
double pulledPadSurvivalProbability_;
double crackPadSurvivalProbability_;
double spotFraction_;
// double radiusFactor_;
double radiusFactorEB_, radiusFactorEE_;
std::vector<double> radiusPreshowerCorrections_;
double aTerm, bTerm;
std::vector<double> mipValues_;
int gridSize_;
std::vector<double> theCoreIntervals_, theTailIntervals_;
double RCFactor_, RTFactor_;
//FR
int optionHDSim_, hdGridSize_, hdSimMethod_;
bool simulatePreshower_;
//RF
const LandauFluctuationGenerator* aLandauGenerator;
GammaFunctionGenerator* aGammaGenerator;
static std::vector<std::pair<int, float> > myZero_;
// RespCorrP p, k_e(p), k_h(p) vectors and evaluated for each p
// ecorr and hcorr
std::vector<double> rsp;
std::vector<double> p_knots;
std::vector<double> k_e;
std::vector<double> k_h;
double ecorr;
double hcorr;
// Used to check if the calorimeters was initialized
bool initialized_;
std::vector<FSimTrack> muonSimTracks;
std::vector<FSimTrack> savedMuonSimTracks;
MaterialEffects* theMuonEcalEffects; // material effects for muons in ECAL
MaterialEffects* theMuonHcalEffects; // material effects for muons in HCAL
// If set to true the simulation in ECAL would be done 1X0 by 1X0
// this is slow but more adapted to detailed studies.
// Otherwise roughty 5 steps are used.
// This variable is transferred to EMShower
bool bFixedLength_;
//Gflash
GflashHadronShowerProfile* theProfile;
GflashPiKShowerProfile* thePiKProfile;
GflashProtonShowerProfile* theProtonProfile;
GflashAntiProtonShowerProfile* theAntiProtonProfile;
// HFShowerLibrary
bool useShowerLibrary;
bool useCorrectionSL;
FastHFShowerLibrary* theHFShowerLibrary;
std::unique_ptr<KKCorrectionFactors> ecalCorrection;
};
#endif
|