Fork me on GitHub

source: git/modules/FastJetFinder.cc@ 87ae892

ImprovedOutputFile Timing dual_readout llp
Last change on this file since 87ae892 was 35807af, checked in by Ulrike Schnoor <schnooru@…>, 6 years ago

Catch cases with less partons in events than N(jet) required by Exclusive clustering; also added jet energy smearing tentatively

  • Property mode set to 100644
File size: 17.6 KB
Line 
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
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
46#include <algorithm>
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
63#include "fastjet/contribs/Nsubjettiness/Nsubjettiness.hh"
64#include "fastjet/contribs/Nsubjettiness/Njettiness.hh"
65#include "fastjet/contribs/Nsubjettiness/NjettinessPlugin.hh"
66#include "fastjet/contribs/Nsubjettiness/ExtraRecombiners.hh"
67
68#include "fastjet/contribs/ValenciaPlugin/ValenciaPlugin.hh"
69
70#include "fastjet/tools/Filter.hh"
71#include "fastjet/tools/Pruner.hh"
72#include "fastjet/contribs/RecursiveTools/SoftDrop.hh"
73
74using namespace std;
75using namespace fastjet;
76using namespace fastjet::contrib;
77
78
79//------------------------------------------------------------------------------
80
81FastJetFinder::FastJetFinder() :
82 fPlugin(0), fRecomb(0), fAxesDef(0), fMeasureDef(0), fNjettinessPlugin(0), fValenciaPlugin(0),
83 fDefinition(0), fAreaDefinition(0), fItInputArray(0)
84{
85
86}
87
88//------------------------------------------------------------------------------
89
90FastJetFinder::~FastJetFinder()
91{
92
93}
94
95//------------------------------------------------------------------------------
96
97void FastJetFinder::Init()
98{
99 JetDefinition::Plugin *plugin = 0;
100 JetDefinition::Recombiner *recomb = 0;
101 ExRootConfParam param;
102 Long_t i, size;
103 Double_t etaMin, etaMax;
104 TEstimatorStruct estimatorStruct;
105
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);
117 fAdjacencyCut = GetInt("AdjacencyCut", 2);
118 fOverlapThreshold = GetDouble("OverlapThreshold", 0.75);
119
120 fJetPTMin = GetDouble("JetPTMin", 10.0);
121
122
123 //-- N(sub)jettiness parameters --
124
125 fComputeNsubjettiness = GetBool("ComputeNsubjettiness", false);
126 fBeta = GetDouble("Beta", 1.0);
127 fAxisMode = GetInt("AxisMode", 1);
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)
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
140 fMeasureDef = new NormalizedMeasure(fBeta, fParameterR);
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 }
157
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
180 // --- Jet Area Parameters ---
181 fAreaAlgorithm = GetInt("AreaAlgorithm", 0);
182 fComputeRho = GetBool("ComputeRho", false);
183
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);
191
192 // - voronoi based areas -
193 fEffectiveRfact = GetDouble("EffectiveRfact", 1.0);
194
195 switch(fAreaAlgorithm)
196 {
197 case 1:
198 fAreaDefinition = new AreaDefinition(active_area_explicit_ghosts, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
199 break;
200 case 2:
201 fAreaDefinition = new AreaDefinition(one_ghost_passive_area, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
202 break;
203 case 3:
204 fAreaDefinition = new AreaDefinition(passive_area, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
205 break;
206 case 4:
207 fAreaDefinition = new AreaDefinition(VoronoiAreaSpec(fEffectiveRfact));
208 break;
209 case 5:
210 fAreaDefinition = new AreaDefinition(active_area, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
211 break;
212 default:
213 case 0:
214 fAreaDefinition = 0;
215 break;
216 }
217
218 switch(fJetAlgorithm)
219 {
220 case 1:
221 plugin = new CDFJetCluPlugin(fSeedThreshold, fConeRadius, fAdjacencyCut, fMaxIterations, fIratch, fOverlapThreshold);
222 fDefinition = new JetDefinition(plugin);
223 break;
224 case 2:
225 plugin = new CDFMidPointPlugin(fSeedThreshold, fConeRadius, fConeAreaFraction, fMaxPairSize, fMaxIterations, fOverlapThreshold);
226 fDefinition = new JetDefinition(plugin);
227 break;
228 case 3:
229 plugin = new SISConePlugin(fConeRadius, fOverlapThreshold, fMaxIterations, fJetPTMin);
230 fDefinition = new JetDefinition(plugin);
231 break;
232 case 4:
233 fDefinition = new JetDefinition(kt_algorithm, fParameterR);
234 break;
235 case 5:
236 fDefinition = new JetDefinition(cambridge_algorithm, fParameterR);
237 break;
238 default:
239 case 6:
240 fDefinition = new JetDefinition(antikt_algorithm, fParameterR);
241 break;
242 case 7:
243 recomb = new WinnerTakeAllRecombiner();
244 fDefinition = new JetDefinition(antikt_algorithm, fParameterR, recomb, Best);
245 break;
246 case 8:
247 fNjettinessPlugin = new NjettinessPlugin(fN, Njettiness::wta_kt_axes, Njettiness::unnormalized_cutoff_measure, fBeta, fRcutOff);
248 fDefinition = new JetDefinition(fNjettinessPlugin);
249 break;
250 case 9:
251 fValenciaPlugin = new ValenciaPlugin(fParameterR, fBeta, fGamma);
252 fDefinition = new JetDefinition(fValenciaPlugin);
253 break;
254
255 }
256
257
258
259 fPlugin = plugin;
260 fRecomb = recomb;
261
262 ClusterSequence::print_banner();
263
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();
276 estimatorStruct.estimator = new JetMedianBackgroundEstimator(SelectorRapRange(etaMin, etaMax), *fDefinition, *fAreaDefinition);
277 estimatorStruct.etaMin = etaMin;
278 estimatorStruct.etaMax = etaMax;
279 fEstimators.push_back(estimatorStruct);
280 }
281 }
282
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
296void FastJetFinder::Finish()
297{
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
305 if(fItInputArray) delete fItInputArray;
306 if(fDefinition) delete fDefinition;
307 if(fAreaDefinition) delete fAreaDefinition;
308 if(fPlugin) delete static_cast<JetDefinition::Plugin*>(fPlugin);
309 if(fRecomb) delete static_cast<JetDefinition::Recombiner*>(fRecomb);
310 if(fNjettinessPlugin) delete static_cast<JetDefinition::Plugin*>(fNjettinessPlugin);
311 if(fAxesDef) delete fAxesDef;
312 if(fMeasureDef) delete fMeasureDef;
313 if(fValenciaPlugin) delete static_cast<JetDefinition::Plugin*>(fValenciaPlugin);
314
315}
316
317//------------------------------------------------------------------------------
318
319void FastJetFinder::Process()
320{
321 Candidate *candidate, *constituent;
322 TLorentzVector momentum;
323
324 Double_t deta, dphi, detaMax, dphiMax;
325 Double_t time, timeWeight;
326 Int_t number, ncharged, nneutrals;
327 Int_t charge;
328 Double_t rho = 0.0;
329 PseudoJet jet, area;
330 ClusterSequence *sequence;
331 vector< PseudoJet > inputList, outputList, subjets;
332 vector< PseudoJet >::iterator itInputList, itOutputList;
333 vector< TEstimatorStruct >::iterator itEstimators;
334 Double_t excl_ymerge23 = 0.0;
335 Double_t excl_ymerge34 = 0.0;
336 Double_t excl_ymerge45 = 0.0;
337 Double_t excl_ymerge56 = 0.0;
338
339 DelphesFactory *factory = GetFactory();
340
341 inputList.clear();
342
343 // loop over input objects
344 fItInputArray->Reset();
345 number = 0;
346 while((candidate = static_cast<Candidate*>(fItInputArray->Next())))
347 {
348 momentum = candidate->Momentum;
349 jet = PseudoJet(momentum.Px(), momentum.Py(), momentum.Pz(), momentum.E());
350 jet.set_user_index(number);
351 inputList.push_back(jet);
352 ++number;
353 }
354
355 // construct jets
356 if(fAreaDefinition)
357 {
358 sequence = new ClusterSequenceArea(inputList, *fDefinition, *fAreaDefinition);
359 }
360 else
361 {
362 sequence = new ClusterSequence(inputList, *fDefinition);
363 }
364
365 // compute rho and store it
366 if(fComputeRho && fAreaDefinition)
367 {
368 for(itEstimators = fEstimators.begin(); itEstimators != fEstimators.end(); ++itEstimators)
369 {
370 itEstimators->estimator->set_particles(inputList);
371 rho = itEstimators->estimator->rho();
372
373 candidate = factory->NewCandidate();
374 candidate->Momentum.SetPtEtaPhiE(rho, 0.0, 0.0, rho);
375 candidate->Edges[0] = itEstimators->etaMin;
376 candidate->Edges[1] = itEstimators->etaMax;
377 fRhoOutputArray->Add(candidate);
378 }
379 }
380
381 outputList.clear();
382
383
384 if(fExclusiveClustering)
385 {
386 try{
387 outputList = sorted_by_pt(sequence->exclusive_jets( fNJets ));
388 }
389 catch(fastjet::Error)
390 {
391 outputList.clear();
392 }
393
394 excl_ymerge23 = sequence->exclusive_ymerge( 2 );
395 excl_ymerge34 = sequence->exclusive_ymerge( 3 );
396 excl_ymerge45 = sequence->exclusive_ymerge( 4 );
397 excl_ymerge56 = sequence->exclusive_ymerge( 5 );
398 }
399 else
400 {
401 outputList = sorted_by_pt(sequence->inclusive_jets(fJetPTMin));
402 }
403
404 // loop over all jets and export them
405 detaMax = 0.0;
406 dphiMax = 0.0;
407
408 for(itOutputList = outputList.begin(); itOutputList != outputList.end(); ++itOutputList)
409 {
410 jet = *itOutputList;
411 if(fJetAlgorithm == 7) jet = join(jet.constituents());
412
413 momentum.SetPxPyPzE(jet.px(), jet.py(), jet.pz(), jet.E());
414
415 area.reset(0.0, 0.0, 0.0, 0.0);
416 if(fAreaDefinition) area = itOutputList->area_4vector();
417
418
419
420 candidate = factory->NewCandidate();
421
422 time = 0.0;
423 timeWeight = 0.0;
424
425 charge = 0;
426
427 ncharged = 0;
428 nneutrals = 0;
429
430 inputList.clear();
431 inputList = sequence->constituents(*itOutputList);
432
433 for(itInputList = inputList.begin(); itInputList != inputList.end(); ++itInputList)
434 {
435 if(itInputList->user_index() < 0) continue;
436 constituent = static_cast<Candidate*>(fInputArray->At(itInputList->user_index()));
437
438 deta = TMath::Abs(momentum.Eta() - constituent->Momentum.Eta());
439 dphi = TMath::Abs(momentum.DeltaPhi(constituent->Momentum));
440 if(deta > detaMax) detaMax = deta;
441 if(dphi > dphiMax) dphiMax = dphi;
442
443 if(constituent->Charge == 0) nneutrals++;
444 else ncharged++;
445
446 time += TMath::Sqrt(constituent->Momentum.E())*(constituent->Position.T());
447 timeWeight += TMath::Sqrt(constituent->Momentum.E());
448
449 charge += constituent->Charge;
450
451 candidate->AddCandidate(constituent);
452 }
453
454 candidate->Momentum = momentum;
455 candidate->Position.SetT(time/timeWeight);
456 candidate->Area.SetPxPyPzE(area.px(), area.py(), area.pz(), area.E());
457
458 candidate->DeltaEta = detaMax;
459 candidate->DeltaPhi = dphiMax;
460 candidate->Charge = charge;
461 candidate->NNeutrals = nneutrals;
462 candidate->NCharged = ncharged;
463
464
465 //for exclusive clustering, access y_n,n+1 as exclusive_ymerge (fNJets);
466 candidate->ExclYmerge23 = excl_ymerge23;
467 candidate->ExclYmerge34 = excl_ymerge34;
468 candidate->ExclYmerge45 = excl_ymerge45;
469 candidate->ExclYmerge56 = excl_ymerge56;
470
471 //------------------------------------
472 // Trimming
473 //------------------------------------
474
475 if(fComputeTrimming)
476 {
477
478 fastjet::Filter trimmer(fastjet::JetDefinition(fastjet::kt_algorithm,fRTrim),fastjet::SelectorPtFractionMin(fPtFracTrim));
479 fastjet::PseudoJet trimmed_jet = trimmer(*itOutputList);
480
481 trimmed_jet = join(trimmed_jet.constituents());
482
483 candidate->TrimmedP4[0].SetPtEtaPhiM(trimmed_jet.pt(), trimmed_jet.eta(), trimmed_jet.phi(), trimmed_jet.m());
484
485 // four hardest subjets
486 subjets.clear();
487 subjets = trimmed_jet.pieces();
488 subjets = sorted_by_pt(subjets);
489
490 candidate->NSubJetsTrimmed = subjets.size();
491
492 for (size_t i = 0; i < subjets.size() and i < 4; i++)
493 {
494 if(subjets.at(i).pt() < 0) continue ;
495 candidate->TrimmedP4[i+1].SetPtEtaPhiM(subjets.at(i).pt(), subjets.at(i).eta(), subjets.at(i).phi(), subjets.at(i).m());
496 }
497 }
498
499
500 //------------------------------------
501 // Pruning
502 //------------------------------------
503
504
505 if(fComputePruning)
506 {
507
508 fastjet::Pruner pruner(fastjet::JetDefinition(fastjet::cambridge_algorithm,fRPrun),fZcutPrun,fRcutPrun);
509 fastjet::PseudoJet pruned_jet = pruner(*itOutputList);
510
511 candidate->PrunedP4[0].SetPtEtaPhiM(pruned_jet.pt(), pruned_jet.eta(), pruned_jet.phi(), pruned_jet.m());
512
513 // four hardest subjet
514 subjets.clear();
515 subjets = pruned_jet.pieces();
516 subjets = sorted_by_pt(subjets);
517
518 candidate->NSubJetsPruned = subjets.size();
519
520 for (size_t i = 0; i < subjets.size() and i < 4; i++)
521 {
522 if(subjets.at(i).pt() < 0) continue ;
523 candidate->PrunedP4[i+1].SetPtEtaPhiM(subjets.at(i).pt(), subjets.at(i).eta(), subjets.at(i).phi(), subjets.at(i).m());
524 }
525
526 }
527
528 //------------------------------------
529 // SoftDrop
530 //------------------------------------
531
532 if(fComputeSoftDrop)
533 {
534
535 contrib::SoftDrop softDrop(fBetaSoftDrop,fSymmetryCutSoftDrop,fR0SoftDrop);
536 fastjet::PseudoJet softdrop_jet = softDrop(*itOutputList);
537
538 candidate->SoftDroppedP4[0].SetPtEtaPhiM(softdrop_jet.pt(), softdrop_jet.eta(), softdrop_jet.phi(), softdrop_jet.m());
539
540 // four hardest subjet
541
542 subjets.clear();
543 subjets = softdrop_jet.pieces();
544 subjets = sorted_by_pt(subjets);
545 candidate->NSubJetsSoftDropped = softdrop_jet.pieces().size();
546
547 candidate->SoftDroppedJet = candidate->SoftDroppedP4[0];
548
549 for (size_t i = 0; i < subjets.size() and i < 4; i++)
550 {
551 if(subjets.at(i).pt() < 0) continue ;
552 candidate->SoftDroppedP4[i+1].SetPtEtaPhiM(subjets.at(i).pt(), subjets.at(i).eta(), subjets.at(i).phi(), subjets.at(i).m());
553 if(i==0) candidate->SoftDroppedSubJet1 = candidate->SoftDroppedP4[i+1];
554 if(i==1) candidate->SoftDroppedSubJet2 = candidate->SoftDroppedP4[i+1];
555 }
556 }
557
558 // --- compute N-subjettiness with N = 1,2,3,4,5 ----
559
560 if(fComputeNsubjettiness)
561 {
562
563 Nsubjettiness nSub1(1, *fAxesDef, *fMeasureDef);
564 Nsubjettiness nSub2(2, *fAxesDef, *fMeasureDef);
565 Nsubjettiness nSub3(3, *fAxesDef, *fMeasureDef);
566 Nsubjettiness nSub4(4, *fAxesDef, *fMeasureDef);
567 Nsubjettiness nSub5(5, *fAxesDef, *fMeasureDef);
568
569 candidate->Tau[0] = nSub1(*itOutputList);
570 candidate->Tau[1] = nSub2(*itOutputList);
571 candidate->Tau[2] = nSub3(*itOutputList);
572 candidate->Tau[3] = nSub4(*itOutputList);
573 candidate->Tau[4] = nSub5(*itOutputList);
574
575 }
576
577 fOutputArray->Add(candidate);
578 }
579 delete sequence;
580}
Note: See TracBrowser for help on using the repository browser.