[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
|
---|
| 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 |
|
---|
[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 | * $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 |
|
---|
| 41 | class TObjArray;
|
---|
| 42 | class DelphesFormula;
|
---|
| 43 | class Candidate;
|
---|
| 44 |
|
---|
| 45 | class Calorimeter: public DelphesModule
|
---|
| 46 | {
|
---|
| 47 | public:
|
---|
| 48 |
|
---|
| 49 | Calorimeter();
|
---|
| 50 | ~Calorimeter();
|
---|
| 51 |
|
---|
| 52 | void Init();
|
---|
| 53 | void Process();
|
---|
| 54 | void Finish();
|
---|
[4600a41] | 55 |
|
---|
[d7d2da3] | 56 | private:
|
---|
| 57 |
|
---|
[82575a3] | 58 | typedef std::map< Long64_t, std::pair< Double_t, Double_t > > TFractionMap; //!
|
---|
[d7d2da3] | 59 | typedef std::map< Double_t, std::set< Double_t > > TBinMap; //!
|
---|
| 60 |
|
---|
| 61 | Candidate *fTower;
|
---|
| 62 | Double_t fTowerEta, fTowerPhi, fTowerEdges[4];
|
---|
[82575a3] | 63 | Double_t fTowerECalEnergy, fTowerHCalEnergy;
|
---|
| 64 | Double_t fTrackECalEnergy, fTrackHCalEnergy;
|
---|
[22dc7fd] | 65 |
|
---|
[82575a3] | 66 | Double_t fTowerECalTime, fTowerHCalTime;
|
---|
| 67 | Double_t fTrackECalTime, fTrackHCalTime;
|
---|
[22dc7fd] | 68 |
|
---|
[82575a3] | 69 | Double_t fTowerECalWeightTime, fTowerHCalWeightTime;
|
---|
| 70 | Double_t fTrackECalWeightTime, fTrackHCalWeightTime;
|
---|
[22dc7fd] | 71 |
|
---|
[2dab783] | 72 | Int_t fTowerTrackHits, fTowerPhotonHits;
|
---|
[d7d2da3] | 73 |
|
---|
[4b9a2dc] | 74 | Double_t fEcalEnergyMin;
|
---|
| 75 | Double_t fHcalEnergyMin;
|
---|
| 76 |
|
---|
| 77 | Double_t fEcalSigmaMin;
|
---|
| 78 | Double_t fHcalSigmaMin;
|
---|
| 79 |
|
---|
[d7d2da3] | 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 |
|
---|
[82575a3] | 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 |
|
---|
[d7d2da3] | 97 | TIterator *fItParticleInputArray; //!
|
---|
| 98 | TIterator *fItTrackInputArray; //!
|
---|
| 99 |
|
---|
| 100 | const TObjArray *fParticleInputArray; //!
|
---|
| 101 | const TObjArray *fTrackInputArray; //!
|
---|
| 102 |
|
---|
| 103 | TObjArray *fTowerOutputArray; //!
|
---|
[82575a3] | 104 | TObjArray *fPhotonOutputArray; //!
|
---|
[d4c4d9d] | 105 |
|
---|
[82575a3] | 106 | TObjArray *fEFlowTrackOutputArray; //!
|
---|
| 107 | TObjArray *fEFlowPhotonOutputArray; //!
|
---|
| 108 | TObjArray *fEFlowNeutralHadronOutputArray; //!
|
---|
| 109 |
|
---|
[9493a0f] | 110 | TObjArray *fTowerTrackArray; //!
|
---|
| 111 | TIterator *fItTowerTrackArray; //!
|
---|
| 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
|
---|