[51f7063] | 1 | /*
|
---|
| 2 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
| 3 | * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
|
---|
[1fa50c2] | 4 | *
|
---|
[51f7063] | 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.
|
---|
[1fa50c2] | 9 | *
|
---|
[51f7063] | 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.
|
---|
[1fa50c2] | 14 | *
|
---|
[51f7063] | 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 |
|
---|
[d7d2da3] | 19 | #ifndef Calorimeter_h
|
---|
| 20 | #define Calorimeter_h
|
---|
| 21 |
|
---|
| 22 | /** \class Calorimeter
|
---|
| 23 | *
|
---|
| 24 | * Fills calorimeter towers, performs calorimeter resolution smearing,
|
---|
[d4c4d9d] | 25 | * and creates energy flow objects (tracks, photons, and neutral hadrons).
|
---|
[d7d2da3] | 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 |
|
---|
| 37 | class TObjArray;
|
---|
| 38 | class DelphesFormula;
|
---|
| 39 | class Candidate;
|
---|
| 40 |
|
---|
| 41 | class Calorimeter: public DelphesModule
|
---|
| 42 | {
|
---|
| 43 | public:
|
---|
| 44 | Calorimeter();
|
---|
| 45 | ~Calorimeter();
|
---|
| 46 |
|
---|
| 47 | void Init();
|
---|
| 48 | void Process();
|
---|
| 49 | void Finish();
|
---|
[4600a41] | 50 |
|
---|
[d7d2da3] | 51 | private:
|
---|
[77e9ae1] | 52 | typedef std::map<Long64_t, std::pair<Double_t, Double_t> > TFractionMap; //!
|
---|
| 53 | typedef std::map<Double_t, std::set<Double_t> > TBinMap; //!
|
---|
[d7d2da3] | 54 |
|
---|
| 55 | Candidate *fTower;
|
---|
| 56 | Double_t fTowerEta, fTowerPhi, fTowerEdges[4];
|
---|
[00e8dca] | 57 | Double_t fECalTowerEnergy, fHCalTowerEnergy;
|
---|
[04290b1] | 58 | Double_t fECalTrackEnergy, fHCalTrackEnergy;
|
---|
[a221d1f] | 59 |
|
---|
[839deb7] | 60 | Double_t fTimingEnergyMin;
|
---|
| 61 | Bool_t fElectronsFromTrack;
|
---|
[5eda6767] | 62 | Double_t fTowerRmax;
|
---|
[839deb7] | 63 |
|
---|
[2dab783] | 64 | Int_t fTowerTrackHits, fTowerPhotonHits;
|
---|
[d7d2da3] | 65 |
|
---|
[8624f58] | 66 | Double_t fECalEnergyMin;
|
---|
| 67 | Double_t fHCalEnergyMin;
|
---|
[a221d1f] | 68 |
|
---|
[38bf1ae] | 69 | Double_t fECalEnergySignificanceMin;
|
---|
| 70 | Double_t fHCalEnergySignificanceMin;
|
---|
[a221d1f] | 71 |
|
---|
[04290b1] | 72 | Double_t fECalTrackSigma;
|
---|
| 73 | Double_t fHCalTrackSigma;
|
---|
| 74 |
|
---|
[4e09c3a] | 75 | Bool_t fSmearTowerCenter;
|
---|
[4b9a2dc] | 76 |
|
---|
[d7d2da3] | 77 | TFractionMap fFractionMap; //!
|
---|
| 78 | TBinMap fBinMap; //!
|
---|
| 79 |
|
---|
[341014c] | 80 | std::vector<Double_t> fEtaBins;
|
---|
| 81 | std::vector<std::vector<Double_t> *> fPhiBins;
|
---|
[d7d2da3] | 82 |
|
---|
[341014c] | 83 | std::vector<Long64_t> fTowerHits;
|
---|
[d7d2da3] | 84 |
|
---|
[341014c] | 85 | std::vector<Double_t> fECalTowerFractions;
|
---|
| 86 | std::vector<Double_t> fHCalTowerFractions;
|
---|
[82575a3] | 87 |
|
---|
[341014c] | 88 | std::vector<Double_t> fECalTrackFractions;
|
---|
| 89 | std::vector<Double_t> fHCalTrackFractions;
|
---|
[82575a3] | 90 |
|
---|
| 91 | DelphesFormula *fECalResolutionFormula; //!
|
---|
| 92 | DelphesFormula *fHCalResolutionFormula; //!
|
---|
| 93 |
|
---|
[d7d2da3] | 94 | TIterator *fItParticleInputArray; //!
|
---|
| 95 | TIterator *fItTrackInputArray; //!
|
---|
| 96 |
|
---|
| 97 | const TObjArray *fParticleInputArray; //!
|
---|
| 98 | const TObjArray *fTrackInputArray; //!
|
---|
| 99 |
|
---|
| 100 | TObjArray *fTowerOutputArray; //!
|
---|
[82575a3] | 101 | TObjArray *fPhotonOutputArray; //!
|
---|
[a221d1f] | 102 |
|
---|
[82575a3] | 103 | TObjArray *fEFlowTrackOutputArray; //!
|
---|
| 104 | TObjArray *fEFlowPhotonOutputArray; //!
|
---|
| 105 | TObjArray *fEFlowNeutralHadronOutputArray; //!
|
---|
| 106 |
|
---|
[04290b1] | 107 | TObjArray *fECalTowerTrackArray; //!
|
---|
| 108 | TIterator *fItECalTowerTrackArray; //!
|
---|
[00e8dca] | 109 |
|
---|
[04290b1] | 110 | TObjArray *fHCalTowerTrackArray; //!
|
---|
| 111 | TIterator *fItHCalTowerTrackArray; //!
|
---|
[9493a0f] | 112 |
|
---|
[d7d2da3] | 113 | void FinalizeTower();
|
---|
[4600a41] | 114 | Double_t LogNormal(Double_t mean, Double_t sigma);
|
---|
| 115 |
|
---|
[d7d2da3] | 116 | ClassDef(Calorimeter, 1)
|
---|
| 117 | };
|
---|
| 118 |
|
---|
| 119 | #endif
|
---|