[694] | 1 |
|
---|
[814] | 2 | /** \class FastJetFinder
|
---|
| 3 | *
|
---|
[816] | 4 | * Finds jets using FastJet library.
|
---|
[814] | 5 | *
|
---|
| 6 | * $Date: 2014-04-17 10:28:09 +0000 (Thu, 17 Apr 2014) $
|
---|
| 7 | * $Revision: 1383 $
|
---|
| 8 | *
|
---|
| 9 | *
|
---|
| 10 | * \author P. Demin - UCL, Louvain-la-Neuve
|
---|
| 11 | *
|
---|
| 12 | */
|
---|
| 13 |
|
---|
[694] | 14 | #include "modules/FastJetFinder.h"
|
---|
| 15 |
|
---|
| 16 | #include "classes/DelphesClasses.h"
|
---|
| 17 | #include "classes/DelphesFactory.h"
|
---|
[766] | 18 | #include "classes/DelphesFormula.h"
|
---|
[694] | 19 |
|
---|
[703] | 20 | #include "ExRootAnalysis/ExRootResult.h"
|
---|
| 21 | #include "ExRootAnalysis/ExRootFilter.h"
|
---|
| 22 | #include "ExRootAnalysis/ExRootClassifier.h"
|
---|
| 23 |
|
---|
| 24 | #include "TMath.h"
|
---|
| 25 | #include "TString.h"
|
---|
| 26 | #include "TFormula.h"
|
---|
| 27 | #include "TRandom3.h"
|
---|
| 28 | #include "TObjArray.h"
|
---|
| 29 | #include "TDatabasePDG.h"
|
---|
| 30 | #include "TLorentzVector.h"
|
---|
| 31 |
|
---|
[1315] | 32 | #include <algorithm>
|
---|
[703] | 33 | #include <stdexcept>
|
---|
| 34 | #include <iostream>
|
---|
| 35 | #include <sstream>
|
---|
| 36 | #include <vector>
|
---|
| 37 |
|
---|
[694] | 38 | #include "fastjet/PseudoJet.hh"
|
---|
| 39 | #include "fastjet/JetDefinition.hh"
|
---|
| 40 | #include "fastjet/ClusterSequence.hh"
|
---|
[1008] | 41 | #include "fastjet/Selector.hh"
|
---|
| 42 | #include "fastjet/ClusterSequenceArea.hh"
|
---|
| 43 | #include "fastjet/tools/JetMedianBackgroundEstimator.hh"
|
---|
[694] | 44 |
|
---|
| 45 | #include "fastjet/plugins/SISCone/fastjet/SISConePlugin.hh"
|
---|
| 46 | #include "fastjet/plugins/CDFCones/fastjet/CDFMidPointPlugin.hh"
|
---|
| 47 | #include "fastjet/plugins/CDFCones/fastjet/CDFJetCluPlugin.hh"
|
---|
| 48 |
|
---|
[1372] | 49 | #include "fastjet/contribs/Nsubjettiness/Nsubjettiness.hh"
|
---|
[1368] | 50 | #include "fastjet/contribs/Nsubjettiness/Njettiness.hh"
|
---|
| 51 | #include "fastjet/contribs/Nsubjettiness/NjettinessPlugin.hh"
|
---|
| 52 | #include "fastjet/contribs/Nsubjettiness/WinnerTakeAllRecombiner.hh"
|
---|
| 53 |
|
---|
[694] | 54 | using namespace std;
|
---|
| 55 | using namespace fastjet;
|
---|
[1368] | 56 | using namespace fastjet::contrib;
|
---|
[694] | 57 |
|
---|
[1368] | 58 |
|
---|
[694] | 59 | //------------------------------------------------------------------------------
|
---|
| 60 |
|
---|
| 61 | FastJetFinder::FastJetFinder() :
|
---|
[1383] | 62 | fPlugin(0), fRecomb(0), fNjettinessPlugin(0), fDefinition(0), fAreaDefinition(0), fItInputArray(0)
|
---|
[694] | 63 | {
|
---|
| 64 |
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | //------------------------------------------------------------------------------
|
---|
| 68 |
|
---|
| 69 | FastJetFinder::~FastJetFinder()
|
---|
| 70 | {
|
---|
| 71 |
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | //------------------------------------------------------------------------------
|
---|
| 75 |
|
---|
| 76 | void FastJetFinder::Init()
|
---|
| 77 | {
|
---|
[1383] | 78 | JetDefinition::Plugin *plugin = 0;
|
---|
| 79 | JetDefinition::Recombiner *recomb = 0;
|
---|
| 80 | NjettinessPlugin *njetPlugin = 0;
|
---|
[1372] | 81 |
|
---|
[1315] | 82 | // read eta ranges
|
---|
| 83 |
|
---|
| 84 | ExRootConfParam param = GetParam("RhoEtaRange");
|
---|
| 85 | Long_t i, size;
|
---|
| 86 |
|
---|
| 87 | fEtaRangeMap.clear();
|
---|
| 88 | size = param.GetSize();
|
---|
| 89 | for(i = 0; i < size/2; ++i)
|
---|
| 90 | {
|
---|
| 91 | fEtaRangeMap[param[i*2].GetDouble()] = param[i*2 + 1].GetDouble();
|
---|
| 92 | }
|
---|
| 93 |
|
---|
[694] | 94 | // define algorithm
|
---|
| 95 |
|
---|
| 96 | fJetAlgorithm = GetInt("JetAlgorithm", 6);
|
---|
[1008] | 97 | fParameterR = GetDouble("ParameterR", 0.5);
|
---|
[694] | 98 |
|
---|
| 99 | fConeRadius = GetDouble("ConeRadius", 0.5);
|
---|
| 100 | fSeedThreshold = GetDouble("SeedThreshold", 1.0);
|
---|
| 101 | fConeAreaFraction = GetDouble("ConeAreaFraction", 1.0);
|
---|
| 102 | fMaxIterations = GetInt("MaxIterations", 100);
|
---|
| 103 | fMaxPairSize = GetInt("MaxPairSize", 2);
|
---|
| 104 | fIratch = GetInt("Iratch", 1);
|
---|
[1335] | 105 | fAdjacencyCut = GetInt("AdjacencyCut", 2);
|
---|
[694] | 106 | fOverlapThreshold = GetDouble("OverlapThreshold", 0.75);
|
---|
| 107 |
|
---|
| 108 | fJetPTMin = GetDouble("JetPTMin", 10.0);
|
---|
[1030] | 109 |
|
---|
[1368] | 110 | //-- N(sub)jettiness parameters --
|
---|
[1372] | 111 |
|
---|
[1368] | 112 | fComputeNsubjettiness = GetBool("ComputeNsubjettiness", false);
|
---|
| 113 | fBeta = GetDouble("Beta", 1.0);
|
---|
| 114 | fAxisMode = GetInt("AxisMode", 1);
|
---|
[1372] | 115 | fRcutOff = GetDouble("RcutOff", 0.8); // used only if Njettiness is used as jet clustering algo (case 8)
|
---|
| 116 | fN = GetInt("N", 2); // used only if Njettiness is used as jet clustering algo (case 8)
|
---|
| 117 |
|
---|
[1030] | 118 | // --- Jet Area Parameters ---
|
---|
[1023] | 119 | fAreaAlgorithm = GetInt("AreaAlgorithm", 0);
|
---|
| 120 | fComputeRho = GetBool("ComputeRho", false);
|
---|
[1372] | 121 |
|
---|
[1030] | 122 | // - ghost based areas -
|
---|
[1023] | 123 | fGhostEtaMax = GetDouble("GhostEtaMax", 5.0);
|
---|
| 124 | fRepeat = GetInt("Repeat", 1);
|
---|
| 125 | fGhostArea = GetDouble("GhostArea", 0.01);
|
---|
| 126 | fGridScatter = GetDouble("GridScatter", 1.0);
|
---|
| 127 | fPtScatter = GetDouble("PtScatter", 0.1);
|
---|
[1030] | 128 | fMeanGhostPt = GetDouble("MeanGhostPt", 1.0E-100);
|
---|
[1372] | 129 |
|
---|
[1030] | 130 | // - voronoi based areas -
|
---|
[1023] | 131 | fEffectiveRfact = GetDouble("EffectiveRfact", 1.0);
|
---|
[694] | 132 |
|
---|
[1030] | 133 | switch(fAreaAlgorithm)
|
---|
| 134 | {
|
---|
[1008] | 135 | case 1:
|
---|
[1383] | 136 | fAreaDefinition = new AreaDefinition(active_area_explicit_ghosts, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
|
---|
[1008] | 137 | break;
|
---|
| 138 | case 2:
|
---|
[1383] | 139 | fAreaDefinition = new AreaDefinition(one_ghost_passive_area, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
|
---|
[1008] | 140 | break;
|
---|
| 141 | case 3:
|
---|
[1383] | 142 | fAreaDefinition = new AreaDefinition(passive_area, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
|
---|
[1008] | 143 | break;
|
---|
| 144 | case 4:
|
---|
[1383] | 145 | fAreaDefinition = new AreaDefinition(VoronoiAreaSpec(fEffectiveRfact));
|
---|
[1008] | 146 | break;
|
---|
| 147 | case 5:
|
---|
[1383] | 148 | fAreaDefinition = new AreaDefinition(active_area, GhostedAreaSpec(fGhostEtaMax, fRepeat, fGhostArea, fGridScatter, fPtScatter, fMeanGhostPt));
|
---|
[1008] | 149 | break;
|
---|
[1023] | 150 | default:
|
---|
| 151 | case 0:
|
---|
| 152 | fAreaDefinition = 0;
|
---|
| 153 | break;
|
---|
[1008] | 154 | }
|
---|
| 155 |
|
---|
[1030] | 156 | switch(fJetAlgorithm)
|
---|
| 157 | {
|
---|
[1315] | 158 | case 1:
|
---|
[1383] | 159 | plugin = new CDFJetCluPlugin(fSeedThreshold, fConeRadius, fAdjacencyCut, fMaxIterations, fIratch, fOverlapThreshold);
|
---|
| 160 | fDefinition = new JetDefinition(plugin);
|
---|
[694] | 161 | break;
|
---|
| 162 | case 2:
|
---|
[1383] | 163 | plugin = new CDFMidPointPlugin(fSeedThreshold, fConeRadius, fConeAreaFraction, fMaxPairSize, fMaxIterations, fOverlapThreshold);
|
---|
| 164 | fDefinition = new JetDefinition(plugin);
|
---|
[694] | 165 | break;
|
---|
| 166 | case 3:
|
---|
[1383] | 167 | plugin = new SISConePlugin(fConeRadius, fOverlapThreshold, fMaxIterations, fJetPTMin);
|
---|
| 168 | fDefinition = new JetDefinition(plugin);
|
---|
[694] | 169 | break;
|
---|
| 170 | case 4:
|
---|
[1383] | 171 | fDefinition = new JetDefinition(kt_algorithm, fParameterR);
|
---|
[694] | 172 | break;
|
---|
| 173 | case 5:
|
---|
[1383] | 174 | fDefinition = new JetDefinition(cambridge_algorithm, fParameterR);
|
---|
[694] | 175 | break;
|
---|
| 176 | default:
|
---|
| 177 | case 6:
|
---|
[1383] | 178 | fDefinition = new JetDefinition(antikt_algorithm, fParameterR);
|
---|
[694] | 179 | break;
|
---|
[1368] | 180 | case 7:
|
---|
[1383] | 181 | recomb = new WinnerTakeAllRecombiner();
|
---|
| 182 | fDefinition = new JetDefinition(antikt_algorithm, fParameterR, recomb, Best);
|
---|
[1368] | 183 | break;
|
---|
| 184 | case 8:
|
---|
[1383] | 185 | njetPlugin = new NjettinessPlugin(fN, Njettiness::wta_kt_axes, Njettiness::unnormalized_cutoff_measure, fBeta, fRcutOff);
|
---|
| 186 | fDefinition = new JetDefinition(njetPlugin);
|
---|
[1368] | 187 | break;
|
---|
[694] | 188 | }
|
---|
[1315] | 189 |
|
---|
[694] | 190 | fPlugin = plugin;
|
---|
[1368] | 191 | fRecomb = recomb;
|
---|
[1383] | 192 | fNjettinessPlugin = njetPlugin;
|
---|
[1372] | 193 |
|
---|
[694] | 194 | ClusterSequence::print_banner();
|
---|
[1315] | 195 |
|
---|
[905] | 196 | // import input array
|
---|
[694] | 197 |
|
---|
[905] | 198 | fInputArray = ImportArray(GetString("InputArray", "Calorimeter/towers"));
|
---|
[694] | 199 | fItInputArray = fInputArray->MakeIterator();
|
---|
| 200 |
|
---|
| 201 | // create output arrays
|
---|
| 202 |
|
---|
[1030] | 203 | fOutputArray = ExportArray(GetString("OutputArray", "jets"));
|
---|
[1031] | 204 | fRhoOutputArray = ExportArray(GetString("RhoOutputArray", "rho"));
|
---|
[694] | 205 | }
|
---|
| 206 |
|
---|
| 207 | //------------------------------------------------------------------------------
|
---|
| 208 |
|
---|
| 209 | void FastJetFinder::Finish()
|
---|
| 210 | {
|
---|
| 211 | if(fItInputArray) delete fItInputArray;
|
---|
| 212 | if(fDefinition) delete fDefinition;
|
---|
[1008] | 213 | if(fAreaDefinition) delete fAreaDefinition;
|
---|
[694] | 214 | if(fPlugin) delete static_cast<JetDefinition::Plugin*>(fPlugin);
|
---|
[1368] | 215 | if(fRecomb) delete static_cast<JetDefinition::Recombiner*>(fRecomb);
|
---|
| 216 | if(fNjettinessPlugin) delete static_cast<JetDefinition::Plugin*>(fNjettinessPlugin);
|
---|
[694] | 217 | }
|
---|
| 218 |
|
---|
| 219 | //------------------------------------------------------------------------------
|
---|
| 220 |
|
---|
| 221 | void FastJetFinder::Process()
|
---|
| 222 | {
|
---|
[900] | 223 | Candidate *candidate, *constituent;
|
---|
[694] | 224 | TLorentzVector momentum;
|
---|
[900] | 225 | Double_t deta, dphi, detaMax, dphiMax;
|
---|
[1345] | 226 | Double_t time, weightTime, avTime;
|
---|
[741] | 227 | Int_t number;
|
---|
[1088] | 228 | Double_t rho = 0;
|
---|
| 229 | PseudoJet jet, area;
|
---|
[694] | 230 | vector<PseudoJet> inputList, outputList;
|
---|
[1023] | 231 | ClusterSequence *sequence;
|
---|
[1315] | 232 | map< Double_t, Double_t >::iterator itEtaRangeMap;
|
---|
[694] | 233 |
|
---|
| 234 | DelphesFactory *factory = GetFactory();
|
---|
| 235 |
|
---|
| 236 | inputList.clear();
|
---|
| 237 |
|
---|
[987] | 238 | // loop over input objects
|
---|
[694] | 239 | fItInputArray->Reset();
|
---|
[741] | 240 | number = 0;
|
---|
[694] | 241 | while((candidate = static_cast<Candidate*>(fItInputArray->Next())))
|
---|
[1315] | 242 | {
|
---|
[1030] | 243 | momentum = candidate->Momentum;
|
---|
| 244 | jet = PseudoJet(momentum.Px(), momentum.Py(), momentum.Pz(), momentum.E());
|
---|
| 245 | jet.set_user_index(number);
|
---|
| 246 | inputList.push_back(jet);
|
---|
| 247 | ++number;
|
---|
[694] | 248 | }
|
---|
[1315] | 249 |
|
---|
| 250 | // construct jets
|
---|
[1023] | 251 | if(fAreaDefinition)
|
---|
| 252 | {
|
---|
| 253 | sequence = new ClusterSequenceArea(inputList, *fDefinition, *fAreaDefinition);
|
---|
| 254 | }
|
---|
| 255 | else
|
---|
| 256 | {
|
---|
| 257 | sequence = new ClusterSequence(inputList, *fDefinition);
|
---|
[1315] | 258 | }
|
---|
[694] | 259 |
|
---|
[1023] | 260 | // compute rho and store it
|
---|
| 261 | if(fComputeRho && fAreaDefinition)
|
---|
| 262 | {
|
---|
[1315] | 263 | for(itEtaRangeMap = fEtaRangeMap.begin(); itEtaRangeMap != fEtaRangeMap.end(); ++itEtaRangeMap)
|
---|
| 264 | {
|
---|
| 265 | Selector select_rapidity = SelectorAbsRapRange(itEtaRangeMap->first, itEtaRangeMap->second);
|
---|
| 266 | JetMedianBackgroundEstimator estimator(select_rapidity, *fDefinition, *fAreaDefinition);
|
---|
| 267 | estimator.set_particles(inputList);
|
---|
| 268 | rho = estimator.rho();
|
---|
[1023] | 269 |
|
---|
[1315] | 270 | candidate = factory->NewCandidate();
|
---|
| 271 | candidate->Momentum.SetPtEtaPhiE(rho, 0.0, 0.0, rho);
|
---|
| 272 | candidate->Edges[0] = itEtaRangeMap->first;
|
---|
| 273 | candidate->Edges[1] = itEtaRangeMap->second;
|
---|
| 274 | fRhoOutputArray->Add(candidate);
|
---|
| 275 | }
|
---|
[1023] | 276 | }
|
---|
[1315] | 277 |
|
---|
[1030] | 278 | outputList.clear();
|
---|
| 279 | outputList = sorted_by_pt(sequence->inclusive_jets(fJetPTMin));
|
---|
[694] | 280 |
|
---|
[1368] | 281 |
|
---|
[694] | 282 | // loop over all jets and export them
|
---|
[1030] | 283 | detaMax = 0.0;
|
---|
| 284 | dphiMax = 0.0;
|
---|
| 285 | vector<PseudoJet>::iterator itInputList, itOutputList;
|
---|
| 286 | for(itOutputList = outputList.begin(); itOutputList != outputList.end(); ++itOutputList)
|
---|
| 287 | {
|
---|
| 288 | momentum.SetPxPyPzE(itOutputList->px(), itOutputList->py(), itOutputList->pz(), itOutputList->E());
|
---|
[1088] | 289 | area.reset(0.0, 0.0, 0.0, 0.0);
|
---|
| 290 | if(fAreaDefinition) area = itOutputList->area_4vector();
|
---|
[694] | 291 |
|
---|
[1030] | 292 | candidate = factory->NewCandidate();
|
---|
| 293 |
|
---|
[1345] | 294 | time=0;
|
---|
| 295 | weightTime=0;
|
---|
| 296 |
|
---|
[1030] | 297 | inputList.clear();
|
---|
| 298 | inputList = sequence->constituents(*itOutputList);
|
---|
[1372] | 299 |
|
---|
[1030] | 300 | for(itInputList = inputList.begin(); itInputList != inputList.end(); ++itInputList)
|
---|
| 301 | {
|
---|
[900] | 302 | constituent = static_cast<Candidate*>(fInputArray->At(itInputList->user_index()));
|
---|
[1030] | 303 |
|
---|
[900] | 304 | deta = TMath::Abs(momentum.Eta() - constituent->Momentum.Eta());
|
---|
| 305 | dphi = TMath::Abs(momentum.DeltaPhi(constituent->Momentum));
|
---|
| 306 | if(deta > detaMax) detaMax = deta;
|
---|
| 307 | if(dphi > dphiMax) dphiMax = dphi;
|
---|
[1372] | 308 |
|
---|
[1345] | 309 | time += TMath::Sqrt(constituent->Momentum.E())*(constituent->Position.T());
|
---|
| 310 | weightTime += TMath::Sqrt(constituent->Momentum.E());
|
---|
[1372] | 311 |
|
---|
[900] | 312 | candidate->AddCandidate(constituent);
|
---|
[1030] | 313 | }
|
---|
[1372] | 314 |
|
---|
[1345] | 315 | avTime = time/weightTime;
|
---|
[694] | 316 |
|
---|
[1030] | 317 | candidate->Momentum = momentum;
|
---|
[1345] | 318 | candidate->Position.SetT(avTime);
|
---|
[1088] | 319 | candidate->Area.SetPxPyPzE(area.px(), area.py(), area.pz(), area.E());
|
---|
[1030] | 320 |
|
---|
| 321 | candidate->DeltaEta = detaMax;
|
---|
| 322 | candidate->DeltaPhi = dphiMax;
|
---|
| 323 |
|
---|
[1368] | 324 | // --- compute N-subjettiness with N = 1,2,3,4,5 ----
|
---|
[1372] | 325 |
|
---|
[1368] | 326 | if(fComputeNsubjettiness)
|
---|
| 327 | {
|
---|
| 328 | Njettiness::AxesMode axisMode;
|
---|
[1372] | 329 |
|
---|
| 330 | switch(fAxisMode)
|
---|
| 331 | {
|
---|
| 332 | default:
|
---|
| 333 | case 1:
|
---|
| 334 | axisMode = Njettiness::wta_kt_axes;
|
---|
| 335 | break;
|
---|
| 336 | case 2:
|
---|
| 337 | axisMode = Njettiness::onepass_wta_kt_axes;
|
---|
| 338 | break;
|
---|
| 339 | case 3:
|
---|
| 340 | axisMode = Njettiness::kt_axes;
|
---|
| 341 | break;
|
---|
| 342 | case 4:
|
---|
| 343 | axisMode = Njettiness::onepass_kt_axes;
|
---|
| 344 | break;
|
---|
| 345 | }
|
---|
| 346 |
|
---|
[1368] | 347 | Njettiness::MeasureMode measureMode = Njettiness::unnormalized_measure;
|
---|
[1372] | 348 |
|
---|
[1368] | 349 | Nsubjettiness nSub1(1, axisMode, measureMode, fBeta);
|
---|
| 350 | Nsubjettiness nSub2(2, axisMode, measureMode, fBeta);
|
---|
[1372] | 351 | Nsubjettiness nSub3(3, axisMode, measureMode, fBeta);
|
---|
| 352 | Nsubjettiness nSub4(4, axisMode, measureMode, fBeta);
|
---|
| 353 | Nsubjettiness nSub5(5, axisMode, measureMode, fBeta);
|
---|
| 354 |
|
---|
| 355 | candidate->Tau[0] = nSub1(*itOutputList);
|
---|
| 356 | candidate->Tau[1] = nSub2(*itOutputList);
|
---|
| 357 | candidate->Tau[2] = nSub3(*itOutputList);
|
---|
| 358 | candidate->Tau[3] = nSub4(*itOutputList);
|
---|
| 359 | candidate->Tau[4] = nSub5(*itOutputList);
|
---|
[1368] | 360 | }
|
---|
| 361 |
|
---|
| 362 |
|
---|
[1030] | 363 | fOutputArray->Add(candidate);
|
---|
| 364 | }
|
---|
| 365 | delete sequence;
|
---|
[694] | 366 | }
|
---|