Fork me on GitHub

source: git/modules/Calorimeter.h@ e576ef60

ImprovedOutputFile Timing dual_readout llp
Last change on this file since e576ef60 was 04290b1, checked in by Michele Selvaggi <michele.selvaggi@…>, 8 years ago

new particle-flow

  • Property mode set to 100644
File size: 3.1 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
45 Calorimeter();
46 ~Calorimeter();
47
48 void Init();
49 void Process();
50 void Finish();
51
52private:
53
54 typedef std::map< Long64_t, std::pair< Double_t, Double_t > > TFractionMap; //!
55 typedef std::map< Double_t, std::set< Double_t > > TBinMap; //!
56
57 Candidate *fTower;
58 Double_t fTowerEta, fTowerPhi, fTowerEdges[4];
59 Double_t fECalTowerEnergy, fHCalTowerEnergy;
60 Double_t fECalTrackEnergy, fHCalTrackEnergy;
61
62 Double_t fTimingEnergyMin;
63 Bool_t fElectronsFromTrack;
64
65 Int_t fTowerTrackHits, fTowerPhotonHits;
66
67 Double_t fECalEnergyMin;
68 Double_t fHCalEnergyMin;
69
70 Double_t fECalEnergySignificanceMin;
71 Double_t fHCalEnergySignificanceMin;
72
73 Double_t fECalTrackSigma;
74 Double_t fHCalTrackSigma;
75
76 Bool_t fSmearTowerCenter;
77
78 TFractionMap fFractionMap; //!
79 TBinMap fBinMap; //!
80
81 std::vector < Double_t > fEtaBins;
82 std::vector < std::vector < Double_t >* > fPhiBins;
83
84 std::vector < Long64_t > fTowerHits;
85
86 std::vector < Double_t > fECalTowerFractions;
87 std::vector < Double_t > fHCalTowerFractions;
88
89 std::vector < Double_t > fECalTrackFractions;
90 std::vector < Double_t > fHCalTrackFractions;
91
92 DelphesFormula *fECalResolutionFormula; //!
93 DelphesFormula *fHCalResolutionFormula; //!
94
95 TIterator *fItParticleInputArray; //!
96 TIterator *fItTrackInputArray; //!
97
98 const TObjArray *fParticleInputArray; //!
99 const TObjArray *fTrackInputArray; //!
100
101 TObjArray *fTowerOutputArray; //!
102 TObjArray *fPhotonOutputArray; //!
103
104 TObjArray *fEFlowTrackOutputArray; //!
105 TObjArray *fEFlowPhotonOutputArray; //!
106 TObjArray *fEFlowNeutralHadronOutputArray; //!
107
108 TObjArray *fECalTowerTrackArray; //!
109 TIterator *fItECalTowerTrackArray; //!
110
111 TObjArray *fHCalTowerTrackArray; //!
112 TIterator *fItHCalTowerTrackArray; //!
113
114 void FinalizeTower();
115 Double_t LogNormal(Double_t mean, Double_t sigma);
116
117 ClassDef(Calorimeter, 1)
118};
119
120#endif
Note: See TracBrowser for help on using the repository browser.