CMS 3D CMS Logo

AlCaIsoTracksProducer.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //#define EDM_ML_DEBUG
3 
4 // system include files
5 #include <atomic>
6 #include <memory>
7 #include <string>
8 #include <cmath>
9 #include <iostream>
10 #include <sstream>
11 #include <fstream>
12 #include <vector>
13 #include <boost/regex.hpp>
14 
15 // user include files
25 
52 
54 
59 
73 
74 //#define EDM_ML_DEBUG
75 //
76 // class declaration
77 //
78 
80  struct Counters {
81  Counters() : nAll_(0), nGood_(0), nRange_(0) {}
82  mutable std::atomic<unsigned int> nAll_, nGood_, nRange_;
83  };
84 } // namespace alCaIsoTracksProducer
85 
86 class AlCaIsoTracksProducer : public edm::stream::EDProducer<edm::GlobalCache<alCaIsoTracksProducer::Counters> > {
87 public:
89  ~AlCaIsoTracksProducer() override = default;
90 
91  static std::unique_ptr<alCaIsoTracksProducer::Counters> initializeGlobalCache(edm::ParameterSet const&) {
92  return std::make_unique<alCaIsoTracksProducer::Counters>();
93  }
94 
95  void produce(edm::Event&, edm::EventSetup const&) override;
96  void endStream() override;
98  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
99 
100 private:
101  void beginRun(edm::Run const&, edm::EventSetup const&) override;
102  void endRun(edm::Run const&, edm::EventSetup const&) override;
104  const std::vector<std::string>& triggerNames_,
105  edm::Handle<reco::TrackCollection>& trkCollection,
106  math::XYZPoint& leadPV,
107  edm::Handle<EcalRecHitCollection>& barrelRecHitsHandle,
108  edm::Handle<EcalRecHitCollection>& endcapRecHitsHandle,
110  double ptL1,
111  double etaL1,
112  double phiL1);
114  double& ptL1,
115  double& etaL1,
116  double& phiL1);
117 
118  // ----------member data ---------------------------
120  unsigned int nRun_, nAll_, nGood_, nRange_;
122  const std::vector<std::string> trigNames_;
124  const double a_coneR_, a_mipR_;
127  const double pTrackLow_, pTrackHigh_;
128  const int preScale_;
133  double a_charIsoR_;
136 
148 };
149 
152  : nRun_(0),
153  nAll_(0),
154  nGood_(0),
155  nRange_(0),
156  trigNames_(iConfig.getParameter<std::vector<std::string> >("triggers")),
157  theTrackQuality_(iConfig.getParameter<std::string>("trackQuality")),
158  processName_(iConfig.getParameter<std::string>("processName")),
159  a_coneR_(iConfig.getParameter<double>("coneRadius")),
160  a_mipR_(iConfig.getParameter<double>("coneRadiusMIP")),
161  maxRestrictionP_(iConfig.getParameter<double>("maxTrackP")),
162  slopeRestrictionP_(iConfig.getParameter<double>("slopeTrackP")),
163  pTrackMin_(iConfig.getParameter<double>("minimumTrackP")),
164  eEcalMax_(iConfig.getParameter<double>("maximumEcalEnergy")),
165  eIsolate_(iConfig.getParameter<double>("isolationEnergy")),
166  pTrackLow_(iConfig.getParameter<double>("momentumRangeLow")),
167  pTrackHigh_(iConfig.getParameter<double>("momentumRangeHigh")),
168  preScale_(iConfig.getParameter<int>("preScaleFactor")),
169  labelGenTrack_(iConfig.getParameter<edm::InputTag>("TrackLabel")),
170  labelRecVtx_(iConfig.getParameter<edm::InputTag>("VertexLabel")),
171  labelBS_(iConfig.getParameter<edm::InputTag>("BeamSpotLabel")),
172  labelEB_(iConfig.getParameter<edm::InputTag>("EBRecHitLabel")),
173  labelEE_(iConfig.getParameter<edm::InputTag>("EERecHitLabel")),
174  labelHBHE_(iConfig.getParameter<edm::InputTag>("HBHERecHitLabel")),
175  labelHltGT_(iConfig.getParameter<edm::InputTag>("L1GTSeedLabel")),
176  labelTriggerEvent_(iConfig.getParameter<edm::InputTag>("TriggerEventLabel")),
177  labelTriggerResults_(iConfig.getParameter<edm::InputTag>("TriggerResultLabel")),
178  labelIsoTk_(iConfig.getParameter<std::string>("IsoTrackLabel")) {
179  // Get the run parameters
180  // Different isolation cuts are described in DN-2016/029
181  // Tight cut uses 2 GeV; Loose cut uses 10 GeV
182  // Eta dependent cut uses (maxRestrictionP_ * exp(|ieta|*log(2.5)/18))
183  // with the factor for exponential slopeRestrictionP_ = log(2.5)/18
184  // maxRestrictionP_ = 8 GeV as came from a study
185  const double isolationRadius(28.9);
186  selectionParameter_.minPt = iConfig.getParameter<double>("minTrackPt");
187  ;
189  selectionParameter_.maxDxyPV = iConfig.getParameter<double>("maxDxyPV");
190  selectionParameter_.maxDzPV = iConfig.getParameter<double>("maxDzPV");
191  selectionParameter_.maxChi2 = iConfig.getParameter<double>("maxChi2");
192  selectionParameter_.maxDpOverP = iConfig.getParameter<double>("maxDpOverP");
193  selectionParameter_.minOuterHit = iConfig.getParameter<int>("minOuterHit");
194  selectionParameter_.minLayerCrossed = iConfig.getParameter<int>("minLayerCrossed");
195  selectionParameter_.maxInMiss = iConfig.getParameter<int>("maxInMiss");
196  selectionParameter_.maxOutMiss = iConfig.getParameter<int>("maxOutMiss");
197  a_charIsoR_ = a_coneR_ + isolationRadius;
198 
199  // define tokens for access
200  tok_hltGT_ = consumes<trigger::TriggerFilterObjectWithRefs>(labelHltGT_);
201  tok_trigEvt_ = consumes<trigger::TriggerEvent>(labelTriggerEvent_);
202  tok_trigRes_ = consumes<edm::TriggerResults>(labelTriggerResults_);
203  tok_genTrack_ = consumes<reco::TrackCollection>(labelGenTrack_);
204  tok_recVtx_ = consumes<reco::VertexCollection>(labelRecVtx_);
205  tok_bs_ = consumes<reco::BeamSpot>(labelBS_);
206  tok_EB_ = consumes<EcalRecHitCollection>(labelEB_);
207  tok_EE_ = consumes<EcalRecHitCollection>(labelEE_);
208  tok_hbhe_ = consumes<HBHERecHitCollection>(labelHBHE_);
209  // for event setup
210  tok_geom_ = esConsumes<CaloGeometry, CaloGeometryRecord, edm::Transition::BeginRun>();
211  tok_magField_ = esConsumes<MagneticField, IdealMagneticFieldRecord, edm::Transition::BeginRun>();
212 
213  edm::LogVerbatim("HcalIsoTrack") << "Parameters read from config file \n"
214  << "\t minPt " << selectionParameter_.minPt << "\t theTrackQuality "
215  << theTrackQuality_ << "\t minQuality " << selectionParameter_.minQuality
216  << "\t maxDxyPV " << selectionParameter_.maxDxyPV << "\t maxDzPV "
218  << "\t maxDpOverP " << selectionParameter_.maxDpOverP << "\t minOuterHit "
219  << selectionParameter_.minOuterHit << "\t minLayerCrossed "
220  << selectionParameter_.minLayerCrossed << "\t maxInMiss "
221  << selectionParameter_.maxInMiss << "\t maxOutMiss "
223  << "\t a_coneR " << a_coneR_ << "\t a_charIsoR " << a_charIsoR_ << "\t a_mipR "
224  << a_mipR_ << "\t pTrackMin " << pTrackMin_ << "\t eEcalMax " << eEcalMax_
225  << "\t maxRestrictionP_ " << maxRestrictionP_ << "\t slopeRestrictionP_ "
226  << slopeRestrictionP_ << "\t eIsolate_ " << eIsolate_ << "\t Process "
227  << processName_ << "\n"
228  << "\t Precale factor " << preScale_ << "\t in momentum range " << pTrackLow_ << ":"
229  << pTrackHigh_;
230  for (unsigned int k = 0; k < trigNames_.size(); ++k)
231  edm::LogVerbatim("HcalIsoTrack") << "Trigger[" << k << "] " << trigNames_[k];
232 
233  //create also IsolatedPixelTrackCandidateCollection which contains isolation info and reference to primary track
234  produces<reco::HcalIsolatedTrackCandidateCollection>(labelIsoTk_);
235  produces<reco::VertexCollection>(labelRecVtx_.label());
236  produces<EcalRecHitCollection>(labelEB_.instance());
237  produces<EcalRecHitCollection>(labelEE_.instance());
238  produces<HBHERecHitCollection>(labelHBHE_.label());
239 
240  edm::LogVerbatim("HcalIsoTrack") << " Expected to produce the collections:\n"
241  << "reco::HcalIsolatedTrackCandidateCollection "
242  << " with label HcalIsolatedTrackCollection\n"
243  << "reco::VertexCollection with label " << labelRecVtx_.label() << "\n"
244  << "EcalRecHitCollection with label EcalRecHitsEB\n"
245  << "EcalRecHitCollection with label EcalRecHitsEE\n"
246  << "HBHERecHitCollection with label " << labelHBHE_.label();
247 }
248 
251  // producer for (HCAL isolated tracks)
252  desc.add<edm::InputTag>("TrackLabel", edm::InputTag("generalTracks"));
253  desc.add<edm::InputTag>("VertexLabel", edm::InputTag("offlinePrimaryVertices"));
254  desc.add<edm::InputTag>("BeamSpotLabel", edm::InputTag("offlineBeamSpot"));
255  desc.add<edm::InputTag>("EBRecHitLabel", edm::InputTag("ecalRecHit", "EcalRecHitsEB"));
256  desc.add<edm::InputTag>("EERecHitLabel", edm::InputTag("ecalRecHit", "EcalRecHitsEE"));
257  desc.add<edm::InputTag>("HBHERecHitLabel", edm::InputTag("hbhereco"));
258  desc.add<edm::InputTag>("L1GTSeedLabel", edm::InputTag("hltL1sV0SingleJet60"));
259  desc.add<edm::InputTag>("TriggerEventLabel", edm::InputTag("hltTriggerSummaryAOD", "", "HLT"));
260  desc.add<edm::InputTag>("TriggerResultLabel", edm::InputTag("TriggerResults", "", "HLT"));
261  desc.add<std::string>("IsoTrackLabel", "HcalIsolatedTrackCollection");
262  std::vector<std::string> triggers = {"HLT_IsoTrackHB", "HLT_IsoTrackHE"};
263  desc.add<std::vector<std::string> >("triggers", triggers);
264  desc.add<std::string>("processName", "HLT");
265  // following 10 parameters are parameters to select good tracks
266  desc.add<std::string>("trackQuality", "highPurity");
267  desc.add<double>("minTrackPt", 1.0);
268  desc.add<double>("maxDxyPV", 10.0);
269  desc.add<double>("maxDzPV", 100.0);
270  desc.add<double>("maxChi2", 5.0);
271  desc.add<double>("maxDpOverP", 0.1);
272  desc.add<int>("minOuterHit", 4);
273  desc.add<int>("minLayerCrossed", 8);
274  desc.add<int>("maxInMiss", 2);
275  desc.add<int>("maxOutMiss", 2);
276  // Minimum momentum of selected isolated track and signal zone
277  desc.add<double>("coneRadius", 34.98);
278  desc.add<double>("minimumTrackP", 20.0);
279  // signal zone in ECAL and MIP energy cutoff
280  desc.add<double>("coneRadiusMIP", 14.0);
281  desc.add<double>("maximumEcalEnergy", 2.0);
282  // following 3 parameters are for isolation cuts and described in the code
283  desc.add<double>("maxTrackP", 8.0);
284  desc.add<double>("slopeTrackP", 0.05090504066);
285  desc.add<double>("isolationEnergy", 10.0);
286  // Prescale events only containing isolated tracks in the range
287  desc.add<double>("momentumRangeLow", 20.0);
288  desc.add<double>("momentumRangeHigh", 40.0);
289  desc.add<int>("preScaleFactor", 10);
290  descriptions.add("alcaisotrk", desc);
291 }
292 
294  nAll_++;
295 #ifdef EDM_ML_DEBUG
296  edm::LogVerbatim("HcalIsoTrack") << "Run " << iEvent.id().run() << " Event " << iEvent.id().event() << " Luminosity "
297  << iEvent.luminosityBlock() << " Bunch " << iEvent.bunchCrossing();
298 #endif
299  bool valid(true);
300  //Step1: Get all the relevant containers
302  auto const& triggerEventHandle = iEvent.getHandle(tok_trigEvt_);
303  if (!triggerEventHandle.isValid()) {
304  edm::LogWarning("HcalIsoTrack") << "Cannot access the collection " << labelTriggerEvent_;
305  valid = false;
306  }
307  auto const& triggerResults = iEvent.getHandle(tok_trigRes_);
308  if (!triggerResults.isValid()) {
309  edm::LogWarning("HcalIsoTrack") << "Cannot access the collection " << labelTriggerResults_;
310  valid = false;
311  }
312 
313  auto trkCollection = iEvent.getHandle(tok_genTrack_);
314  if (!trkCollection.isValid()) {
315  edm::LogWarning("HcalIsoTrack") << "Cannot access the collection " << labelGenTrack_;
316  valid = false;
317  }
318 
319  auto const& recVtxs = iEvent.getHandle(tok_recVtx_);
320  if (!recVtxs.isValid()) {
321  edm::LogWarning("HcalIsoTrack") << "Cannot access the collection " << labelGenTrack_;
322  valid = false;
323  }
324 
325  auto const& beamSpotH = iEvent.getHandle(tok_bs_);
326  math::XYZPoint leadPV(0, 0, 0);
327  if (valid) {
328  if (!recVtxs->empty() && !((*recVtxs)[0].isFake())) {
329  leadPV = math::XYZPoint((*recVtxs)[0].x(), (*recVtxs)[0].y(), (*recVtxs)[0].z());
330  } else if (beamSpotH.isValid()) {
331  leadPV = beamSpotH->position();
332  }
333  }
334 #ifdef EDM_ML_DEBUG
335  edm::LogVerbatim("HcalIsoTrack") << "Primary Vertex " << leadPV;
336 #endif
337 
338  auto barrelRecHitsHandle = iEvent.getHandle(tok_EB_);
339  if (!barrelRecHitsHandle.isValid()) {
340  edm::LogWarning("HcalIsoTrack") << "Cannot access the collection " << labelEB_;
341  valid = false;
342  }
343  auto endcapRecHitsHandle = iEvent.getHandle(tok_EE_);
344  if (!endcapRecHitsHandle.isValid()) {
345  edm::LogWarning("HcalIsoTrack") << "Cannot access the collection " << labelEE_;
346  valid = false;
347  }
348  auto hbhe = iEvent.getHandle(tok_hbhe_);
349  if (!hbhe.isValid()) {
350  edm::LogWarning("HcalIsoTrack") << "Cannot access the collection " << labelHBHE_;
351  valid = false;
352  }
353 
354  //Get L1 trigger object
355  double ptL1(0), etaL1(0), phiL1(0);
356  auto const& l1trigobj = iEvent.getHandle(tok_hltGT_);
357 
358  if (l1trigobj.isValid()) {
359  std::vector<edm::Ref<l1extra::L1JetParticleCollection> > l1tauobjref;
360  l1trigobj->getObjects(trigger::TriggerL1TauJet, l1tauobjref);
361  setPtEtaPhi(l1tauobjref, ptL1, etaL1, phiL1);
362 
363  std::vector<edm::Ref<l1extra::L1JetParticleCollection> > l1jetobjref;
364  l1trigobj->getObjects(trigger::TriggerL1CenJet, l1jetobjref);
365  setPtEtaPhi(l1jetobjref, ptL1, etaL1, phiL1);
366 
367  std::vector<edm::Ref<l1extra::L1JetParticleCollection> > l1forjetobjref;
368  l1trigobj->getObjects(trigger::TriggerL1ForJet, l1forjetobjref);
369  setPtEtaPhi(l1forjetobjref, ptL1, etaL1, phiL1);
370  } else {
371  valid = false;
372  }
373 
374  auto outputHcalIsoTrackColl = std::make_unique<reco::HcalIsolatedTrackCandidateCollection>();
375  auto outputVColl = std::make_unique<reco::VertexCollection>();
376  auto outputEBColl = std::make_unique<EBRecHitCollection>();
377  auto outputEEColl = std::make_unique<EERecHitCollection>();
378  auto outputHBHEColl = std::make_unique<HBHERecHitCollection>();
379 
380  //For valid HLT record
381  if (!valid) {
382  edm::LogWarning("HcalIsoTrack") << "Error! Can't get some of the products";
383  } else {
384  trigger::TriggerEvent triggerEvent = *(triggerEventHandle.product());
385  if (triggerResults.isValid()) {
386  const edm::TriggerNames& triggerNames = iEvent.triggerNames(*triggerResults);
387  const std::vector<std::string>& triggerNames_ = triggerNames.triggerNames();
389  triggerNames_,
390  trkCollection,
391  leadPV,
392  barrelRecHitsHandle,
393  endcapRecHitsHandle,
394  hbhe,
395  ptL1,
396  etaL1,
397  phiL1);
398 #ifdef EDM_ML_DEBUG
399  edm::LogVerbatim("HcalIsoTrack") << "AlCaIsoTracksProducer::select returns " << isotk->size()
400  << " isolated tracks";
401 #endif
402 
403  if (!isotk->empty()) {
404  int ntrin(0), ntrout(0);
405  for (reco::HcalIsolatedTrackCandidateCollection::const_iterator itr = isotk->begin(); itr != isotk->end();
406  ++itr) {
407  if (itr->p() > pTrackLow_ && itr->p() < pTrackHigh_)
408  ntrin++;
409  else
410  ntrout++;
411  }
412  bool selectEvent = ntrout > 0;
413  if (!selectEvent && ntrin > 0) {
414  ++nRange_;
415  if (preScale_ <= 1)
416  selectEvent = true;
417  else if (nRange_ % preScale_ == 1)
418  selectEvent = true;
419  }
420  if (selectEvent) {
421  for (reco::HcalIsolatedTrackCandidateCollection::const_iterator itr = isotk->begin(); itr != isotk->end();
422  ++itr)
423  outputHcalIsoTrackColl->push_back(*itr);
424 
425  for (reco::VertexCollection::const_iterator vtx = recVtxs->begin(); vtx != recVtxs->end(); ++vtx)
426  outputVColl->push_back(*vtx);
427 
428  for (edm::SortedCollection<EcalRecHit>::const_iterator ehit = barrelRecHitsHandle->begin();
429  ehit != barrelRecHitsHandle->end();
430  ++ehit)
431  outputEBColl->push_back(*ehit);
432 
433  for (edm::SortedCollection<EcalRecHit>::const_iterator ehit = endcapRecHitsHandle->begin();
434  ehit != endcapRecHitsHandle->end();
435  ++ehit)
436  outputEEColl->push_back(*ehit);
437 
438  for (std::vector<HBHERecHit>::const_iterator hhit = hbhe->begin(); hhit != hbhe->end(); ++hhit)
439  outputHBHEColl->push_back(*hhit);
440  ++nGood_;
441  }
442  }
443  }
444  }
445  iEvent.put(std::move(outputHcalIsoTrackColl), labelIsoTk_);
446  iEvent.put(std::move(outputVColl), labelRecVtx_.label());
447  iEvent.put(std::move(outputEBColl), labelEB_.instance());
448  iEvent.put(std::move(outputEEColl), labelEE_.instance());
449  iEvent.put(std::move(outputHBHEColl), labelHBHE_.label());
450 }
451 
453  globalCache()->nAll_ += nAll_;
454  globalCache()->nGood_ += nGood_;
455  globalCache()->nRange_ += nRange_;
456 }
457 
459  edm::LogVerbatim("HcalIsoTrack") << "Finds " << count->nGood_ << " good tracks in " << count->nAll_ << " events and "
460  << count->nRange_ << " events in the momentum raange";
461 }
462 
463 void AlCaIsoTracksProducer::beginRun(edm::Run const& iRun, edm::EventSetup const& iSetup) {
464  bool changed(false);
465  edm::LogVerbatim("HcalIsoTrack") << "Run[" << nRun_ << "] " << iRun.run() << " hltconfig.init "
466  << hltConfig_.init(iRun, iSetup, processName_, changed);
467 
468  bField = &(iSetup.getData(tok_magField_));
469  geo = &(iSetup.getData(tok_geom_));
470 }
471 
473  edm::LogVerbatim("HcalIsoTrack") << "endRun [" << nRun_ << "] " << iRun.run();
474  ++nRun_;
475 }
476 
479  const std::vector<std::string>& triggerNames_,
480  edm::Handle<reco::TrackCollection>& trkCollection,
481  math::XYZPoint& leadPV,
482  edm::Handle<EcalRecHitCollection>& barrelRecHitsHandle,
483  edm::Handle<EcalRecHitCollection>& endcapRecHitsHandle,
485  double ptL1,
486  double etaL1,
487  double phiL1) {
489  bool ok(false);
490 
491  // Find a good HLT trigger
492  for (unsigned int iHLT = 0; iHLT < triggerResults->size(); iHLT++) {
493  int hlt = triggerResults->accept(iHLT);
494  for (unsigned int i = 0; i < trigNames_.size(); ++i) {
495  if (triggerNames_[iHLT].find(trigNames_[i]) != std::string::npos) {
496  if (hlt > 0) {
497  ok = true;
498  }
499  edm::LogVerbatim("HcalIsoTrack") << "The trigger we are looking for " << triggerNames_[iHLT] << " Flag " << hlt
500  << ":" << ok;
501  }
502  }
503  }
504 
505  //Propagate tracks to calorimeter surface)
506  std::vector<spr::propagatedTrackDirection> trkCaloDirections;
507  spr::propagateCALO(trkCollection, geo, bField, theTrackQuality_, trkCaloDirections, false);
508 
509  std::vector<spr::propagatedTrackDirection>::const_iterator trkDetItr;
510  unsigned int nTracks(0);
511  for (trkDetItr = trkCaloDirections.begin(), nTracks = 0; trkDetItr != trkCaloDirections.end();
512  trkDetItr++, nTracks++) {
513  const reco::Track* pTrack = &(*(trkDetItr->trkItr));
514  math::XYZTLorentzVector v4(pTrack->px(), pTrack->py(), pTrack->pz(), pTrack->p());
515 #ifdef EDM_ML_DEBUG
516  edm::LogVerbatim("HcalIsoTrack") << "This track : " << nTracks << " (pt|eta|phi|p) :" << pTrack->pt() << "|"
517  << pTrack->eta() << "|" << pTrack->phi() << "|" << pTrack->p();
518 #endif
519  //Selection of good track
520  bool qltyFlag = spr::goodTrack(pTrack, leadPV, selectionParameter_, false);
521 #ifdef EDM_ML_DEBUG
522  edm::LogVerbatim("HcalIsoTrack") << "qltyFlag|okECAL|okHCAL : " << qltyFlag << "|" << trkDetItr->okECAL << "|"
523  << trkDetItr->okHCAL;
524 #endif
525  if (qltyFlag && trkDetItr->okECAL && trkDetItr->okHCAL) {
526  double t_p = pTrack->p();
527  int nRH_eMipDR(0), nNearTRKs(0);
528  double eMipDR = spr::eCone_ecal(geo,
529  barrelRecHitsHandle,
530  endcapRecHitsHandle,
531  trkDetItr->pointHCAL,
532  trkDetItr->pointECAL,
533  a_mipR_,
534  trkDetItr->directionECAL,
535  nRH_eMipDR);
536  double hmaxNearP = spr::chargeIsolationCone(nTracks, trkCaloDirections, a_charIsoR_, nNearTRKs, false);
537  HcalDetId detId = (HcalDetId)(trkDetItr->detIdHCAL);
538  int ieta = detId.ietaAbs();
539  double eIsolation = (maxRestrictionP_ * exp(slopeRestrictionP_ * ((double)(ieta))));
540  if (eIsolation < eIsolate_)
541  eIsolation = eIsolate_;
542 #ifdef EDM_ML_DEBUG
543  edm::LogVerbatim("HcalIsoTrack") << "This track : " << nTracks << " (pt|eta|phi|p) :" << pTrack->pt() << "|"
544  << pTrack->eta() << "|" << pTrack->phi() << "|" << t_p << " e_MIP " << eMipDR
545  << " Chg Isolation " << hmaxNearP << ":" << eIsolation;
546 #endif
547  if (t_p > pTrackMin_ && eMipDR < eEcalMax_ && hmaxNearP < eIsolation) {
548  reco::HcalIsolatedTrackCandidate newCandidate(v4);
549  newCandidate.SetMaxP(hmaxNearP);
550  newCandidate.SetEnergyEcal(eMipDR);
551  newCandidate.setL1(ptL1, etaL1, phiL1);
552  newCandidate.SetEtaPhiEcal((trkDetItr->pointECAL).eta(), (trkDetItr->pointECAL).phi());
553  HcalDetId detId = HcalDetId(trkDetItr->detIdHCAL);
554  newCandidate.SetEtaPhiHcal(
555  (trkDetItr->pointHCAL).eta(), (trkDetItr->pointHCAL).phi(), detId.ieta(), detId.iphi());
556  int indx(0);
557  for (reco::TrackCollection::const_iterator trkItr1 = trkCollection->begin(); trkItr1 != trkCollection->end();
558  ++trkItr1, ++indx) {
559  const reco::Track* pTrack1 = &(*trkItr1);
560  if (pTrack1 == pTrack) {
561  reco::TrackRef tRef = reco::TrackRef(trkCollection, indx);
562  newCandidate.setTrack(tRef);
563  break;
564  }
565  }
566  trackCollection->push_back(newCandidate);
567  }
568  }
569  }
570  return trackCollection;
571 }
572 
574  double& ptL1,
575  double& etaL1,
576  double& phiL1) {
577  for (unsigned int p = 0; p < objref.size(); p++) {
578  if (objref[p]->pt() > ptL1) {
579  ptL1 = objref[p]->pt();
580  phiL1 = objref[p]->phi();
581  etaL1 = objref[p]->eta();
582  }
583  }
584 }
585 
587 
Log< level::Info, true > LogVerbatim
reco::HcalIsolatedTrackCandidateCollection * select(edm::Handle< edm::TriggerResults > const &triggerResults, const std::vector< std::string > &triggerNames_, edm::Handle< reco::TrackCollection > &trkCollection, math::XYZPoint &leadPV, edm::Handle< EcalRecHitCollection > &barrelRecHitsHandle, edm::Handle< EcalRecHitCollection > &endcapRecHitsHandle, edm::Handle< HBHERecHitCollection > &hbhe, double ptL1, double etaL1, double phiL1)
std::vector< spr::propagatedTrackID > propagateCALO(edm::Handle< reco::TrackCollection > &trkCollection, const CaloGeometry *geo, const MagneticField *bField, const std::string &theTrackQuality, bool debug=false)
T getParameter(std::string const &) const
Definition: ParameterSet.h:307
std::atomic< unsigned int > nAll_
const edm::InputTag labelEE_
T const & getData(const ESGetToken< T, R > &iToken) const noexcept(false)
Definition: EventSetup.h:119
The single EDProduct to be saved for each event (AOD case)
Definition: TriggerEvent.h:26
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
std::string const & instance() const
Definition: InputTag.h:37
edm::EDGetTokenT< EcalRecHitCollection > tok_EE_
double px() const
x coordinate of momentum vector
Definition: TrackBase.h:640
double p() const
momentum vector magnitude
Definition: TrackBase.h:631
void beginRun(edm::Run const &, edm::EventSetup const &) override
const edm::InputTag labelHBHE_
const CaloGeometry * geo
std::vector< T >::const_iterator const_iterator
edm::EDGetTokenT< reco::TrackCollection > tok_genTrack_
void produce(edm::Event &, edm::EventSetup const &) override
double py() const
y coordinate of momentum vector
Definition: TrackBase.h:643
const edm::InputTag labelHltGT_
const edm::InputTag labelBS_
const edm::InputTag labelTriggerEvent_
double chargeIsolationCone(unsigned int trkIndex, std::vector< spr::propagatedTrackDirection > &trkDirs, double dR, int &nNearTRKs, bool debug=false)
std::string const & label() const
Definition: InputTag.h:36
edm::EDGetTokenT< trigger::TriggerFilterObjectWithRefs > tok_hltGT_
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
const std::string processName_
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Definition: LorentzVector.h:29
const std::string theTrackQuality_
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > tok_geom_
edm::EDGetTokenT< EcalRecHitCollection > tok_EB_
double pt() const
track transverse momentum
Definition: TrackBase.h:637
TupleMultiplicity< TrackerTraits > const HitToTuple< TrackerTraits > const cms::cuda::AtomicPairCounter GPUCACellT< TrackerTraits > const *__restrict__ uint32_t const *__restrict__ CellNeighborsVector< TrackerTraits > const CellTracksVector< TrackerTraits > const OuterHitOfCell< TrackerTraits > const int32_t uint32_t Counters * counters
edm::EDGetTokenT< reco::BeamSpot > tok_bs_
int iEvent
Definition: GenABIO.cc:224
RunNumber_t run() const
Definition: RunBase.h:40
edm::EDGetTokenT< reco::VertexCollection > tok_recVtx_
std::atomic< unsigned int > nGood_
std::vector< HcalIsolatedTrackCandidate > HcalIsolatedTrackCandidateCollection
collectin of HcalIsolatedTrackCandidate objects
bool goodTrack(const reco::Track *pTrack, math::XYZPoint leadPV, trackSelectionParameters parameters, bool debug=false)
void SetEtaPhiEcal(double eta, double phi)
eta, phi at ECAL surface
void setPtEtaPhi(std::vector< edm::Ref< l1extra::L1JetParticleCollection > > &objref, double &ptL1, double &etaL1, double &phiL1)
edm::EDGetTokenT< HBHERecHitCollection > tok_hbhe_
~AlCaIsoTracksProducer() override=default
void SetEtaPhiHcal(double eta, double phi, int ieta, int iphi)
eta, phi at HCAL surface
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:649
double eCone_ecal(const CaloGeometry *geo, edm::Handle< T > &barrelhits, edm::Handle< T > &endcaphits, const GlobalPoint &hpoint1, const GlobalPoint &point1, double dR, const GlobalVector &trackMom, int &nRecHits, double ebThr=-100, double eeThr=-100, double tMin=-500, double tMax=500, bool debug=false)
const MagneticField * bField
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
std::atomic< unsigned int > nRange_
static std::string const triggerResults
Definition: EdmProvDump.cc:47
trackCollection
Definition: JetHT_cfg.py:51
edm::EDGetTokenT< trigger::TriggerEvent > tok_trigEvt_
void endRun(edm::Run const &, edm::EventSetup const &) override
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:652
static std::unique_ptr< alCaIsoTracksProducer::Counters > initializeGlobalCache(edm::ParameterSet const &)
static TrackQuality qualityByName(const std::string &name)
Definition: TrackBase.cc:126
void setL1(double pt, double eta, double phi)
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:12
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
d&#39;tor
edm::Ref< TrackCollection > TrackRef
persistent reference to a Track
Definition: TrackFwd.h:20
double pz() const
z coordinate of momentum vector
Definition: TrackBase.h:646
void add(std::string const &label, ParameterSetDescription const &psetDescription)
static void globalEndJob(const alCaIsoTracksProducer::Counters *counters)
const std::vector< std::string > trigNames_
spr::trackSelectionParameters selectionParameter_
HLT enums.
edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > tok_magField_
reco::TrackBase::TrackQuality minQuality
const edm::InputTag labelRecVtx_
void setTrack(const reco::TrackRef &tr)
AlCaIsoTracksProducer(edm::ParameterSet const &, const alCaIsoTracksProducer::Counters *count)
Log< level::Warning, false > LogWarning
edm::EDGetTokenT< edm::TriggerResults > tok_trigRes_
const edm::InputTag labelTriggerResults_
def move(src, dest)
Definition: eostools.py:511
const edm::InputTag labelEB_
Definition: Run.h:45
const edm::InputTag labelGenTrack_