Fork me on GitHub

source: git/modules/Calorimeter.h@ c4d879d

ImprovedOutputFile Timing dual_readout llp
Last change on this file since c4d879d was 7c0fcd5, checked in by Pavel Demin <demin@…>, 10 years ago

delete duplicate license file and prepend GPLv3 header to all source code files

  • 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 * $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 TFractionMap fFractionMap; //!
75 TBinMap fBinMap; //!
76
77 std::vector < Double_t > fEtaBins;
78 std::vector < std::vector < Double_t >* > fPhiBins;
79
80 std::vector < Long64_t > fTowerHits;
81
82 std::vector < Double_t > fTowerECalFractions;
83 std::vector < Double_t > fTowerHCalFractions;
84
85 std::vector < Double_t > fTrackECalFractions;
86 std::vector < Double_t > fTrackHCalFractions;
87
88 DelphesFormula *fECalResolutionFormula; //!
89 DelphesFormula *fHCalResolutionFormula; //!
90
91 TIterator *fItParticleInputArray; //!
92 TIterator *fItTrackInputArray; //!
93
94 const TObjArray *fParticleInputArray; //!
95 const TObjArray *fTrackInputArray; //!
96
97 TObjArray *fTowerOutputArray; //!
98 TObjArray *fPhotonOutputArray; //!
99
100 TObjArray *fEFlowTrackOutputArray; //!
101 TObjArray *fEFlowPhotonOutputArray; //!
102 TObjArray *fEFlowNeutralHadronOutputArray; //!
103
104 TObjArray *fTowerTrackArray; //!
105 TIterator *fItTowerTrackArray; //!
106
107 void FinalizeTower();
108 Double_t LogNormal(Double_t mean, Double_t sigma);
109
110 ClassDef(Calorimeter, 1)
111};
112
113#endif
Note: See TracBrowser for help on using the repository browser.