[fc6300d] | 1 |
|
---|
[51f7063] | 2 | /*
|
---|
| 3 | * Delphes: a framework for fast simulation of a generic collider experiment
|
---|
| 4 | * Copyright (C) 2012-2014 Universite catholique de Louvain (UCL), Belgium
|
---|
[1fa50c2] | 5 | *
|
---|
[51f7063] | 6 | * This program is free software: you can redistribute it and/or modify
|
---|
| 7 | * it under the terms of the GNU General Public License as published by
|
---|
| 8 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 9 | * (at your option) any later version.
|
---|
[1fa50c2] | 10 | *
|
---|
[51f7063] | 11 | * This program is distributed in the hope that it will be useful,
|
---|
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 14 | * GNU General Public License for more details.
|
---|
[1fa50c2] | 15 | *
|
---|
[51f7063] | 16 | * You should have received a copy of the GNU General Public License
|
---|
| 17 | * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 18 | */
|
---|
| 19 |
|
---|
[82575a3] | 20 | #ifndef SimpleCalorimeter_h
|
---|
| 21 | #define SimpleCalorimeter_h
|
---|
| 22 |
|
---|
| 23 | /** \class SimpleCalorimeter
|
---|
| 24 | *
|
---|
| 25 | * Fills SimpleCalorimeter towers, performs SimpleCalorimeter resolution smearing,
|
---|
| 26 | * and creates energy flow objects (tracks, photons, and neutral hadrons).
|
---|
| 27 | *
|
---|
| 28 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 29 | *
|
---|
| 30 | */
|
---|
| 31 |
|
---|
| 32 | #include "classes/DelphesModule.h"
|
---|
| 33 |
|
---|
| 34 | #include <map>
|
---|
| 35 | #include <set>
|
---|
| 36 | #include <vector>
|
---|
| 37 |
|
---|
| 38 | class TObjArray;
|
---|
| 39 | class DelphesFormula;
|
---|
| 40 | class Candidate;
|
---|
| 41 |
|
---|
| 42 | class SimpleCalorimeter: public DelphesModule
|
---|
| 43 | {
|
---|
| 44 | public:
|
---|
| 45 | SimpleCalorimeter();
|
---|
| 46 | ~SimpleCalorimeter();
|
---|
| 47 |
|
---|
| 48 | void Init();
|
---|
| 49 | void Process();
|
---|
| 50 | void Finish();
|
---|
| 51 |
|
---|
| 52 | private:
|
---|
[341014c] | 53 | typedef std::map<Long64_t, Double_t> TFractionMap; //!
|
---|
[77e9ae1] | 54 | typedef std::map<Double_t, std::set<Double_t> > TBinMap; //!
|
---|
[82575a3] | 55 |
|
---|
| 56 | Candidate *fTower;
|
---|
| 57 | Double_t fTowerEta, fTowerPhi, fTowerEdges[4];
|
---|
| 58 | Double_t fTowerEnergy;
|
---|
[efac6f9] | 59 | Double_t fTrackEnergy;
|
---|
[e5767b57] | 60 |
|
---|
[82575a3] | 61 | Double_t fTowerTime;
|
---|
| 62 | Double_t fTrackTime;
|
---|
[e5767b57] | 63 |
|
---|
| 64 | Double_t fTowerTimeWeight;
|
---|
| 65 | Double_t fTrackTimeWeight;
|
---|
| 66 |
|
---|
[82575a3] | 67 | Int_t fTowerTrackHits, fTowerPhotonHits;
|
---|
| 68 |
|
---|
[4b9a2dc] | 69 | Double_t fEnergyMin;
|
---|
[e5767b57] | 70 |
|
---|
| 71 | Double_t fEnergySignificanceMin;
|
---|
| 72 |
|
---|
[efac6f9] | 73 | Double_t fTrackSigma;
|
---|
| 74 |
|
---|
[4e09c3a] | 75 | Bool_t fSmearTowerCenter;
|
---|
[4b9a2dc] | 76 |
|
---|
[df636c74] | 77 | Bool_t fIsEcal; //!
|
---|
[fc6300d] | 78 |
|
---|
[82575a3] | 79 | TFractionMap fFractionMap; //!
|
---|
| 80 | TBinMap fBinMap; //!
|
---|
| 81 |
|
---|
[341014c] | 82 | std::vector<Double_t> fEtaBins;
|
---|
| 83 | std::vector<std::vector<Double_t> *> fPhiBins;
|
---|
[82575a3] | 84 |
|
---|
[341014c] | 85 | std::vector<Long64_t> fTowerHits;
|
---|
[82575a3] | 86 |
|
---|
[341014c] | 87 | std::vector<Double_t> fTowerFractions;
|
---|
[e5767b57] | 88 |
|
---|
[341014c] | 89 | std::vector<Double_t> fTrackFractions;
|
---|
[e5767b57] | 90 |
|
---|
[82575a3] | 91 | DelphesFormula *fResolutionFormula; //!
|
---|
[e5767b57] | 92 |
|
---|
[82575a3] | 93 | TIterator *fItParticleInputArray; //!
|
---|
| 94 | TIterator *fItTrackInputArray; //!
|
---|
| 95 |
|
---|
| 96 | const TObjArray *fParticleInputArray; //!
|
---|
| 97 | const TObjArray *fTrackInputArray; //!
|
---|
| 98 |
|
---|
| 99 | TObjArray *fTowerOutputArray; //!
|
---|
[e5767b57] | 100 |
|
---|
[a98c7ef] | 101 | TObjArray *fEFlowTrackOutputArray; //!
|
---|
[82575a3] | 102 | TObjArray *fEFlowTowerOutputArray; //!
|
---|
[df636c74] | 103 |
|
---|
[efac6f9] | 104 | TObjArray *fTowerTrackArray; //!
|
---|
| 105 | TIterator *fItTowerTrackArray; //!
|
---|
[82575a3] | 106 |
|
---|
| 107 | void FinalizeTower();
|
---|
| 108 | Double_t LogNormal(Double_t mean, Double_t sigma);
|
---|
| 109 |
|
---|
| 110 | ClassDef(SimpleCalorimeter, 1)
|
---|
| 111 | };
|
---|
| 112 |
|
---|
| 113 | #endif
|
---|