[01f457a] | 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 | *
|
---|
[01f457a] | 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 | *
|
---|
[01f457a] | 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 | *
|
---|
[01f457a] | 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 |
|
---|
[6fb1a5d] | 19 |
|
---|
| 20 | /** \class FastJetGridMedianEstimator
|
---|
| 21 | *
|
---|
| 22 | * Computes median energy density per event using a fixed grid.
|
---|
| 23 | *
|
---|
| 24 | * \author M. Selvaggi - UCL, Louvain-la-Neuve
|
---|
| 25 | *
|
---|
| 26 | */
|
---|
| 27 |
|
---|
| 28 | #include "modules/FastJetGridMedianEstimator.h"
|
---|
| 29 |
|
---|
| 30 | #include "classes/DelphesClasses.h"
|
---|
| 31 | #include "classes/DelphesFactory.h"
|
---|
| 32 | #include "classes/DelphesFormula.h"
|
---|
| 33 |
|
---|
| 34 | #include "ExRootAnalysis/ExRootResult.h"
|
---|
| 35 | #include "ExRootAnalysis/ExRootFilter.h"
|
---|
| 36 | #include "ExRootAnalysis/ExRootClassifier.h"
|
---|
| 37 |
|
---|
| 38 | #include "TMath.h"
|
---|
| 39 | #include "TString.h"
|
---|
| 40 | #include "TFormula.h"
|
---|
| 41 | #include "TRandom3.h"
|
---|
| 42 | #include "TObjArray.h"
|
---|
| 43 | #include "TDatabasePDG.h"
|
---|
| 44 | #include "TLorentzVector.h"
|
---|
| 45 |
|
---|
| 46 | #include <algorithm>
|
---|
| 47 | #include <stdexcept>
|
---|
| 48 | #include <iostream>
|
---|
| 49 | #include <sstream>
|
---|
| 50 | #include <vector>
|
---|
| 51 | #include <utility>
|
---|
| 52 |
|
---|
| 53 | #include "fastjet/PseudoJet.hh"
|
---|
| 54 | #include "fastjet/JetDefinition.hh"
|
---|
| 55 | #include "fastjet/ClusterSequence.hh"
|
---|
| 56 | #include "fastjet/Selector.hh"
|
---|
| 57 | #include "fastjet/RectangularGrid.hh"
|
---|
| 58 | #include "fastjet/ClusterSequenceArea.hh"
|
---|
| 59 | #include "fastjet/tools/JetMedianBackgroundEstimator.hh"
|
---|
| 60 |
|
---|
| 61 | #include "fastjet/tools/GridMedianBackgroundEstimator.hh"
|
---|
| 62 |
|
---|
| 63 | #include "fastjet/plugins/SISCone/fastjet/SISConePlugin.hh"
|
---|
| 64 | #include "fastjet/plugins/CDFCones/fastjet/CDFMidPointPlugin.hh"
|
---|
| 65 | #include "fastjet/plugins/CDFCones/fastjet/CDFJetCluPlugin.hh"
|
---|
| 66 |
|
---|
| 67 | #include "fastjet/contribs/Nsubjettiness/Nsubjettiness.hh"
|
---|
| 68 | #include "fastjet/contribs/Nsubjettiness/Njettiness.hh"
|
---|
| 69 | #include "fastjet/contribs/Nsubjettiness/NjettinessPlugin.hh"
|
---|
[973b92a] | 70 | #include "fastjet/contribs/Nsubjettiness/ExtraRecombiners.hh"
|
---|
[6fb1a5d] | 71 |
|
---|
| 72 | using namespace std;
|
---|
| 73 | using namespace fastjet;
|
---|
| 74 | using namespace fastjet::contrib;
|
---|
| 75 |
|
---|
| 76 |
|
---|
| 77 | //------------------------------------------------------------------------------
|
---|
| 78 |
|
---|
| 79 | FastJetGridMedianEstimator::FastJetGridMedianEstimator() :
|
---|
| 80 | fItInputArray(0)
|
---|
| 81 | {
|
---|
| 82 |
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 | //------------------------------------------------------------------------------
|
---|
| 86 |
|
---|
| 87 | FastJetGridMedianEstimator::~FastJetGridMedianEstimator()
|
---|
| 88 | {
|
---|
| 89 |
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 | //------------------------------------------------------------------------------
|
---|
| 93 |
|
---|
| 94 | void FastJetGridMedianEstimator::Init()
|
---|
| 95 | {
|
---|
[406b698] | 96 | ExRootConfParam param;
|
---|
[6fb1a5d] | 97 | Long_t i, size;
|
---|
[406b698] | 98 | Double_t drap, dphi, rapMin, rapMax;
|
---|
| 99 |
|
---|
| 100 | // read rapidity ranges
|
---|
| 101 |
|
---|
| 102 | param = GetParam("GridRange");
|
---|
[6fb1a5d] | 103 | size = param.GetSize();
|
---|
[406b698] | 104 |
|
---|
| 105 | fEstimators.clear();
|
---|
[6fb1a5d] | 106 | for(i = 0; i < size/4; ++i)
|
---|
| 107 | {
|
---|
[406b698] | 108 | rapMin = param[i*4].GetDouble();
|
---|
| 109 | rapMax = param[i*4 + 1].GetDouble();
|
---|
| 110 | drap = param[i*4 + 2].GetDouble();
|
---|
| 111 | dphi = param[i*4 + 3].GetDouble();
|
---|
| 112 | fEstimators.push_back(new GridMedianBackgroundEstimator(rapMin, rapMax, drap, dphi));
|
---|
[6fb1a5d] | 113 | }
|
---|
[406b698] | 114 |
|
---|
| 115 | // import input array
|
---|
[6fb1a5d] | 116 |
|
---|
| 117 | fInputArray = ImportArray(GetString("InputArray", "Calorimeter/towers"));
|
---|
| 118 | fItInputArray = fInputArray->MakeIterator();
|
---|
| 119 |
|
---|
| 120 | fRhoOutputArray = ExportArray(GetString("RhoOutputArray", "rho"));
|
---|
| 121 | }
|
---|
| 122 |
|
---|
| 123 | //------------------------------------------------------------------------------
|
---|
| 124 |
|
---|
| 125 | void FastJetGridMedianEstimator::Finish()
|
---|
| 126 | {
|
---|
[406b698] | 127 | vector< GridMedianBackgroundEstimator * >::iterator itEstimators;
|
---|
| 128 |
|
---|
| 129 | for(itEstimators = fEstimators.begin(); itEstimators != fEstimators.end(); ++itEstimators)
|
---|
| 130 | {
|
---|
| 131 | if(*itEstimators) delete *itEstimators;
|
---|
| 132 | }
|
---|
| 133 |
|
---|
[6fb1a5d] | 134 | if(fItInputArray) delete fItInputArray;
|
---|
| 135 | }
|
---|
| 136 |
|
---|
| 137 | //------------------------------------------------------------------------------
|
---|
| 138 |
|
---|
| 139 | void FastJetGridMedianEstimator::Process()
|
---|
| 140 | {
|
---|
| 141 | Candidate *candidate;
|
---|
| 142 | TLorentzVector momentum;
|
---|
| 143 | Int_t number;
|
---|
| 144 | Double_t rho = 0;
|
---|
| 145 | PseudoJet jet;
|
---|
[406b698] | 146 | vector< PseudoJet > inputList, outputList;
|
---|
| 147 |
|
---|
| 148 | vector< GridMedianBackgroundEstimator * >::iterator itEstimators;;
|
---|
| 149 |
|
---|
[6fb1a5d] | 150 | DelphesFactory *factory = GetFactory();
|
---|
[406b698] | 151 |
|
---|
[6fb1a5d] | 152 | inputList.clear();
|
---|
[406b698] | 153 |
|
---|
[6fb1a5d] | 154 | // loop over input objects
|
---|
| 155 | fItInputArray->Reset();
|
---|
| 156 | number = 0;
|
---|
| 157 | while((candidate = static_cast<Candidate*>(fItInputArray->Next())))
|
---|
| 158 | {
|
---|
| 159 | momentum = candidate->Momentum;
|
---|
| 160 | jet = PseudoJet(momentum.Px(), momentum.Py(), momentum.Pz(), momentum.E());
|
---|
| 161 | jet.set_user_index(number);
|
---|
| 162 | inputList.push_back(jet);
|
---|
| 163 | ++number;
|
---|
| 164 | }
|
---|
| 165 |
|
---|
| 166 | // compute rho and store it
|
---|
[406b698] | 167 |
|
---|
| 168 | for(itEstimators = fEstimators.begin(); itEstimators != fEstimators.end(); ++itEstimators)
|
---|
[6fb1a5d] | 169 | {
|
---|
[406b698] | 170 | (*itEstimators)->set_particles(inputList);
|
---|
[6fb1a5d] | 171 |
|
---|
[406b698] | 172 | rho = (*itEstimators)->rho();
|
---|
[6fb1a5d] | 173 |
|
---|
| 174 | candidate = factory->NewCandidate();
|
---|
| 175 | candidate->Momentum.SetPtEtaPhiE(rho, 0.0, 0.0, rho);
|
---|
[406b698] | 176 | candidate->Edges[0] = (*itEstimators)->rapmin();
|
---|
| 177 | candidate->Edges[1] = (*itEstimators)->rapmax();
|
---|
[6fb1a5d] | 178 | fRhoOutputArray->Add(candidate);
|
---|
| 179 | }
|
---|
| 180 | }
|
---|