Fork me on GitHub

source: git/modules/Calorimeter.h@ e09b9bf

Last change on this file since e09b9bf was 77e9ae1, checked in by Pavel Demin <pavel-demin@…>, 5 years ago

set Standard to Cpp03 in .clang-format

  • Property mode set to 100644
File size: 3.0 KB
Line 
1/*
2 * Delphes: a framework for fast simulation of a generic collider experiment
3 * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19#ifndef Calorimeter_h
20#define Calorimeter_h
21
22/** \class Calorimeter
23 *
24 * Fills calorimeter towers, performs calorimeter resolution smearing,
25 * and creates energy flow objects (tracks, photons, and neutral hadrons).
26 *
27 * \author P. Demin - UCL, Louvain-la-Neuve
28 *
29 */
30
31#include "classes/DelphesModule.h"
32
33#include <map>
34#include <set>
35#include <vector>
36
37class TObjArray;
38class DelphesFormula;
39class Candidate;
40
41class Calorimeter: public DelphesModule
42{
43public:
44 Calorimeter();
45 ~Calorimeter();
46
47 void Init();
48 void Process();
49 void Finish();
50
51private:
52 typedef std::map<Long64_t, std::pair<Double_t, Double_t> > TFractionMap; //!
53 typedef std::map<Double_t, std::set<Double_t> > TBinMap; //!
54
55 Candidate *fTower;
56 Double_t fTowerEta, fTowerPhi, fTowerEdges[4];
57 Double_t fECalTowerEnergy, fHCalTowerEnergy;
58 Double_t fECalTrackEnergy, fHCalTrackEnergy;
59
60 Double_t fTimingEnergyMin;
61 Bool_t fElectronsFromTrack;
62
63 Int_t fTowerTrackHits, fTowerPhotonHits;
64
65 Double_t fECalEnergyMin;
66 Double_t fHCalEnergyMin;
67
68 Double_t fECalEnergySignificanceMin;
69 Double_t fHCalEnergySignificanceMin;
70
71 Double_t fECalTrackSigma;
72 Double_t fHCalTrackSigma;
73
74 Bool_t fSmearTowerCenter;
75
76 TFractionMap fFractionMap; //!
77 TBinMap fBinMap; //!
78
79 std::vector<Double_t> fEtaBins;
80 std::vector<std::vector<Double_t> *> fPhiBins;
81
82 std::vector<Long64_t> fTowerHits;
83
84 std::vector<Double_t> fECalTowerFractions;
85 std::vector<Double_t> fHCalTowerFractions;
86
87 std::vector<Double_t> fECalTrackFractions;
88 std::vector<Double_t> fHCalTrackFractions;
89
90 DelphesFormula *fECalResolutionFormula; //!
91 DelphesFormula *fHCalResolutionFormula; //!
92
93 TIterator *fItParticleInputArray; //!
94 TIterator *fItTrackInputArray; //!
95
96 const TObjArray *fParticleInputArray; //!
97 const TObjArray *fTrackInputArray; //!
98
99 TObjArray *fTowerOutputArray; //!
100 TObjArray *fPhotonOutputArray; //!
101
102 TObjArray *fEFlowTrackOutputArray; //!
103 TObjArray *fEFlowPhotonOutputArray; //!
104 TObjArray *fEFlowNeutralHadronOutputArray; //!
105
106 TObjArray *fECalTowerTrackArray; //!
107 TIterator *fItECalTowerTrackArray; //!
108
109 TObjArray *fHCalTowerTrackArray; //!
110 TIterator *fItHCalTowerTrackArray; //!
111
112 void FinalizeTower();
113 Double_t LogNormal(Double_t mean, Double_t sigma);
114
115 ClassDef(Calorimeter, 1)
116};
117
118#endif
Note: See TracBrowser for help on using the repository browser.