CMS 3D CMS Logo

FastjetJetProducer.cc
Go to the documentation of this file.
1 //
3 // FastjetJetProducer
4 // ------------------
5 //
6 // 04/21/2009 Philipp Schieferdecker <philipp.schieferdecker@cern.ch>
8 
12 
21 
27 
30 
31 #include "fastjet/SISConePlugin.hh"
32 #include "fastjet/CMSIterativeConePlugin.hh"
33 #include "fastjet/ATLASConePlugin.hh"
34 #include "fastjet/CDFMidPointPlugin.hh"
35 #include "fastjet/tools/Filter.hh"
36 #include "fastjet/tools/Pruner.hh"
37 #include "fastjet/tools/MassDropTagger.hh"
38 #include "fastjet/contrib/SoftDrop.hh"
39 #include "fastjet/tools/JetMedianBackgroundEstimator.hh"
40 #include "fastjet/tools/GridMedianBackgroundEstimator.hh"
41 #include "fastjet/tools/Subtractor.hh"
42 #include "fastjet/contrib/ConstituentSubtractor.hh"
44 
45 #include <iostream>
46 #include <memory>
47 #include <algorithm>
48 #include <limits>
49 #include <cmath>
50 //#include <fstream>
51 
52 using namespace std;
53 using namespace edm;
54 
56 // construction / destruction
58 
59 //______________________________________________________________________________
61  useOnlyVertexTracks_ = iConfig.getParameter<bool>("UseOnlyVertexTracks");
62  useOnlyOnePV_ = iConfig.getParameter<bool>("UseOnlyOnePV");
63  dzTrVtxMax_ = iConfig.getParameter<double>("DzTrVtxMax");
64  dxyTrVtxMax_ = iConfig.getParameter<double>("DxyTrVtxMax");
65  minVtxNdof_ = iConfig.getParameter<int>("MinVtxNdof");
66  maxVtxZ_ = iConfig.getParameter<double>("MaxVtxZ");
67 
68  useMassDropTagger_ = iConfig.getParameter<bool>("useMassDropTagger");
69  muCut_ = iConfig.getParameter<double>("muCut");
70  yCut_ = iConfig.getParameter<double>("yCut");
71 
72  useFiltering_ = iConfig.getParameter<bool>("useFiltering");
73  rFilt_ = iConfig.getParameter<double>("rFilt");
74  nFilt_ = iConfig.getParameter<int>("nFilt");
75  useDynamicFiltering_ = iConfig.getParameter<bool>("useDynamicFiltering");
77  rFiltDynamic_ = std::make_shared<DynamicRfilt>(rFilt_, rFiltFactor_);
78  rFiltFactor_ = iConfig.getParameter<double>("rFiltFactor");
79 
80  useTrimming_ = iConfig.getParameter<bool>("useTrimming");
81  trimPtFracMin_ = iConfig.getParameter<double>("trimPtFracMin");
82 
83  usePruning_ = iConfig.getParameter<bool>("usePruning");
84  zCut_ = iConfig.getParameter<double>("zcut");
85  RcutFactor_ = iConfig.getParameter<double>("rcut_factor");
86  useKtPruning_ = iConfig.getParameter<bool>("useKtPruning");
87 
88  useCMSBoostedTauSeedingAlgorithm_ = iConfig.getParameter<bool>("useCMSBoostedTauSeedingAlgorithm");
89  subjetPtMin_ = iConfig.getParameter<double>("subjetPtMin");
90  muMin_ = iConfig.getParameter<double>("muMin");
91  muMax_ = iConfig.getParameter<double>("muMax");
92  yMin_ = iConfig.getParameter<double>("yMin");
93  yMax_ = iConfig.getParameter<double>("yMax");
94  dRMin_ = iConfig.getParameter<double>("dRMin");
95  dRMax_ = iConfig.getParameter<double>("dRMax");
96  maxDepth_ = iConfig.getParameter<int>("maxDepth");
97 
98  useConstituentSubtraction_ = iConfig.getParameter<bool>("useConstituentSubtraction");
99  csRho_EtaMax_ = iConfig.getParameter<double>("csRho_EtaMax");
100  csRParam_ = iConfig.getParameter<double>("csRParam");
101 
102  useSoftDrop_ = iConfig.getParameter<bool>("useSoftDrop");
103  zCut_ = iConfig.getParameter<double>("zcut");
104  beta_ = iConfig.getParameter<double>("beta");
105  R0_ = iConfig.getParameter<double>("R0");
106 
107  correctShape_ = iConfig.getParameter<bool>("correctShape");
108  gridMaxRapidity_ = iConfig.getParameter<double>("gridMaxRapidity");
109  gridSpacing_ = iConfig.getParameter<double>("gridSpacing");
110 
112  consumes<edm::View<reco::RecoChargedRefCandidate>>(iConfig.getParameter<edm::InputTag>("src"));
113 
116  useExplicitGhosts_ = true;
117 
119 
120  if ((useMassDropTagger_) && ((muCut_ == -1) || (yCut_ == -1)))
121  throw cms::Exception("useMassDropTagger")
122  << "Parameters muCut and/or yCut for Mass Drop are not defined." << std::endl;
123 
124  if ((useFiltering_) && ((rFilt_ == -1) || (nFilt_ == -1))) {
125  throw cms::Exception("useFiltering") << "Parameters rFilt and/or nFilt for Filtering are not defined." << std::endl;
126  if ((useDynamicFiltering_) && (rFiltFactor_ == -1))
127  throw cms::Exception("useDynamicFiltering")
128  << "Parameters rFiltFactor for DynamicFiltering is not defined." << std::endl;
129  }
130 
131  if ((useTrimming_) && ((rFilt_ == -1) || (trimPtFracMin_ == -1)))
132  throw cms::Exception("useTrimming") << "Parameters rFilt and/or trimPtFracMin for Trimming are not defined."
133  << std::endl;
134 
135  if ((usePruning_) && ((zCut_ == -1) || (RcutFactor_ == -1) || (nFilt_ == -1)))
136  throw cms::Exception("usePruning") << "Parameters zCut and/or RcutFactor and/or nFilt for Pruning are not defined."
137  << std::endl;
138 
140  ((subjetPtMin_ == -1) || (maxDepth_ == -1) || (muMin_ == -1) || (muMax_ == -1) || (yMin_ == -1) ||
141  (yMax_ == -1) || (dRMin_ == -1) || (dRMax_ == -1)))
142  throw cms::Exception("useCMSBoostedTauSeedingAlgorithm")
143  << "Parameters subjetPtMin, muMin, muMax, yMin, yMax, dRmin, dRmax, maxDepth for CMSBoostedTauSeedingAlgorithm "
144  "are not defined."
145  << std::endl;
146 
147  if (useConstituentSubtraction_ && (fjAreaDefinition_.get() == nullptr))
148  throw cms::Exception("AreaMustBeSet")
149  << "Logic error. The area definition must be set if you use constituent subtraction." << std::endl;
150 
151  if ((useConstituentSubtraction_) && ((csRho_EtaMax_ == -1) || (csRParam_ == -1)))
152  throw cms::Exception("useConstituentSubtraction")
153  << "Parameters csRho_EtaMax and/or csRParam for ConstituentSubtraction are not defined." << std::endl;
154 
155  if (useSoftDrop_ && usePruning_)
156  throw cms::Exception("PruningAndSoftDrop")
157  << "Logic error. Soft drop is a generalized pruning, do not run them together." << std::endl;
158 
159  if ((useSoftDrop_) && ((zCut_ == -1) || (beta_ == -1) || (R0_ == -1)))
160  throw cms::Exception("useSoftDrop") << "Parameters zCut and/or beta and/or R0 for SoftDrop are not defined."
161  << std::endl;
162 
163  if ((correctShape_) && ((gridMaxRapidity_ == -1) || (gridSpacing_ == -1)))
164  throw cms::Exception("correctShape")
165  << "Parameters gridMaxRapidity and/or gridSpacing for SoftDrop are not defined." << std::endl;
166 }
167 
168 //______________________________________________________________________________
170 
172 // implementation of member functions
174 
176  // for everything but track jets
177  if (!makeTrackJet(jetTypeE)) {
178  // use the default production from one collection
180 
181  } else { // produce trackjets from tracks grouped per primary vertex
182 
183  produceTrackJets(iEvent, iSetup);
184  }
185 
186  // fjClusterSeq_ retains quite a lot of memory - about 1 to 7Mb at 200 pileup
187  // depending on the exact configuration; and there are 24 FastjetJetProducers in the
188  // sequence so this adds up to about 60 Mb. It's allocated every time runAlgorithm
189  // is called, so safe to delete here.
190  fjClusterSeq_.reset();
191 }
192 
194  // read in the track candidates
196  iEvent.getByToken(input_chrefcand_token_, inputsHandle);
197 
198  // make collection with pointers so we can play around with it
199  std::vector<edm::Ptr<reco::RecoChargedRefCandidate>> allInputs;
200  std::vector<edm::Ptr<reco::Candidate>> origInputs;
201  for (size_t i = 0; i < inputsHandle->size(); ++i) {
202  allInputs.push_back(inputsHandle->ptrAt(i));
203  origInputs.push_back(inputsHandle->ptrAt(i));
204  }
205 
206  // read in the PV collection
209  // define the overall output jet container
210  auto jets = std::make_unique<std::vector<reco::TrackJet>>();
211 
212  // loop over the good vertices, clustering for each vertex separately
213  for (reco::VertexCollection::const_iterator itVtx = pvCollection->begin(); itVtx != pvCollection->end(); ++itVtx) {
214  if (itVtx->isFake() || itVtx->ndof() < minVtxNdof_ || fabs(itVtx->z()) > maxVtxZ_)
215  continue;
216 
217  // clear the intermediate containers
218  inputs_.clear();
219  fjInputs_.clear();
220  fjJets_.clear();
221 
222  // if only vertex-associated tracks should be used
223  if (useOnlyVertexTracks_) {
224  // loop over the tracks associated to the vertex
225  for (reco::Vertex::trackRef_iterator itTr = itVtx->tracks_begin(); itTr != itVtx->tracks_end(); ++itTr) {
226  // whether a match was found in the track candidate input
227  bool found = false;
228  // loop over input track candidates
229  for (std::vector<edm::Ptr<reco::RecoChargedRefCandidate>>::iterator itIn = allInputs.begin();
230  itIn != allInputs.end();
231  ++itIn) {
232  // match the input track candidate to the track from the vertex
233  reco::TrackRef trref(itTr->castTo<reco::TrackRef>());
234  // check if the tracks match
235  if ((*itIn)->track() == trref) {
236  found = true;
237  // add this track candidate to the input for clustering
238  inputs_.push_back(*itIn);
239  // erase the track candidate from the total list of input, so we don't reuse it later
240  allInputs.erase(itIn);
241  // found the candidate track corresponding to the vertex track, so stop the loop
242  break;
243  } // end if match found
244  } // end loop over input tracks
245  // give an info message in case no match is found (can happen if candidates are subset of tracks used for clustering)
246  if (!found)
247  edm::LogInfo("FastjetTrackJetProducer")
248  << "Ignoring a track at vertex which is not in input track collection!";
249  } // end loop over tracks associated to vertex
250  // if all inpt track candidates should be used
251  } else {
252  // loop over input track candidates
253  for (std::vector<edm::Ptr<reco::RecoChargedRefCandidate>>::iterator itIn = allInputs.begin();
254  itIn != allInputs.end();
255  ++itIn) {
256  // check if the track is close enough to the vertex
257  float dz = (*itIn)->track()->dz(itVtx->position());
258  float dxy = (*itIn)->track()->dxy(itVtx->position());
259  if (fabs(dz) > dzTrVtxMax_)
260  continue;
261  if (fabs(dxy) > dxyTrVtxMax_)
262  continue;
263  bool closervtx = false;
264  // now loop over the good vertices a second time
265  for (reco::VertexCollection::const_iterator itVtx2 = pvCollection->begin(); itVtx2 != pvCollection->end();
266  ++itVtx2) {
267  if (itVtx->isFake() || itVtx->ndof() < minVtxNdof_ || fabs(itVtx->z()) > maxVtxZ_)
268  continue;
269  // and check this track is closer to any other vertex (if more than 1 vertex considered)
270  if (!useOnlyOnePV_ && itVtx != itVtx2 && fabs((*itIn)->track()->dz(itVtx2->position())) < fabs(dz)) {
271  closervtx = true;
272  break; // 1 closer vertex makes the track already not matched, so break
273  }
274  }
275  // don't add this track if another vertex is found closer
276  if (closervtx)
277  continue;
278  // add this track candidate to the input for clustering
279  inputs_.push_back(*itIn);
280  // erase the track candidate from the total list of input, so we don't reuse it later
281  allInputs.erase(itIn);
282  // take a step back in the loop since we just erased
283  --itIn;
284  }
285  }
286 
287  // convert candidates in inputs_ to fastjet::PseudoJets in fjInputs_
288  fjInputs_.reserve(inputs_.size());
289  inputTowers();
290  LogDebug("FastjetTrackJetProducer") << "Inputted towers\n";
291 
292  // run algorithm, using fjInputs_, modifying fjJets_ and allocating fjClusterSeq_
293  runAlgorithm(iEvent, iSetup);
294  LogDebug("FastjetTrackJetProducer") << "Ran algorithm\n";
295 
296  // convert our jets and add to the overall jet vector
297  for (unsigned int ijet = 0; ijet < fjJets_.size(); ++ijet) {
298  // get the constituents from fastjet
299  std::vector<fastjet::PseudoJet> fjConstituents = sorted_by_pt(fjClusterSeq_->constituents(fjJets_[ijet]));
300  // convert them to CandidatePtr vector
301  std::vector<reco::CandidatePtr> constituents = getConstituents(fjConstituents);
302  // fill the trackjet
304  // write the specifics to the jet (simultaneously sets 4-vector, vertex).
306  jet,
307  reco::Particle::LorentzVector(fjJets_[ijet].px(), fjJets_[ijet].py(), fjJets_[ijet].pz(), fjJets_[ijet].E()),
308  vertex_,
309  constituents);
310  jet.setJetArea(0);
311  jet.setPileup(0);
312  jet.setPrimaryVertex(edm::Ref<reco::VertexCollection>(pvCollection, (int)(itVtx - pvCollection->begin())));
313  jet.setVertex(itVtx->position());
314  jets->push_back(jet);
315  }
316 
317  if (useOnlyOnePV_)
318  break; // stop vertex loop if only one vertex asked for
319  } // end loop over vertices
320 
321  // put the jets in the collection
322  LogDebug("FastjetTrackJetProducer") << "Put " << jets->size() << " jets in the event.\n";
323  iEvent.put(std::move(jets));
324 
325  // Clear the work vectors so that memory is free for other modules.
326  // Use the trick of swapping with an empty vector so that the memory
327  // is actually given back rather than silently kept.
328  decltype(fjInputs_)().swap(fjInputs_);
329  decltype(fjJets_)().swap(fjJets_);
330  decltype(inputs_)().swap(inputs_);
331 }
332 
333 //______________________________________________________________________________
335  // run algorithm
336  /*
337  fjInputs_.clear();
338  double px, py , pz, E;
339  string line;
340  std::ifstream fin("dump3.txt");
341  while (getline(fin, line)){
342  if (line == "#END") break;
343  if (line.substr(0,1) == "#") {continue;}
344  istringstream istr(line);
345  istr >> px >> py >> pz >> E;
346  // create a fastjet::PseudoJet with these components and put it onto
347  // back of the input_particles vector
348  fastjet::PseudoJet j(px,py,pz,E);
349  //if ( fabs(j.rap()) < inputEtaMax )
350  fjInputs_.push_back(fastjet::PseudoJet(px,py,pz,E));
351  }
352  fin.close();
353  */
354 
355  if (!doAreaFastjet_ && !doRhoFastjet_) {
356  fjClusterSeq_ = std::make_shared<fastjet::ClusterSequence>(fjInputs_, *fjJetDefinition_);
357  } else if (voronoiRfact_ <= 0) {
358  fjClusterSeq_ =
359  ClusterSequencePtr(new fastjet::ClusterSequenceArea(fjInputs_, *fjJetDefinition_, *fjAreaDefinition_));
360  } else {
362  new fastjet::ClusterSequenceVoronoiArea(fjInputs_, *fjJetDefinition_, fastjet::VoronoiAreaSpec(voronoiRfact_)));
363  }
364 
367  fjJets_ = fastjet::sorted_by_pt(fjClusterSeq_->inclusive_jets(jetPtMin_));
368  } else {
369  fjJets_.clear();
370 
371  transformer_coll transformers;
372 
373  std::vector<fastjet::PseudoJet> tempJets = fastjet::sorted_by_pt(fjClusterSeq_->inclusive_jets(jetPtMin_));
374 
375  unique_ptr<fastjet::JetMedianBackgroundEstimator> bge_rho;
377  fastjet::Selector rho_range = fastjet::SelectorAbsRapMax(csRho_EtaMax_);
378  bge_rho = std::make_unique<fastjet::JetMedianBackgroundEstimator>(
379  rho_range, fastjet::JetDefinition(fastjet::kt_algorithm, csRParam_), *fjAreaDefinition_);
380  bge_rho->set_particles(fjInputs_);
381  fastjet::contrib::ConstituentSubtractor* constituentSubtractor =
382  new fastjet::contrib::ConstituentSubtractor(bge_rho.get());
383 
384  transformers.push_back(transformer_ptr(constituentSubtractor));
385  };
386  if (useMassDropTagger_) {
387  fastjet::MassDropTagger* md_tagger = new fastjet::MassDropTagger(muCut_, yCut_);
388  transformers.push_back(transformer_ptr(md_tagger));
389  }
391  fastjet::contrib::CMSBoostedTauSeedingAlgorithm* tau_tagger = new fastjet::contrib::CMSBoostedTauSeedingAlgorithm(
393  transformers.push_back(transformer_ptr(tau_tagger));
394  }
395  if (useTrimming_) {
396  fastjet::Filter* trimmer = new fastjet::Filter(fastjet::JetDefinition(fastjet::kt_algorithm, rFilt_),
397  fastjet::SelectorPtFractionMin(trimPtFracMin_));
398  transformers.push_back(transformer_ptr(trimmer));
399  }
400  if ((useFiltering_) && (!useDynamicFiltering_)) {
401  fastjet::Filter* filter = new fastjet::Filter(fastjet::JetDefinition(fastjet::cambridge_algorithm, rFilt_),
402  fastjet::SelectorNHardest(nFilt_));
403  transformers.push_back(transformer_ptr(filter));
404  }
405 
406  if ((usePruning_) && (!useKtPruning_)) {
407  fastjet::Pruner* pruner = new fastjet::Pruner(fastjet::cambridge_algorithm, zCut_, RcutFactor_);
408  transformers.push_back(transformer_ptr(pruner));
409  }
410 
411  if (useDynamicFiltering_) {
413  new fastjet::Filter(fastjet::Filter(&*rFiltDynamic_, fastjet::SelectorNHardest(nFilt_)));
414  transformers.push_back(transformer_ptr(filter));
415  }
416 
417  if (useKtPruning_) {
418  fastjet::Pruner* pruner = new fastjet::Pruner(fastjet::kt_algorithm, zCut_, RcutFactor_);
419  transformers.push_back(transformer_ptr(pruner));
420  }
421 
422  if (useSoftDrop_) {
423  fastjet::contrib::SoftDrop* sd = new fastjet::contrib::SoftDrop(beta_, zCut_, R0_);
424  transformers.push_back(transformer_ptr(sd));
425  }
426 
427  unique_ptr<fastjet::Subtractor> subtractor;
428  unique_ptr<fastjet::GridMedianBackgroundEstimator> bge_rho_grid;
429  if (correctShape_) {
430  bge_rho_grid = std::make_unique<fastjet::GridMedianBackgroundEstimator>(gridMaxRapidity_, gridSpacing_);
431  bge_rho_grid->set_particles(fjInputs_);
432  subtractor = std::make_unique<fastjet::Subtractor>(bge_rho_grid.get());
433  subtractor->set_use_rho_m();
434  //subtractor->use_common_bge_for_rho_and_rhom(true);
435  }
436 
437  for (std::vector<fastjet::PseudoJet>::const_iterator ijet = tempJets.begin(), ijetEnd = tempJets.end();
438  ijet != ijetEnd;
439  ++ijet) {
440  fastjet::PseudoJet transformedJet = *ijet;
441  bool passed = true;
442  for (transformer_coll::const_iterator itransf = transformers.begin(), itransfEnd = transformers.end();
443  itransf != itransfEnd;
444  ++itransf) {
445  if (transformedJet != 0) {
446  transformedJet = (**itransf)(transformedJet);
447  } else {
448  passed = false;
449  }
450  }
451 
452  if (correctShape_) {
453  transformedJet = (*subtractor)(transformedJet);
454  }
455 
456  if (passed) {
457  fjJets_.push_back(transformedJet);
458  }
459  }
460  }
461 }
462 
463 //______________________________________________________________________________
465  edm::ParameterSetDescription descFastjetJetProducer;
467  fillDescriptionsFromFastJetProducer(descFastjetJetProducer);
471  descFastjetJetProducer.add<string>("jetCollInstanceName", "");
472  descFastjetJetProducer.add<bool>("sumRecHits", false);
473 
475  descriptions.add("FastjetJetProducer", descFastjetJetProducer);
476 }
477 
479  desc.add<bool>("useMassDropTagger", false);
480  desc.add<bool>("useFiltering", false);
481  desc.add<bool>("useDynamicFiltering", false);
482  desc.add<bool>("useTrimming", false);
483  desc.add<bool>("usePruning", false);
484  desc.add<bool>("useCMSBoostedTauSeedingAlgorithm", false);
485  desc.add<bool>("useKtPruning", false);
486  desc.add<bool>("useConstituentSubtraction", false);
487  desc.add<bool>("useSoftDrop", false);
488  desc.add<bool>("correctShape", false);
489  desc.add<bool>("UseOnlyVertexTracks", false);
490  desc.add<bool>("UseOnlyOnePV", false);
491  desc.add<double>("muCut", -1.0);
492  desc.add<double>("yCut", -1.0);
493  desc.add<double>("rFilt", -1.0);
494  desc.add<double>("rFiltFactor", -1.0);
495  desc.add<double>("trimPtFracMin", -1.0);
496  desc.add<double>("zcut", -1.0);
497  desc.add<double>("rcut_factor", -1.0);
498  desc.add<double>("csRho_EtaMax", -1.0);
499  desc.add<double>("csRParam", -1.0);
500  desc.add<double>("beta", -1.0);
501  desc.add<double>("R0", -1.0);
502  desc.add<double>("gridMaxRapidity", -1.0); // For fixed-grid rho
503  desc.add<double>("gridSpacing", -1.0); // For fixed-grid rho
504  desc.add<double>("DzTrVtxMax", 999999.);
505  desc.add<double>("DxyTrVtxMax", 999999.);
506  desc.add<double>("MaxVtxZ", 15.0);
507  desc.add<double>("subjetPtMin", -1.0);
508  desc.add<double>("muMin", -1.0);
509  desc.add<double>("muMax", -1.0);
510  desc.add<double>("yMin", -1.0);
511  desc.add<double>("yMax", -1.0);
512  desc.add<double>("dRMin", -1.0);
513  desc.add<double>("dRMax", -1.0);
514  desc.add<int>("maxDepth", -1);
515  desc.add<int>("nFilt", -1);
516  desc.add<int>("MinVtxNdof", 5);
517 }
518 
520 // define as cmssw plugin
522 
double muMin_
for CMSBoostedTauSeedingAlgorithm : subjet pt min
JetType::Type jetTypeE
double yMin_
for CMSBoostedTauSeedingAlgorithm : max mass-drop
bool useFiltering_
Mass-drop tagging for boosted Higgs.
bool correctShape_
Soft drop.
double rFilt_
for mass-drop tagging, symmetry cut: min(pt1^2,pt2^2) * dR(1,2) / mjet > ycut
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
reco::Particle::Point vertex_
double dRMax_
for CMSBoostedTauSeedingAlgorithm : min dR
double subjetPtMin_
for shape subtraction, get the grid spacing
virtual std::vector< reco::CandidatePtr > getConstituents(const std::vector< fastjet::PseudoJet > &fjConstituents)
std::vector< fastjet::PseudoJet > fjJets_
virtual void inputTowers()
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
bool useDynamicFiltering_
Jet filtering technique.
std::shared_ptr< fastjet::ClusterSequence > ClusterSequencePtr
void writeSpecific(reco::CaloJet &jet, reco::Particle::LorentzVector const &p4, reco::Particle::Point const &point, std::vector< reco::CandidatePtr > const &constituents, CaloGeometry const &geometry, HcalTopology const &topology)
Definition: JetSpecific.cc:32
double RcutFactor_
for pruning OR soft drop: constituent minimum pt fraction of parent cluster
bool useSoftDrop_
constituent subtraction technique
double yMax_
for CMSBoostedTauSeedingAlgorithm : min asymmetry
double gridSpacing_
for shape subtraction, get the fixed-grid rho
bool useKtPruning_
algorithm for seeding reconstruction of boosted Taus (similar to mass-drop tagging) ...
FastjetJetProducer(const edm::ParameterSet &iConfig)
void swap(Association< C > &lhs, Association< C > &rhs)
Definition: Association.h:117
bool useTrimming_
Use dynamic filtering radius (as in arXiv:0802.2470)
double csRParam_
for constituent subtraction : maximum rapidity for ghosts
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
bool makeTrackJet(const JetType::Type &fTag)
std::vector< fastjet::PseudoJet > fjInputs_
std::vector< transformer_ptr > transformer_coll
double trimPtFracMin_
for filtering, pruning: number of subjets expected
double gridMaxRapidity_
for soft drop : R0 (angular distance normalization - should be set to jet radius in most cases) ...
int iEvent
Definition: GenABIO.cc:224
bool usePruning_
Jet trimming technique.
std::vector< edm::Ptr< reco::Candidate > > inputs_
bool useCMSBoostedTauSeedingAlgorithm_
Jet pruning technique.
ClusterSequencePtr fjClusterSeq_
dd4hep::Filter Filter
virtual void produceTrackJets(edm::Event &iEvent, const edm::EventSetup &iSetup)
edm::EDGetTokenT< edm::View< reco::RecoChargedRefCandidate > > input_chrefcand_token_
for CMSBoostedTauSeedingAlgorithm : max depth for descending into clustering sequence ...
double csRho_EtaMax_
for pruning: constituent dR * pt/2m < rcut_factor
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
double muMax_
for CMSBoostedTauSeedingAlgorithm : min mass-drop
double muCut_
Correct the shape of the jets.
double rFiltFactor_
for dynamic filtering radius (as in arXiv:0802.2470)
DynamicRfiltPtr rFiltDynamic_
for filtering, trimming: dR scale of sub-clustering
double dRMin_
for CMSBoostedTauSeedingAlgorithm : max asymmetry
double beta_
for constituent subtraction : R parameter for KT alg in jet median background estimator ...
ParameterDescriptionBase * add(U const &iLabel, T const &value)
double zCut_
for trimming: constituent minimum pt fraction of full jet
Jets made out of tracks.
Definition: TrackJet.h:24
int nFilt_
for dynamic filtering radius (as in arXiv:0802.2470)
Log< level::Info, false > LogInfo
int maxDepth_
for CMSBoostedTauSeedingAlgorithm : max dR
static void fillDescriptionsFromFastJetProducer(edm::ParameterSetDescription &desc)
edm::EDGetTokenT< reco::VertexCollection > input_vertex_token_
double R0_
for soft drop : beta (angular exponent)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
std::unique_ptr< transformer > transformer_ptr
double yCut_
for mass-drop tagging, m0/mjet (m0 = mass of highest mass subjet)
void runAlgorithm(edm::Event &iEvent, const edm::EventSetup &iSetup) override
void produce(edm::Event &iEvent, const edm::EventSetup &iSetup) override
HLT enums.
bool useConstituentSubtraction_
Use Kt clustering algorithm for pruning (default is Cambridge/Aachen)
AreaDefinitionPtr fjAreaDefinition_
static void fillDescriptionsFromVirtualJetProducer(edm::ParameterSetDescription &desc)
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:21
def move(src, dest)
Definition: eostools.py:511
std::vector< TrackBaseRef >::const_iterator trackRef_iterator
The iteratator for the vector<TrackRef>
Definition: Vertex.h:38
#define LogDebug(id)