Fork me on GitHub

source: git/modules/Calorimeter.h@ 49234af

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 49234af was 51f7063, checked in by Michele <michele.selvaggi@…>, 10 years ago

prepend GPLv3 header

  • 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 * $Date$
28 * $Revision$
29 *
30 *
31 * \author P. Demin - UCL, Louvain-la-Neuve
32 *
33 */
34
35#include "classes/DelphesModule.h"
36
37#include <map>
38#include <set>
39#include <vector>
40
41class TObjArray;
42class DelphesFormula;
43class Candidate;
44
45class Calorimeter: public DelphesModule
46{
47public:
48
49 Calorimeter();
50 ~Calorimeter();
51
52 void Init();
53 void Process();
54 void Finish();
55
56private:
57
58 typedef std::map< Long64_t, std::pair< Double_t, Double_t > > TFractionMap; //!
59 typedef std::map< Double_t, std::set< Double_t > > TBinMap; //!
60
61 Candidate *fTower;
62 Double_t fTowerEta, fTowerPhi, fTowerEdges[4];
63 Double_t fTowerECalEnergy, fTowerHCalEnergy;
64 Double_t fTrackECalEnergy, fTrackHCalEnergy;
65
66 Double_t fTowerECalTime, fTowerHCalTime;
67 Double_t fTrackECalTime, fTrackHCalTime;
68
69 Double_t fTowerECalWeightTime, fTowerHCalWeightTime;
70 Double_t fTrackECalWeightTime, fTrackHCalWeightTime;
71
72 Int_t fTowerTrackHits, fTowerPhotonHits;
73
74 Double_t fEcalEnergyMin;
75 Double_t fHcalEnergyMin;
76
77 Double_t fEcalSigmaMin;
78 Double_t fHcalSigmaMin;
79
80 TFractionMap fFractionMap; //!
81 TBinMap fBinMap; //!
82
83 std::vector < Double_t > fEtaBins;
84 std::vector < std::vector < Double_t >* > fPhiBins;
85
86 std::vector < Long64_t > fTowerHits;
87
88 std::vector < Double_t > fTowerECalFractions;
89 std::vector < Double_t > fTowerHCalFractions;
90
91 std::vector < Double_t > fTrackECalFractions;
92 std::vector < Double_t > fTrackHCalFractions;
93
94 DelphesFormula *fECalResolutionFormula; //!
95 DelphesFormula *fHCalResolutionFormula; //!
96
97 TIterator *fItParticleInputArray; //!
98 TIterator *fItTrackInputArray; //!
99
100 const TObjArray *fParticleInputArray; //!
101 const TObjArray *fTrackInputArray; //!
102
103 TObjArray *fTowerOutputArray; //!
104 TObjArray *fPhotonOutputArray; //!
105
106 TObjArray *fEFlowTrackOutputArray; //!
107 TObjArray *fEFlowPhotonOutputArray; //!
108 TObjArray *fEFlowNeutralHadronOutputArray; //!
109
110 TObjArray *fTowerTrackArray; //!
111 TIterator *fItTowerTrackArray; //!
112
113 void FinalizeTower();
114 Double_t LogNormal(Double_t mean, Double_t sigma);
115
116 ClassDef(Calorimeter, 1)
117};
118
119#endif
Note: See TracBrowser for help on using the repository browser.