1 |
|
---|
2 | /** \class Calorimeter
|
---|
3 | *
|
---|
4 | * Fills calorimeter towers, performs calorimeter resolution smearing,
|
---|
5 | * preselects towers hit by photons and creates energy flow objects.
|
---|
6 | *
|
---|
7 | * $Date$
|
---|
8 | * $Revision$
|
---|
9 | *
|
---|
10 | *
|
---|
11 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
12 | *
|
---|
13 | */
|
---|
14 |
|
---|
15 | #include "modules/Calorimeter.h"
|
---|
16 |
|
---|
17 | #include "classes/DelphesClasses.h"
|
---|
18 | #include "classes/DelphesFactory.h"
|
---|
19 | #include "classes/DelphesFormula.h"
|
---|
20 |
|
---|
21 | #include "ExRootAnalysis/ExRootResult.h"
|
---|
22 | #include "ExRootAnalysis/ExRootFilter.h"
|
---|
23 | #include "ExRootAnalysis/ExRootClassifier.h"
|
---|
24 |
|
---|
25 | #include "TMath.h"
|
---|
26 | #include "TString.h"
|
---|
27 | #include "TFormula.h"
|
---|
28 | #include "TRandom3.h"
|
---|
29 | #include "TObjArray.h"
|
---|
30 | #include "TDatabasePDG.h"
|
---|
31 | #include "TLorentzVector.h"
|
---|
32 |
|
---|
33 | #include <algorithm>
|
---|
34 | #include <stdexcept>
|
---|
35 | #include <iostream>
|
---|
36 | #include <sstream>
|
---|
37 |
|
---|
38 | using namespace std;
|
---|
39 |
|
---|
40 | //------------------------------------------------------------------------------
|
---|
41 |
|
---|
42 | Calorimeter::Calorimeter() :
|
---|
43 | fECalResolutionFormula(0), fHCalResolutionFormula(0),
|
---|
44 | fItParticleInputArray(0), fItTrackInputArray(0),
|
---|
45 | fTowerTrackArray(0), fItTowerTrackArray(0)
|
---|
46 | {
|
---|
47 | fECalResolutionFormula = new DelphesFormula;
|
---|
48 | fHCalResolutionFormula = new DelphesFormula;
|
---|
49 |
|
---|
50 | fTowerTrackArray = new TObjArray;
|
---|
51 | fItTowerTrackArray = fTowerTrackArray->MakeIterator();
|
---|
52 | }
|
---|
53 |
|
---|
54 | //------------------------------------------------------------------------------
|
---|
55 |
|
---|
56 | Calorimeter::~Calorimeter()
|
---|
57 | {
|
---|
58 | if(fECalResolutionFormula) delete fECalResolutionFormula;
|
---|
59 | if(fHCalResolutionFormula) delete fHCalResolutionFormula;
|
---|
60 |
|
---|
61 | if(fTowerTrackArray) delete fTowerTrackArray;
|
---|
62 | if(fItTowerTrackArray) delete fItTowerTrackArray;
|
---|
63 | }
|
---|
64 |
|
---|
65 | //------------------------------------------------------------------------------
|
---|
66 |
|
---|
67 | void Calorimeter::Init()
|
---|
68 | {
|
---|
69 | ExRootConfParam param, paramEtaBins, paramPhiBins, paramFractions;
|
---|
70 | Long_t i, j, k, size, sizeEtaBins, sizePhiBins, sizeFractions;
|
---|
71 | Double_t ecalFraction, hcalFraction;
|
---|
72 | TBinMap::iterator itEtaBin;
|
---|
73 | set< Double_t >::iterator itPhiBin;
|
---|
74 | vector< Double_t > *phiBins;
|
---|
75 |
|
---|
76 | // read eta and phi bins
|
---|
77 | param = GetParam("EtaPhiBins");
|
---|
78 | size = param.GetSize();
|
---|
79 | fBinMap.clear();
|
---|
80 | fEtaBins.clear();
|
---|
81 | fPhiBins.clear();
|
---|
82 | for(i = 0; i < size/2; ++i)
|
---|
83 | {
|
---|
84 | paramEtaBins = param[i*2];
|
---|
85 | sizeEtaBins = paramEtaBins.GetSize();
|
---|
86 | paramPhiBins = param[i*2 + 1];
|
---|
87 | sizePhiBins = paramPhiBins.GetSize();
|
---|
88 |
|
---|
89 | for(j = 0; j < sizeEtaBins; ++j)
|
---|
90 | {
|
---|
91 | for(k = 0; k < sizePhiBins; ++k)
|
---|
92 | {
|
---|
93 | fBinMap[paramEtaBins[j].GetDouble()].insert(paramPhiBins[k].GetDouble());
|
---|
94 | }
|
---|
95 | }
|
---|
96 | }
|
---|
97 |
|
---|
98 | // for better performance we transform map of sets to parallel vectors:
|
---|
99 | // vector< double > and vector< vector< double >* >
|
---|
100 | for(itEtaBin = fBinMap.begin(); itEtaBin != fBinMap.end(); ++itEtaBin)
|
---|
101 | {
|
---|
102 | fEtaBins.push_back(itEtaBin->first);
|
---|
103 | phiBins = new vector< double >(itEtaBin->second.size());
|
---|
104 | fPhiBins.push_back(phiBins);
|
---|
105 | phiBins->clear();
|
---|
106 | for(itPhiBin = itEtaBin->second.begin(); itPhiBin != itEtaBin->second.end(); ++itPhiBin)
|
---|
107 | {
|
---|
108 | phiBins->push_back(*itPhiBin);
|
---|
109 | }
|
---|
110 | }
|
---|
111 |
|
---|
112 | // read energy fractions for different particles
|
---|
113 | param = GetParam("EnergyFraction");
|
---|
114 | size = param.GetSize();
|
---|
115 |
|
---|
116 | // set default energy fractions values
|
---|
117 | fFractionMap.clear();
|
---|
118 | fFractionMap[0] = make_pair(0.0, 1.0);
|
---|
119 |
|
---|
120 | for(i = 0; i < size/2; ++i)
|
---|
121 | {
|
---|
122 | paramFractions = param[i*2 + 1];
|
---|
123 | sizeFractions = paramFractions.GetSize();
|
---|
124 |
|
---|
125 | ecalFraction = paramFractions[0].GetDouble();
|
---|
126 | hcalFraction = paramFractions[1].GetDouble();
|
---|
127 |
|
---|
128 | fFractionMap[param[i*2].GetInt()] = make_pair(ecalFraction, hcalFraction);
|
---|
129 | }
|
---|
130 | /*
|
---|
131 | TFractionMap::iterator itFractionMap;
|
---|
132 | for(itFractionMap = fFractionMap.begin(); itFractionMap != fFractionMap.end(); ++itFractionMap)
|
---|
133 | {
|
---|
134 | cout << itFractionMap->first << " " << itFractionMap->second.first << " " << itFractionMap->second.second << endl;
|
---|
135 | }
|
---|
136 | */
|
---|
137 | // read resolution formulas
|
---|
138 | fECalResolutionFormula->Compile(GetString("ECalResolutionFormula", "0"));
|
---|
139 | fHCalResolutionFormula->Compile(GetString("HCalResolutionFormula", "0"));
|
---|
140 |
|
---|
141 | // import array with output from other modules
|
---|
142 | fParticleInputArray = ImportArray(GetString("ParticleInputArray", "ParticlePropagator/particles"));
|
---|
143 | fItParticleInputArray = fParticleInputArray->MakeIterator();
|
---|
144 |
|
---|
145 | fTrackInputArray = ImportArray(GetString("TrackInputArray", "ParticlePropagator/tracks"));
|
---|
146 | fItTrackInputArray = fTrackInputArray->MakeIterator();
|
---|
147 |
|
---|
148 | // create output arrays
|
---|
149 | fTowerOutputArray = ExportArray(GetString("TowerOutputArray", "towers"));
|
---|
150 | fPhotonOutputArray = ExportArray(GetString("PhotonOutputArray", "photons"));
|
---|
151 |
|
---|
152 | fEFlowTrackOutputArray = ExportArray(GetString("EFlowTrackOutputArray", "eflowTracks"));
|
---|
153 | fEFlowTowerOutputArray = ExportArray(GetString("EFlowTowerOutputArray", "eflowTowers"));
|
---|
154 | }
|
---|
155 |
|
---|
156 | //------------------------------------------------------------------------------
|
---|
157 |
|
---|
158 | void Calorimeter::Finish()
|
---|
159 | {
|
---|
160 | vector< vector< Double_t >* >::iterator itPhiBin;
|
---|
161 | if(fItParticleInputArray) delete fItParticleInputArray;
|
---|
162 | if(fItTrackInputArray) delete fItTrackInputArray;
|
---|
163 | for(itPhiBin = fPhiBins.begin(); itPhiBin != fPhiBins.end(); ++itPhiBin)
|
---|
164 | {
|
---|
165 | delete *itPhiBin;
|
---|
166 | }
|
---|
167 | }
|
---|
168 |
|
---|
169 | //------------------------------------------------------------------------------
|
---|
170 |
|
---|
171 | void Calorimeter::Process()
|
---|
172 | {
|
---|
173 | Candidate *particle, *track;
|
---|
174 | TLorentzVector position, momentum;
|
---|
175 | Short_t etaBin, phiBin, flags;
|
---|
176 | Int_t number;
|
---|
177 | Long64_t towerHit, towerEtaPhi, hitEtaPhi;
|
---|
178 | Double_t ecalFraction, hcalFraction;
|
---|
179 | Double_t ecalEnergy, hcalEnergy;
|
---|
180 | Int_t pdgCode;
|
---|
181 |
|
---|
182 | TFractionMap::iterator itFractionMap;
|
---|
183 |
|
---|
184 | vector< Double_t >::iterator itEtaBin;
|
---|
185 | vector< Double_t >::iterator itPhiBin;
|
---|
186 | vector< Double_t > *phiBins;
|
---|
187 |
|
---|
188 | vector< Long64_t >::iterator itTowerHits;
|
---|
189 |
|
---|
190 | DelphesFactory *factory = GetFactory();
|
---|
191 | fTowerHits.clear();
|
---|
192 | fTowerECalFractions.clear();
|
---|
193 | fTowerHCalFractions.clear();
|
---|
194 | fTrackECalFractions.clear();
|
---|
195 | fTrackHCalFractions.clear();
|
---|
196 |
|
---|
197 | // loop over all particles
|
---|
198 | fItParticleInputArray->Reset();
|
---|
199 | number = -1;
|
---|
200 | while((particle = static_cast<Candidate*>(fItParticleInputArray->Next())))
|
---|
201 | {
|
---|
202 | const TLorentzVector &particlePosition = particle->Position;
|
---|
203 | ++number;
|
---|
204 |
|
---|
205 | pdgCode = TMath::Abs(particle->PID);
|
---|
206 |
|
---|
207 | itFractionMap = fFractionMap.find(pdgCode);
|
---|
208 | if(itFractionMap == fFractionMap.end())
|
---|
209 | {
|
---|
210 | itFractionMap = fFractionMap.find(0);
|
---|
211 | }
|
---|
212 |
|
---|
213 | ecalFraction = itFractionMap->second.first;
|
---|
214 | hcalFraction = itFractionMap->second.second;
|
---|
215 |
|
---|
216 | fTowerECalFractions.push_back(ecalFraction);
|
---|
217 | fTowerHCalFractions.push_back(hcalFraction);
|
---|
218 |
|
---|
219 | if(ecalFraction < 1.0E-9 && hcalFraction < 1.0E-9) continue;
|
---|
220 |
|
---|
221 | // find eta bin [1, fEtaBins.size - 1]
|
---|
222 | itEtaBin = lower_bound(fEtaBins.begin(), fEtaBins.end(), particlePosition.Eta());
|
---|
223 | if(itEtaBin == fEtaBins.begin() || itEtaBin == fEtaBins.end()) continue;
|
---|
224 | etaBin = distance(fEtaBins.begin(), itEtaBin);
|
---|
225 |
|
---|
226 | // phi bins for given eta bin
|
---|
227 | phiBins = fPhiBins[etaBin];
|
---|
228 |
|
---|
229 | // find phi bin [1, phiBins.size - 1]
|
---|
230 | itPhiBin = lower_bound(phiBins->begin(), phiBins->end(), particlePosition.Phi());
|
---|
231 | if(itPhiBin == phiBins->begin() || itPhiBin == phiBins->end()) continue;
|
---|
232 | phiBin = distance(phiBins->begin(), itPhiBin);
|
---|
233 |
|
---|
234 | flags = 0;
|
---|
235 | flags |= (pdgCode == 11 || pdgCode == 22) << 1;
|
---|
236 |
|
---|
237 | // make tower hit {16-bits for eta bin number, 16-bits for phi bin number, 8-bits for flags, 24-bits for particle number}
|
---|
238 | towerHit = (Long64_t(etaBin) << 48) | (Long64_t(phiBin) << 32) | (Long64_t(flags) << 24) | Long64_t(number);
|
---|
239 |
|
---|
240 | fTowerHits.push_back(towerHit);
|
---|
241 | }
|
---|
242 |
|
---|
243 | // loop over all tracks
|
---|
244 | fItTrackInputArray->Reset();
|
---|
245 | number = -1;
|
---|
246 | while((track = static_cast<Candidate*>(fItTrackInputArray->Next())))
|
---|
247 | {
|
---|
248 | const TLorentzVector &trackPosition = track->Position;
|
---|
249 | ++number;
|
---|
250 |
|
---|
251 | pdgCode = TMath::Abs(track->PID);
|
---|
252 |
|
---|
253 | itFractionMap = fFractionMap.find(pdgCode);
|
---|
254 | if(itFractionMap == fFractionMap.end())
|
---|
255 | {
|
---|
256 | itFractionMap = fFractionMap.find(0);
|
---|
257 | }
|
---|
258 |
|
---|
259 | ecalFraction = itFractionMap->second.first;
|
---|
260 | hcalFraction = itFractionMap->second.second;
|
---|
261 |
|
---|
262 | fTrackECalFractions.push_back(ecalFraction);
|
---|
263 | fTrackHCalFractions.push_back(hcalFraction);
|
---|
264 |
|
---|
265 | // find eta bin [1, fEtaBins.size - 1]
|
---|
266 | itEtaBin = lower_bound(fEtaBins.begin(), fEtaBins.end(), trackPosition.Eta());
|
---|
267 | if(itEtaBin == fEtaBins.begin() || itEtaBin == fEtaBins.end()) continue;
|
---|
268 | etaBin = distance(fEtaBins.begin(), itEtaBin);
|
---|
269 |
|
---|
270 | // phi bins for given eta bin
|
---|
271 | phiBins = fPhiBins[etaBin];
|
---|
272 |
|
---|
273 | // find phi bin [1, phiBins.size - 1]
|
---|
274 | itPhiBin = lower_bound(phiBins->begin(), phiBins->end(), trackPosition.Phi());
|
---|
275 | if(itPhiBin == phiBins->begin() || itPhiBin == phiBins->end()) continue;
|
---|
276 | phiBin = distance(phiBins->begin(), itPhiBin);
|
---|
277 |
|
---|
278 | flags = 1;
|
---|
279 |
|
---|
280 | // make tower hit {16-bits for eta bin number, 16-bits for phi bin number, 8-bits for flags, 24-bits for track number}
|
---|
281 | towerHit = (Long64_t(etaBin) << 48) | (Long64_t(phiBin) << 32) | (Long64_t(flags) << 24) | Long64_t(number);
|
---|
282 |
|
---|
283 | fTowerHits.push_back(towerHit);
|
---|
284 | }
|
---|
285 |
|
---|
286 | // all hits are sorted first by eta bin number, then by phi bin number,
|
---|
287 | // then by flags and then by particle or track number
|
---|
288 | sort(fTowerHits.begin(), fTowerHits.end());
|
---|
289 |
|
---|
290 | // loop over all hits
|
---|
291 | towerEtaPhi = 0;
|
---|
292 | fTower = 0;
|
---|
293 | for(itTowerHits = fTowerHits.begin(); itTowerHits != fTowerHits.end(); ++itTowerHits)
|
---|
294 | {
|
---|
295 | towerHit = (*itTowerHits);
|
---|
296 | flags = (towerHit >> 24) & 0x00000000000000FFLL;
|
---|
297 | number = (towerHit) & 0x0000000000FFFFFFLL;
|
---|
298 | hitEtaPhi = towerHit >> 32;
|
---|
299 |
|
---|
300 | if(towerEtaPhi != hitEtaPhi)
|
---|
301 | {
|
---|
302 | // switch to next tower
|
---|
303 | towerEtaPhi = hitEtaPhi;
|
---|
304 |
|
---|
305 | // finalize previous tower
|
---|
306 | FinalizeTower();
|
---|
307 |
|
---|
308 | // create new tower
|
---|
309 | fTower = factory->NewCandidate();
|
---|
310 |
|
---|
311 | phiBin = (towerHit >> 32) & 0x000000000000FFFFLL;
|
---|
312 | etaBin = (towerHit >> 48) & 0x000000000000FFFFLL;
|
---|
313 |
|
---|
314 | // phi bins for given eta bin
|
---|
315 | phiBins = fPhiBins[etaBin];
|
---|
316 |
|
---|
317 | // calculate eta and phi of the tower's center
|
---|
318 | fTowerEta = 0.5*(fEtaBins[etaBin - 1] + fEtaBins[etaBin]);
|
---|
319 | fTowerPhi = 0.5*((*phiBins)[phiBin - 1] + (*phiBins)[phiBin]);
|
---|
320 |
|
---|
321 | fTowerEdges[0] = fEtaBins[etaBin - 1];
|
---|
322 | fTowerEdges[1] = fEtaBins[etaBin];
|
---|
323 | fTowerEdges[2] = (*phiBins)[phiBin - 1];
|
---|
324 | fTowerEdges[3] = (*phiBins)[phiBin];
|
---|
325 |
|
---|
326 | fTowerECalEnergy = 0.0;
|
---|
327 | fTowerHCalEnergy = 0.0;
|
---|
328 |
|
---|
329 | fTrackECalEnergy = 0.0;
|
---|
330 | fTrackHCalEnergy = 0.0;
|
---|
331 |
|
---|
332 | fTowerTrackHits = 0;
|
---|
333 | fTowerPhotonHits = 0;
|
---|
334 |
|
---|
335 | fTowerTrackArray->Clear();
|
---|
336 | }
|
---|
337 |
|
---|
338 | // check for track hits
|
---|
339 | if(flags & 1)
|
---|
340 | {
|
---|
341 | ++fTowerTrackHits;
|
---|
342 |
|
---|
343 | track = static_cast<Candidate*>(fTrackInputArray->At(number));
|
---|
344 | momentum = track->Momentum;
|
---|
345 |
|
---|
346 | ecalEnergy = momentum.E() * fTrackECalFractions[number];
|
---|
347 | hcalEnergy = momentum.E() * fTrackHCalFractions[number];
|
---|
348 |
|
---|
349 | fTrackECalEnergy += ecalEnergy;
|
---|
350 | fTrackHCalEnergy += hcalEnergy;
|
---|
351 |
|
---|
352 | fTowerTrackArray->Add(track);
|
---|
353 |
|
---|
354 | continue;
|
---|
355 | }
|
---|
356 |
|
---|
357 | // check for photon and electron hits in current tower
|
---|
358 | if(flags & 2) ++fTowerPhotonHits;
|
---|
359 |
|
---|
360 | particle = static_cast<Candidate*>(fParticleInputArray->At(number));
|
---|
361 | momentum = particle->Momentum;
|
---|
362 |
|
---|
363 | // fill current tower
|
---|
364 | ecalEnergy = momentum.E() * fTowerECalFractions[number];
|
---|
365 | hcalEnergy = momentum.E() * fTowerHCalFractions[number];
|
---|
366 |
|
---|
367 | fTowerECalEnergy += ecalEnergy;
|
---|
368 | fTowerHCalEnergy += hcalEnergy;
|
---|
369 |
|
---|
370 | fTower->AddCandidate(particle);
|
---|
371 | }
|
---|
372 |
|
---|
373 | // finalize last tower
|
---|
374 | FinalizeTower();
|
---|
375 | }
|
---|
376 |
|
---|
377 | //------------------------------------------------------------------------------
|
---|
378 |
|
---|
379 | void Calorimeter::FinalizeTower()
|
---|
380 | {
|
---|
381 | Candidate *track, *tower;
|
---|
382 | Double_t energy, pt, eta, phi;
|
---|
383 | Double_t ecalEnergy, hcalEnergy;
|
---|
384 | Double_t ecalSigma, hcalSigma;
|
---|
385 |
|
---|
386 | if(!fTower) return;
|
---|
387 |
|
---|
388 | ecalSigma = fECalResolutionFormula->Eval(0.0, fTowerEta, 0.0, fTowerECalEnergy);
|
---|
389 |
|
---|
390 | ecalEnergy = gRandom->Gaus(fTowerECalEnergy, ecalSigma);
|
---|
391 | if(ecalEnergy < 0.0) ecalEnergy = 0.0;
|
---|
392 |
|
---|
393 | // ecalEnergy = LogNormal(fTowerECalEnergy, ecalSigma);
|
---|
394 |
|
---|
395 | hcalSigma = fHCalResolutionFormula->Eval(0.0, fTowerEta, 0.0, fTowerHCalEnergy);
|
---|
396 |
|
---|
397 | hcalEnergy = gRandom->Gaus(fTowerHCalEnergy, hcalSigma);
|
---|
398 | if(hcalEnergy < 0.0) hcalEnergy = 0.0;
|
---|
399 |
|
---|
400 | // hcalEnergy = LogNormal(fTowerHCalEnergy, hcalSigma);
|
---|
401 |
|
---|
402 | energy = ecalEnergy + hcalEnergy;
|
---|
403 |
|
---|
404 | // eta = fTowerEta;
|
---|
405 | // phi = fTowerPhi;
|
---|
406 |
|
---|
407 | eta = gRandom->Uniform(fTowerEdges[0], fTowerEdges[1]);
|
---|
408 | phi = gRandom->Uniform(fTowerEdges[2], fTowerEdges[3]);
|
---|
409 |
|
---|
410 | pt = energy / TMath::CosH(eta);
|
---|
411 |
|
---|
412 | fTower->Position.SetPtEtaPhiE(1.0, eta, phi, 0.0);
|
---|
413 | fTower->Momentum.SetPtEtaPhiE(pt, eta, phi, energy);
|
---|
414 | fTower->Eem = ecalEnergy;
|
---|
415 | fTower->Ehad = hcalEnergy;
|
---|
416 |
|
---|
417 | fTower->Edges[0] = fTowerEdges[0];
|
---|
418 | fTower->Edges[1] = fTowerEdges[1];
|
---|
419 | fTower->Edges[2] = fTowerEdges[2];
|
---|
420 | fTower->Edges[3] = fTowerEdges[3];
|
---|
421 |
|
---|
422 | // fill calorimeter towers and photon candidates
|
---|
423 | if(energy > 0.0)
|
---|
424 | {
|
---|
425 | if(fTowerPhotonHits > 0 && fTowerTrackHits == 0)
|
---|
426 | {
|
---|
427 | fPhotonOutputArray->Add(fTower);
|
---|
428 | }
|
---|
429 |
|
---|
430 | fTowerOutputArray->Add(fTower);
|
---|
431 | }
|
---|
432 |
|
---|
433 | // fill energy flow candidates
|
---|
434 |
|
---|
435 | // save all the tracks as energy flow tracks
|
---|
436 | fItTowerTrackArray->Reset();
|
---|
437 | while((track = static_cast<Candidate*>(fItTowerTrackArray->Next())))
|
---|
438 | {
|
---|
439 | fEFlowTrackOutputArray->Add(track);
|
---|
440 | }
|
---|
441 |
|
---|
442 | ecalEnergy -= fTrackECalEnergy;
|
---|
443 | if(ecalEnergy < 0.0) ecalEnergy = 0.0;
|
---|
444 |
|
---|
445 | hcalEnergy -= fTrackHCalEnergy;
|
---|
446 | if(hcalEnergy < 0.0) hcalEnergy = 0.0;
|
---|
447 |
|
---|
448 | energy = ecalEnergy + hcalEnergy;
|
---|
449 |
|
---|
450 | // save ECAL and/or HCAL energy excess as an energy flow tower
|
---|
451 | if(energy > 0.0)
|
---|
452 | {
|
---|
453 | // create new tower
|
---|
454 | tower = static_cast<Candidate*>(fTower->Clone());
|
---|
455 |
|
---|
456 | pt = energy / TMath::CosH(eta);
|
---|
457 |
|
---|
458 | tower->Momentum.SetPtEtaPhiE(pt, eta, phi, energy);
|
---|
459 | tower->Eem = ecalEnergy;
|
---|
460 | tower->Ehad = hcalEnergy;
|
---|
461 |
|
---|
462 | fEFlowTowerOutputArray->Add(tower);
|
---|
463 | }
|
---|
464 | }
|
---|
465 |
|
---|
466 | //------------------------------------------------------------------------------
|
---|
467 |
|
---|
468 | Double_t Calorimeter::LogNormal(Double_t mean, Double_t sigma)
|
---|
469 | {
|
---|
470 | Double_t a, b;
|
---|
471 |
|
---|
472 | if(mean > 0.0)
|
---|
473 | {
|
---|
474 | b = TMath::Sqrt(TMath::Log((1.0 + (sigma*sigma)/(mean*mean))));
|
---|
475 | a = TMath::Log(mean) - 0.5*b*b;
|
---|
476 |
|
---|
477 | return TMath::Exp(a + b*gRandom->Gaus(0, 1));
|
---|
478 | }
|
---|
479 | else
|
---|
480 | {
|
---|
481 | return 0.0;
|
---|
482 | }
|
---|
483 | }
|
---|