[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 |
|
---|
[d7d2da3] | 19 |
|
---|
| 20 | /** \class FastJetFinder
|
---|
| 21 | *
|
---|
| 22 | * Finds jets using FastJet library.
|
---|
| 23 | *
|
---|
| 24 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 25 | *
|
---|
| 26 | */
|
---|
| 27 |
|
---|
| 28 | #include "modules/FastJetFinder.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 |
|
---|
[8336b6e] | 46 | #include <algorithm>
|
---|
[d7d2da3] | 47 | #include <stdexcept>
|
---|
| 48 | #include <iostream>
|
---|
| 49 | #include <sstream>
|
---|
| 50 | #include <vector>
|
---|
| 51 |
|
---|
| 52 | #include "fastjet/PseudoJet.hh"
|
---|
| 53 | #include "fastjet/JetDefinition.hh"
|
---|
| 54 | #include "fastjet/ClusterSequence.hh"
|
---|
| 55 | #include "fastjet/Selector.hh"
|
---|
| 56 | #include "fastjet/ClusterSequenceArea.hh"
|
---|
| 57 | #include "fastjet/tools/JetMedianBackgroundEstimator.hh"
|
---|
| 58 |
|
---|
| 59 | #include "fastjet/plugins/SISCone/fastjet/SISConePlugin.hh"
|
---|
| 60 | #include "fastjet/plugins/CDFCones/fastjet/CDFMidPointPlugin.hh"
|
---|
| 61 | #include "fastjet/plugins/CDFCones/fastjet/CDFJetCluPlugin.hh"
|
---|
| 62 |
|
---|
[e4c3fef] | 63 | #include "fastjet/contribs/Nsubjettiness/Nsubjettiness.hh"
|
---|
[9687203] | 64 | #include "fastjet/contribs/Nsubjettiness/Njettiness.hh"
|
---|
| 65 | #include "fastjet/contribs/Nsubjettiness/NjettinessPlugin.hh"
|
---|
[973b92a] | 66 | #include "fastjet/contribs/Nsubjettiness/ExtraRecombiners.hh"
|
---|
[9687203] | 67 |
|
---|
[f319c1d] | 68 | #include "fastjet/contribs/ValenciaPlugin/ValenciaPlugin.hh"
|
---|
| 69 |
|
---|
[de6d698] | 70 | #include "fastjet/tools/Filter.hh"
|
---|
| 71 | #include "fastjet/tools/Pruner.hh"
|
---|
| 72 | #include "fastjet/contribs/RecursiveTools/SoftDrop.hh"
|
---|
| 73 |
|
---|
[d7d2da3] | 74 | using namespace std;
|
---|
| 75 | using namespace fastjet;
|
---|
[9687203] | 76 | using namespace fastjet::contrib;
|
---|
| 77 |
|
---|
[d7d2da3] | 78 |
|
---|
| 79 | //------------------------------------------------------------------------------
|
---|
| 80 |
|
---|
| 81 | FastJetFinder::FastJetFinder() :
|
---|
[8abab33] | 82 | fPlugin(0), fRecomb(0), fAxesDef(0), fMeasureDef(0), fNjettinessPlugin(0),
|
---|
[f319c1d] | 83 | fDefinition(0), fAreaDefinition(0), fItInputArray(0), fValenciaPlugin(0)
|
---|
[d7d2da3] | 84 | {
|
---|
| 85 |
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | //------------------------------------------------------------------------------
|
---|
| 89 |
|
---|
| 90 | FastJetFinder::~FastJetFinder()
|
---|
| 91 | {
|
---|
| 92 |
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | //------------------------------------------------------------------------------
|
---|
| 96 |
|
---|
| 97 | void FastJetFinder::Init()
|
---|
| 98 | {
|
---|
[c6321ad] | 99 | JetDefinition::Plugin *plugin = 0;
|
---|
| 100 | JetDefinition::Recombiner *recomb = 0;
|
---|
[7278220] | 101 | ExRootConfParam param;
|
---|
[8336b6e] | 102 | Long_t i, size;
|
---|
[7278220] | 103 | Double_t etaMin, etaMax;
|
---|
| 104 | TEstimatorStruct estimatorStruct;
|
---|
[8336b6e] | 105 |
|
---|
[d7d2da3] | 106 | // define algorithm
|
---|
| 107 |
|
---|
| 108 | fJetAlgorithm = GetInt("JetAlgorithm", 6);
|
---|
| 109 | fParameterR = GetDouble("ParameterR", 0.5);
|
---|
| 110 |
|
---|
| 111 | fConeRadius = GetDouble("ConeRadius", 0.5);
|
---|
| 112 | fSeedThreshold = GetDouble("SeedThreshold", 1.0);
|
---|
| 113 | fConeAreaFraction = GetDouble("ConeAreaFraction", 1.0);
|
---|
| 114 | fMaxIterations = GetInt("MaxIterations", 100);
|
---|
| 115 | fMaxPairSize = GetInt("MaxPairSize", 2);
|
---|
| 116 | fIratch = GetInt("Iratch", 1);
|
---|
[3ccc8586] | 117 | fAdjacencyCut = GetInt("AdjacencyCut", 2);
|
---|
[d7d2da3] | 118 | fOverlapThreshold = GetDouble("OverlapThreshold", 0.75);
|
---|
| 119 |
|
---|
| 120 | fJetPTMin = GetDouble("JetPTMin", 10.0);
|
---|
| 121 |
|
---|
[f319c1d] | 122 |
|
---|
[9687203] | 123 | //-- N(sub)jettiness parameters --
|
---|
[e4c3fef] | 124 |
|
---|
[9687203] | 125 | fComputeNsubjettiness = GetBool("ComputeNsubjettiness", false);
|
---|
| 126 | fBeta = GetDouble("Beta", 1.0);
|
---|
| 127 | fAxisMode = GetInt("AxisMode", 1);
|
---|
[e4c3fef] | 128 | fRcutOff = GetDouble("RcutOff", 0.8); // used only if Njettiness is used as jet clustering algo (case 8)
|
---|
| 129 | fN = GetInt("N", 2); // used only if Njettiness is used as jet clustering algo (case 8)
|
---|
[f319c1d] | 130 |
|
---|
| 131 | //-- Exclusive clustering for e+e- collisions --
|
---|
| 132 |
|
---|
| 133 | fNJets = GetInt("NJets",2);
|
---|
| 134 | fExclusiveClustering = GetBool("ExclusiveClustering", false);
|
---|
| 135 |
|
---|
| 136 | //-- Valencia Linear Collider algorithm
|
---|
| 137 | fGamma = GetDouble("Gamma", 1.0);
|
---|
| 138 | //fBeta parameter see above
|
---|
| 139 |
|
---|
[919f6a6] | 140 | fMeasureDef = new NormalizedMeasure(fBeta, fParameterR);
|
---|
[8abab33] | 141 |
|
---|
| 142 | switch(fAxisMode)
|
---|
| 143 | {
|
---|
| 144 | default:
|
---|
| 145 | case 1:
|
---|
| 146 | fAxesDef = new WTA_KT_Axes();
|
---|
| 147 | break;
|
---|
| 148 | case 2:
|
---|
| 149 | fAxesDef = new OnePass_WTA_KT_Axes();
|
---|
| 150 | break;
|
---|
| 151 | case 3:
|
---|
| 152 | fAxesDef = new KT_Axes();
|
---|
| 153 | break;
|
---|
| 154 | case 4:
|
---|
| 155 | fAxesDef = new OnePass_KT_Axes();
|
---|
| 156 | }
|
---|
[e4c3fef] | 157 |
|
---|
[de6d698] | 158 | //-- Trimming parameters --
|
---|
| 159 |
|
---|
| 160 | fComputeTrimming = GetBool("ComputeTrimming", false);
|
---|
| 161 | fRTrim = GetDouble("RTrim", 0.2);
|
---|
| 162 | fPtFracTrim = GetDouble("PtFracTrim", 0.05);
|
---|
| 163 |
|
---|
| 164 |
|
---|
| 165 | //-- Pruning parameters --
|
---|
| 166 |
|
---|
| 167 | fComputePruning = GetBool("ComputePruning", false);
|
---|
| 168 | fZcutPrun = GetDouble("ZcutPrun", 0.1);
|
---|
| 169 | fRcutPrun = GetDouble("RcutPrun", 0.5);
|
---|
| 170 | fRPrun = GetDouble("RPrun", 0.8);
|
---|
| 171 |
|
---|
| 172 | //-- SoftDrop parameters --
|
---|
| 173 |
|
---|
| 174 | fComputeSoftDrop = GetBool("ComputeSoftDrop", false);
|
---|
| 175 | fBetaSoftDrop = GetDouble("BetaSoftDrop", 0.0);
|
---|
| 176 | fSymmetryCutSoftDrop = GetDouble("SymmetryCutSoftDrop", 0.1);
|
---|
| 177 | fR0SoftDrop= GetDouble("R0SoftDrop=", 0.8);
|
---|
| 178 |
|
---|
| 179 |
|
---|
[d7d2da3] | 180 | // --- Jet Area Parameters ---
|
---|
| 181 | fAreaAlgorithm = GetInt("AreaAlgorithm", 0);
|
---|
| 182 | fComputeRho = GetBool("ComputeRho", false);
|
---|
[e4c3fef] | 183 |
|
---|
[d7d2da3] | 184 | // - ghost based areas -
|
---|
| 185 | fGhostEtaMax = GetDouble("GhostEtaMax", 5.0);
|
---|
| 186 | fRepeat = GetInt("Repeat", 1);
|
---|
| 187 | fGhostArea = GetDouble("GhostArea", 0.01);
|
---|
| 188 | fGridScatter = GetDouble("GridScatter", 1.0);
|
---|
| 189 | fPtScatter = GetDouble("PtScatter", 0.1);
|
---|
| 190 | fMeanGhostPt = GetDouble("MeanGhostPt", 1.0E-100);
|
---|
[e4c3fef] | 191 |
|
---|
[d7d2da3] | 192 | // - voronoi based areas -
|
---|
| 193 | fEffectiveRfact = GetDouble("EffectiveRfact", 1.0);
|
---|
| 194 |
|
---|
| 195 | switch(fAreaAlgorithm)
|
---|
| 196 | {
|
---|
| 197 | case 1:
|
---|
[c6321ad] | 198 | fAreaDefinition = new AreaDefinition(active_area_explicit_ghosts, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
|
---|
[d7d2da3] | 199 | break;
|
---|
| 200 | case 2:
|
---|
[c6321ad] | 201 | fAreaDefinition = new AreaDefinition(one_ghost_passive_area, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
|
---|
[d7d2da3] | 202 | break;
|
---|
| 203 | case 3:
|
---|
[c6321ad] | 204 | fAreaDefinition = new AreaDefinition(passive_area, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
|
---|
[d7d2da3] | 205 | break;
|
---|
| 206 | case 4:
|
---|
[c6321ad] | 207 | fAreaDefinition = new AreaDefinition(VoronoiAreaSpec(fEffectiveRfact));
|
---|
[d7d2da3] | 208 | break;
|
---|
| 209 | case 5:
|
---|
[c6321ad] | 210 | fAreaDefinition = new AreaDefinition(active_area, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
|
---|
[d7d2da3] | 211 | break;
|
---|
| 212 | default:
|
---|
| 213 | case 0:
|
---|
| 214 | fAreaDefinition = 0;
|
---|
| 215 | break;
|
---|
| 216 | }
|
---|
| 217 |
|
---|
| 218 | switch(fJetAlgorithm)
|
---|
| 219 | {
|
---|
[8336b6e] | 220 | case 1:
|
---|
[c6321ad] | 221 | plugin = new CDFJetCluPlugin(fSeedThreshold, fConeRadius, fAdjacencyCut, fMaxIterations, fIratch, fOverlapThreshold);
|
---|
| 222 | fDefinition = new JetDefinition(plugin);
|
---|
[d7d2da3] | 223 | break;
|
---|
| 224 | case 2:
|
---|
[c6321ad] | 225 | plugin = new CDFMidPointPlugin(fSeedThreshold, fConeRadius, fConeAreaFraction, fMaxPairSize, fMaxIterations, fOverlapThreshold);
|
---|
| 226 | fDefinition = new JetDefinition(plugin);
|
---|
[d7d2da3] | 227 | break;
|
---|
| 228 | case 3:
|
---|
[c6321ad] | 229 | plugin = new SISConePlugin(fConeRadius, fOverlapThreshold, fMaxIterations, fJetPTMin);
|
---|
| 230 | fDefinition = new JetDefinition(plugin);
|
---|
[d7d2da3] | 231 | break;
|
---|
| 232 | case 4:
|
---|
[c6321ad] | 233 | fDefinition = new JetDefinition(kt_algorithm, fParameterR);
|
---|
[d7d2da3] | 234 | break;
|
---|
| 235 | case 5:
|
---|
[c6321ad] | 236 | fDefinition = new JetDefinition(cambridge_algorithm, fParameterR);
|
---|
[d7d2da3] | 237 | break;
|
---|
| 238 | default:
|
---|
| 239 | case 6:
|
---|
[c6321ad] | 240 | fDefinition = new JetDefinition(antikt_algorithm, fParameterR);
|
---|
[d7d2da3] | 241 | break;
|
---|
[9687203] | 242 | case 7:
|
---|
[c6321ad] | 243 | recomb = new WinnerTakeAllRecombiner();
|
---|
| 244 | fDefinition = new JetDefinition(antikt_algorithm, fParameterR, recomb, Best);
|
---|
[9687203] | 245 | break;
|
---|
| 246 | case 8:
|
---|
[7278220] | 247 | fNjettinessPlugin = new NjettinessPlugin(fN, Njettiness::wta_kt_axes, Njettiness::unnormalized_cutoff_measure, fBeta, fRcutOff);
|
---|
| 248 | fDefinition = new JetDefinition(fNjettinessPlugin);
|
---|
[9687203] | 249 | break;
|
---|
[f319c1d] | 250 | case 9:
|
---|
| 251 | fValenciaPlugin = new ValenciaPlugin(fParameterR, fBeta, fGamma);
|
---|
| 252 | fDefinition = new JetDefinition(fValenciaPlugin);
|
---|
| 253 | break;
|
---|
| 254 |
|
---|
[d7d2da3] | 255 | }
|
---|
[8336b6e] | 256 |
|
---|
[8abab33] | 257 |
|
---|
| 258 |
|
---|
[d7d2da3] | 259 | fPlugin = plugin;
|
---|
[9687203] | 260 | fRecomb = recomb;
|
---|
[e4c3fef] | 261 |
|
---|
[d7d2da3] | 262 | ClusterSequence::print_banner();
|
---|
[8336b6e] | 263 |
|
---|
[7278220] | 264 | if(fComputeRho && fAreaDefinition)
|
---|
| 265 | {
|
---|
| 266 | // read eta ranges
|
---|
| 267 |
|
---|
| 268 | param = GetParam("RhoEtaRange");
|
---|
| 269 | size = param.GetSize();
|
---|
| 270 |
|
---|
| 271 | fEstimators.clear();
|
---|
| 272 | for(i = 0; i < size/2; ++i)
|
---|
| 273 | {
|
---|
| 274 | etaMin = param[i*2].GetDouble();
|
---|
| 275 | etaMax = param[i*2 + 1].GetDouble();
|
---|
[58dcd2e] | 276 | estimatorStruct.estimator = new JetMedianBackgroundEstimator(SelectorRapRange(etaMin, etaMax), *fDefinition, *fAreaDefinition);
|
---|
[7278220] | 277 | estimatorStruct.etaMin = etaMin;
|
---|
| 278 | estimatorStruct.etaMax = etaMax;
|
---|
| 279 | fEstimators.push_back(estimatorStruct);
|
---|
| 280 | }
|
---|
| 281 | }
|
---|
| 282 |
|
---|
[d7d2da3] | 283 | // import input array
|
---|
| 284 |
|
---|
| 285 | fInputArray = ImportArray(GetString("InputArray", "Calorimeter/towers"));
|
---|
| 286 | fItInputArray = fInputArray->MakeIterator();
|
---|
| 287 |
|
---|
| 288 | // create output arrays
|
---|
| 289 |
|
---|
| 290 | fOutputArray = ExportArray(GetString("OutputArray", "jets"));
|
---|
| 291 | fRhoOutputArray = ExportArray(GetString("RhoOutputArray", "rho"));
|
---|
| 292 | }
|
---|
| 293 |
|
---|
| 294 | //------------------------------------------------------------------------------
|
---|
| 295 |
|
---|
| 296 | void FastJetFinder::Finish()
|
---|
| 297 | {
|
---|
[7278220] | 298 | vector< TEstimatorStruct >::iterator itEstimators;
|
---|
| 299 |
|
---|
| 300 | for(itEstimators = fEstimators.begin(); itEstimators != fEstimators.end(); ++itEstimators)
|
---|
| 301 | {
|
---|
| 302 | if(itEstimators->estimator) delete itEstimators->estimator;
|
---|
| 303 | }
|
---|
| 304 |
|
---|
[d7d2da3] | 305 | if(fItInputArray) delete fItInputArray;
|
---|
| 306 | if(fDefinition) delete fDefinition;
|
---|
| 307 | if(fAreaDefinition) delete fAreaDefinition;
|
---|
| 308 | if(fPlugin) delete static_cast<JetDefinition::Plugin*>(fPlugin);
|
---|
[9687203] | 309 | if(fRecomb) delete static_cast<JetDefinition::Recombiner*>(fRecomb);
|
---|
| 310 | if(fNjettinessPlugin) delete static_cast<JetDefinition::Plugin*>(fNjettinessPlugin);
|
---|
[8abab33] | 311 | if(fAxesDef) delete fAxesDef;
|
---|
| 312 | if(fMeasureDef) delete fMeasureDef;
|
---|
[f319c1d] | 313 | if(fValenciaPlugin) delete static_cast<JetDefinition::Plugin*>(fValenciaPlugin);
|
---|
| 314 |
|
---|
[d7d2da3] | 315 | }
|
---|
| 316 |
|
---|
| 317 | //------------------------------------------------------------------------------
|
---|
| 318 |
|
---|
| 319 | void FastJetFinder::Process()
|
---|
| 320 | {
|
---|
| 321 | Candidate *candidate, *constituent;
|
---|
| 322 | TLorentzVector momentum;
|
---|
[df04eb1] | 323 |
|
---|
[d7d2da3] | 324 | Double_t deta, dphi, detaMax, dphiMax;
|
---|
[df04eb1] | 325 | Double_t time, timeWeight;
|
---|
[ce4feac] | 326 | Int_t number, ncharged, nneutrals;
|
---|
[5a44a72] | 327 | Int_t charge;
|
---|
[df04eb1] | 328 | Double_t rho = 0.0;
|
---|
[d7d2da3] | 329 | PseudoJet jet, area;
|
---|
| 330 | ClusterSequence *sequence;
|
---|
[de6d698] | 331 | vector< PseudoJet > inputList, outputList, subjets;
|
---|
[7278220] | 332 | vector< PseudoJet >::iterator itInputList, itOutputList;
|
---|
| 333 | vector< TEstimatorStruct >::iterator itEstimators;
|
---|
[d7d2da3] | 334 |
|
---|
| 335 | DelphesFactory *factory = GetFactory();
|
---|
| 336 |
|
---|
| 337 | inputList.clear();
|
---|
| 338 |
|
---|
| 339 | // loop over input objects
|
---|
| 340 | fItInputArray->Reset();
|
---|
| 341 | number = 0;
|
---|
| 342 | while((candidate = static_cast<Candidate*>(fItInputArray->Next())))
|
---|
[8336b6e] | 343 | {
|
---|
[d7d2da3] | 344 | momentum = candidate->Momentum;
|
---|
| 345 | jet = PseudoJet(momentum.Px(), momentum.Py(), momentum.Pz(), momentum.E());
|
---|
| 346 | jet.set_user_index(number);
|
---|
| 347 | inputList.push_back(jet);
|
---|
| 348 | ++number;
|
---|
| 349 | }
|
---|
[8336b6e] | 350 |
|
---|
| 351 | // construct jets
|
---|
[d7d2da3] | 352 | if(fAreaDefinition)
|
---|
| 353 | {
|
---|
| 354 | sequence = new ClusterSequenceArea(inputList, *fDefinition, *fAreaDefinition);
|
---|
| 355 | }
|
---|
| 356 | else
|
---|
| 357 | {
|
---|
| 358 | sequence = new ClusterSequence(inputList, *fDefinition);
|
---|
[8336b6e] | 359 | }
|
---|
[d7d2da3] | 360 |
|
---|
| 361 | // compute rho and store it
|
---|
| 362 | if(fComputeRho && fAreaDefinition)
|
---|
| 363 | {
|
---|
[7278220] | 364 | for(itEstimators = fEstimators.begin(); itEstimators != fEstimators.end(); ++itEstimators)
|
---|
[8336b6e] | 365 | {
|
---|
[7278220] | 366 | itEstimators->estimator->set_particles(inputList);
|
---|
| 367 | rho = itEstimators->estimator->rho();
|
---|
[8336b6e] | 368 |
|
---|
| 369 | candidate = factory->NewCandidate();
|
---|
| 370 | candidate->Momentum.SetPtEtaPhiE(rho, 0.0, 0.0, rho);
|
---|
[7278220] | 371 | candidate->Edges[0] = itEstimators->etaMin;
|
---|
| 372 | candidate->Edges[1] = itEstimators->etaMax;
|
---|
[8336b6e] | 373 | fRhoOutputArray->Add(candidate);
|
---|
| 374 | }
|
---|
[d7d2da3] | 375 | }
|
---|
[8336b6e] | 376 |
|
---|
[d7d2da3] | 377 | outputList.clear();
|
---|
| 378 |
|
---|
[f319c1d] | 379 | if(fExclusiveClustering)
|
---|
| 380 | {
|
---|
| 381 | outputList = sorted_by_pt(sequence->exclusive_jets( fNJets ));
|
---|
| 382 | }
|
---|
| 383 | else
|
---|
| 384 | {
|
---|
| 385 | outputList = sorted_by_pt(sequence->inclusive_jets(fJetPTMin));
|
---|
| 386 | }
|
---|
[9687203] | 387 |
|
---|
[d7d2da3] | 388 | // loop over all jets and export them
|
---|
| 389 | detaMax = 0.0;
|
---|
| 390 | dphiMax = 0.0;
|
---|
[ce4feac] | 391 |
|
---|
[d7d2da3] | 392 | for(itOutputList = outputList.begin(); itOutputList != outputList.end(); ++itOutputList)
|
---|
| 393 | {
|
---|
[d244bc9] | 394 | jet = *itOutputList;
|
---|
| 395 | if(fJetAlgorithm == 7) jet = join(jet.constituents());
|
---|
[df04eb1] | 396 |
|
---|
[d244bc9] | 397 | momentum.SetPxPyPzE(jet.px(), jet.py(), jet.pz(), jet.E());
|
---|
[df04eb1] | 398 |
|
---|
[d7d2da3] | 399 | area.reset(0.0, 0.0, 0.0, 0.0);
|
---|
| 400 | if(fAreaDefinition) area = itOutputList->area_4vector();
|
---|
| 401 |
|
---|
| 402 | candidate = factory->NewCandidate();
|
---|
| 403 |
|
---|
[df04eb1] | 404 | time = 0.0;
|
---|
| 405 | timeWeight = 0.0;
|
---|
[22dc7fd] | 406 |
|
---|
[5a44a72] | 407 | charge = 0;
|
---|
| 408 |
|
---|
[ce4feac] | 409 | ncharged = 0;
|
---|
| 410 | nneutrals = 0;
|
---|
| 411 |
|
---|
[d7d2da3] | 412 | inputList.clear();
|
---|
| 413 | inputList = sequence->constituents(*itOutputList);
|
---|
[e4c3fef] | 414 |
|
---|
[d7d2da3] | 415 | for(itInputList = inputList.begin(); itInputList != inputList.end(); ++itInputList)
|
---|
| 416 | {
|
---|
[29f8a06] | 417 | if(itInputList->user_index() < 0) continue;
|
---|
[d7d2da3] | 418 | constituent = static_cast<Candidate*>(fInputArray->At(itInputList->user_index()));
|
---|
| 419 |
|
---|
| 420 | deta = TMath::Abs(momentum.Eta() - constituent->Momentum.Eta());
|
---|
| 421 | dphi = TMath::Abs(momentum.DeltaPhi(constituent->Momentum));
|
---|
| 422 | if(deta > detaMax) detaMax = deta;
|
---|
| 423 | if(dphi > dphiMax) dphiMax = dphi;
|
---|
[e4c3fef] | 424 |
|
---|
[ce4feac] | 425 | if(constituent->Charge == 0) nneutrals++;
|
---|
| 426 | else ncharged++;
|
---|
| 427 |
|
---|
[22dc7fd] | 428 | time += TMath::Sqrt(constituent->Momentum.E())*(constituent->Position.T());
|
---|
[df04eb1] | 429 | timeWeight += TMath::Sqrt(constituent->Momentum.E());
|
---|
[e4c3fef] | 430 |
|
---|
[5a44a72] | 431 | charge += constituent->Charge;
|
---|
| 432 |
|
---|
[d7d2da3] | 433 | candidate->AddCandidate(constituent);
|
---|
| 434 | }
|
---|
[e4c3fef] | 435 |
|
---|
[d7d2da3] | 436 | candidate->Momentum = momentum;
|
---|
[df04eb1] | 437 | candidate->Position.SetT(time/timeWeight);
|
---|
[d7d2da3] | 438 | candidate->Area.SetPxPyPzE(area.px(), area.py(), area.pz(), area.E());
|
---|
| 439 |
|
---|
| 440 | candidate->DeltaEta = detaMax;
|
---|
| 441 | candidate->DeltaPhi = dphiMax;
|
---|
[5a44a72] | 442 | candidate->Charge = charge;
|
---|
[ce4feac] | 443 | candidate->NNeutrals = nneutrals;
|
---|
| 444 | candidate->NCharged = ncharged;
|
---|
| 445 |
|
---|
[de6d698] | 446 | //------------------------------------
|
---|
| 447 | // Trimming
|
---|
| 448 | //------------------------------------
|
---|
[d7d2da3] | 449 |
|
---|
[8abab33] | 450 | if(fComputeTrimming)
|
---|
[de6d698] | 451 | {
|
---|
| 452 |
|
---|
| 453 | fastjet::Filter trimmer(fastjet::JetDefinition(fastjet::kt_algorithm,fRTrim),fastjet::SelectorPtFractionMin(fPtFracTrim));
|
---|
| 454 | fastjet::PseudoJet trimmed_jet = trimmer(*itOutputList);
|
---|
| 455 |
|
---|
| 456 | trimmed_jet = join(trimmed_jet.constituents());
|
---|
| 457 |
|
---|
| 458 | candidate->TrimmedP4[0].SetPtEtaPhiM(trimmed_jet.pt(), trimmed_jet.eta(), trimmed_jet.phi(), trimmed_jet.m());
|
---|
| 459 |
|
---|
| 460 | // four hardest subjets
|
---|
| 461 | subjets.clear();
|
---|
| 462 | subjets = trimmed_jet.pieces();
|
---|
| 463 | subjets = sorted_by_pt(subjets);
|
---|
| 464 |
|
---|
| 465 | candidate->NSubJetsTrimmed = subjets.size();
|
---|
| 466 |
|
---|
[8abab33] | 467 | for (size_t i = 0; i < subjets.size() and i < 4; i++)
|
---|
| 468 | {
|
---|
| 469 | if(subjets.at(i).pt() < 0) continue ;
|
---|
| 470 | candidate->TrimmedP4[i+1].SetPtEtaPhiM(subjets.at(i).pt(), subjets.at(i).eta(), subjets.at(i).phi(), subjets.at(i).m());
|
---|
[de6d698] | 471 | }
|
---|
| 472 | }
|
---|
| 473 |
|
---|
| 474 |
|
---|
| 475 | //------------------------------------
|
---|
| 476 | // Pruning
|
---|
| 477 | //------------------------------------
|
---|
| 478 |
|
---|
| 479 |
|
---|
| 480 | if(fComputePruning)
|
---|
| 481 | {
|
---|
| 482 |
|
---|
| 483 | fastjet::Pruner pruner(fastjet::JetDefinition(fastjet::cambridge_algorithm,fRPrun),fZcutPrun,fRcutPrun);
|
---|
| 484 | fastjet::PseudoJet pruned_jet = pruner(*itOutputList);
|
---|
| 485 |
|
---|
| 486 | candidate->PrunedP4[0].SetPtEtaPhiM(pruned_jet.pt(), pruned_jet.eta(), pruned_jet.phi(), pruned_jet.m());
|
---|
| 487 |
|
---|
| 488 | // four hardest subjet
|
---|
| 489 | subjets.clear();
|
---|
| 490 | subjets = pruned_jet.pieces();
|
---|
| 491 | subjets = sorted_by_pt(subjets);
|
---|
| 492 |
|
---|
| 493 | candidate->NSubJetsPruned = subjets.size();
|
---|
| 494 |
|
---|
[8abab33] | 495 | for (size_t i = 0; i < subjets.size() and i < 4; i++)
|
---|
| 496 | {
|
---|
| 497 | if(subjets.at(i).pt() < 0) continue ;
|
---|
| 498 | candidate->PrunedP4[i+1].SetPtEtaPhiM(subjets.at(i).pt(), subjets.at(i).eta(), subjets.at(i).phi(), subjets.at(i).m());
|
---|
[de6d698] | 499 | }
|
---|
| 500 |
|
---|
| 501 | }
|
---|
| 502 |
|
---|
| 503 | //------------------------------------
|
---|
| 504 | // SoftDrop
|
---|
| 505 | //------------------------------------
|
---|
| 506 |
|
---|
| 507 | if(fComputeSoftDrop)
|
---|
| 508 | {
|
---|
| 509 |
|
---|
[8abab33] | 510 | contrib::SoftDrop softDrop(fBetaSoftDrop,fSymmetryCutSoftDrop,fR0SoftDrop);
|
---|
[de6d698] | 511 | fastjet::PseudoJet softdrop_jet = softDrop(*itOutputList);
|
---|
| 512 |
|
---|
| 513 | candidate->SoftDroppedP4[0].SetPtEtaPhiM(softdrop_jet.pt(), softdrop_jet.eta(), softdrop_jet.phi(), softdrop_jet.m());
|
---|
| 514 |
|
---|
| 515 | // four hardest subjet
|
---|
| 516 |
|
---|
| 517 | subjets.clear();
|
---|
| 518 | subjets = softdrop_jet.pieces();
|
---|
| 519 | subjets = sorted_by_pt(subjets);
|
---|
| 520 | candidate->NSubJetsSoftDropped = softdrop_jet.pieces().size();
|
---|
| 521 |
|
---|
[8abab33] | 522 | for (size_t i = 0; i < subjets.size() and i < 4; i++)
|
---|
| 523 | {
|
---|
| 524 | if(subjets.at(i).pt() < 0) continue ;
|
---|
| 525 | candidate->SoftDroppedP4[i+1].SetPtEtaPhiM(subjets.at(i).pt(), subjets.at(i).eta(), subjets.at(i).phi(), subjets.at(i).m());
|
---|
[de6d698] | 526 | }
|
---|
| 527 | }
|
---|
| 528 |
|
---|
[9687203] | 529 | // --- compute N-subjettiness with N = 1,2,3,4,5 ----
|
---|
[e4c3fef] | 530 |
|
---|
[9687203] | 531 | if(fComputeNsubjettiness)
|
---|
| 532 | {
|
---|
[8abab33] | 533 |
|
---|
| 534 | Nsubjettiness nSub1(1, *fAxesDef, *fMeasureDef);
|
---|
| 535 | Nsubjettiness nSub2(2, *fAxesDef, *fMeasureDef);
|
---|
| 536 | Nsubjettiness nSub3(3, *fAxesDef, *fMeasureDef);
|
---|
| 537 | Nsubjettiness nSub4(4, *fAxesDef, *fMeasureDef);
|
---|
| 538 | Nsubjettiness nSub5(5, *fAxesDef, *fMeasureDef);
|
---|
| 539 |
|
---|
[e4c3fef] | 540 | candidate->Tau[0] = nSub1(*itOutputList);
|
---|
| 541 | candidate->Tau[1] = nSub2(*itOutputList);
|
---|
| 542 | candidate->Tau[2] = nSub3(*itOutputList);
|
---|
| 543 | candidate->Tau[3] = nSub4(*itOutputList);
|
---|
| 544 | candidate->Tau[4] = nSub5(*itOutputList);
|
---|
[8abab33] | 545 |
|
---|
[9687203] | 546 | }
|
---|
| 547 |
|
---|
[d7d2da3] | 548 | fOutputArray->Add(candidate);
|
---|
| 549 | }
|
---|
| 550 | delete sequence;
|
---|
| 551 | }
|
---|