CMS 3D CMS Logo

StudyCaloResponse.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: IsolatedParticles
4 // Class: StudyCaloResponse
5 //
13 //
14 // Original Author: Sunanda Banerjee
15 // Created: Thu Mar 4 18:52:02 CST 2011
16 //
17 //
18 
19 // system include files
20 #include <memory>
21 #include <string>
22 
23 // Root objects
24 #include "TH1.h"
25 #include "TH2.h"
26 #include "TTree.h"
27 
28 // user include files
35 
38 
60 
69 
77 
84 
85 class StudyCaloResponse : public edm::one::EDAnalyzer<edm::one::WatchRuns, edm::one::SharedResources> {
86 public:
87  explicit StudyCaloResponse(const edm::ParameterSet&);
88  ~StudyCaloResponse() override {}
89 
90  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
91 
92 private:
93  void analyze(edm::Event const&, edm::EventSetup const&) override;
94  void beginJob() override;
95  void beginRun(edm::Run const&, edm::EventSetup const&) override;
96  void endRun(edm::Run const&, edm::EventSetup const&) override;
99 
100  void clear();
101  void fillTrack(int, double, double, double, double);
102  void fillIsolation(int, double, double, double);
103  void fillEnergy(int, int, double, double, double, double, double);
106 
107  // ----------member data ---------------------------
108  static const int nPBin_ = 15, nEtaBin_ = 4, nPVBin_ = 4;
109  static const int nGen_ = (nPVBin_ + 12);
112  const int verbosity_;
113  const std::vector<std::string> trigNames_, newNames_;
116  const double minTrackP_, maxTrackEta_;
117  const double tMinE_, tMaxE_, tMinH_, tMaxH_;
118  const double eThrEB_, eThrEE_, eThrHB_, eThrHE_;
120  const double cutMuon_, cutEcal_, cutRatio_;
121  const std::vector<double> puWeights_;
124  std::vector<std::string> HLTNames_;
126 
138 
145 
148  TH2I* h_nHLTvsRN;
149  std::vector<TH1I*> h_HLTAccepts;
150  TH1D *h_p[nGen_ + 2], *h_pt[nGen_ + 2], *h_counter[8];
151  TH1D *h_eta[nGen_ + 2], *h_phi[nGen_ + 2], *h_h_pNew[8];
152  TH1I* h_ntrk[2];
153  TH1D *h_maxNearP[2], *h_ene1[2], *h_ene2[2], *h_ediff[2];
154  TH1D* h_energy[nPVBin_ + 8][nPBin_][nEtaBin_][6];
155  TTree* tree_;
157  double pBin_[nPBin_ + 1];
160  std::vector<std::string> tr_TrigName;
161  std::vector<double> tr_TrkPt, tr_TrkP, tr_TrkEta, tr_TrkPhi;
162  std::vector<double> tr_MaxNearP31X31, tr_MaxNearHcalP7x7;
163  std::vector<double> tr_H3x3, tr_H5x5, tr_H7x7;
164  std::vector<double> tr_FE7x7P, tr_FE11x11P, tr_FE15x15P;
165  std::vector<bool> tr_SE7x7P, tr_SE11x11P, tr_SE15x15P;
166  std::vector<int> tr_iEta, tr_TrkID;
167 };
168 
170  : verbosity_(iConfig.getUntrackedParameter<int>("verbosity")),
171  trigNames_(iConfig.getUntrackedParameter<std::vector<std::string> >("triggers")),
172  newNames_(iConfig.getUntrackedParameter<std::vector<std::string> >("newNames")),
173  labelMuon_(iConfig.getUntrackedParameter<edm::InputTag>("labelMuon")),
174  labelGenTrack_(iConfig.getUntrackedParameter<edm::InputTag>("labelTrack")),
175  theTrackQuality_(iConfig.getUntrackedParameter<std::string>("trackQuality")),
176  minTrackP_(iConfig.getUntrackedParameter<double>("minTrackP")),
177  maxTrackEta_(iConfig.getUntrackedParameter<double>("maxTrackEta")),
178  tMinE_(iConfig.getUntrackedParameter<double>("timeMinCutECAL")),
179  tMaxE_(iConfig.getUntrackedParameter<double>("timeMaxCutECAL")),
180  tMinH_(iConfig.getUntrackedParameter<double>("timeMinCutHCAL")),
181  tMaxH_(iConfig.getUntrackedParameter<double>("timeMaxCutHCAL")),
182  eThrEB_(iConfig.getUntrackedParameter<double>("thresholdEB")),
183  eThrEE_(iConfig.getUntrackedParameter<double>("thresholdEE")),
184  eThrHB_(iConfig.getUntrackedParameter<double>("thresholdHB")),
185  eThrHE_(iConfig.getUntrackedParameter<double>("thresholdHE")),
186  isItAOD_(iConfig.getUntrackedParameter<bool>("isItAOD")),
187  vetoTrigger_(iConfig.getUntrackedParameter<bool>("vetoTrigger")),
188  doTree_(iConfig.getUntrackedParameter<bool>("doTree")),
189  vetoMuon_(iConfig.getUntrackedParameter<bool>("vetoMuon")),
190  vetoEcal_(iConfig.getUntrackedParameter<bool>("vetoEcal")),
191  cutMuon_(iConfig.getUntrackedParameter<double>("cutMuon")),
192  cutEcal_(iConfig.getUntrackedParameter<double>("cutEcal")),
193  cutRatio_(iConfig.getUntrackedParameter<double>("cutRatio")),
194  puWeights_(iConfig.getUntrackedParameter<std::vector<double> >("puWeights")),
195  triggerEvent_(edm::InputTag("hltTriggerSummaryAOD", "", "HLT")),
196  theTriggerResultsLabel_(edm::InputTag("TriggerResults", "", "HLT")),
197  nRun_(0) {
198  usesResource(TFileService::kSharedResource);
199 
201  selectionParameters_.minPt = iConfig.getUntrackedParameter<double>("minTrackPt");
203  selectionParameters_.maxDxyPV = iConfig.getUntrackedParameter<double>("maxDxyPV");
204  selectionParameters_.maxDzPV = iConfig.getUntrackedParameter<double>("maxDzPV");
205  selectionParameters_.maxChi2 = iConfig.getUntrackedParameter<double>("maxChi2");
206  selectionParameters_.maxDpOverP = iConfig.getUntrackedParameter<double>("maxDpOverP");
207  selectionParameters_.minOuterHit = iConfig.getUntrackedParameter<int>("minOuterHit");
208  selectionParameters_.minLayerCrossed = iConfig.getUntrackedParameter<int>("minLayerCrossed");
209  selectionParameters_.maxInMiss = iConfig.getUntrackedParameter<int>("maxInMiss");
210  selectionParameters_.maxOutMiss = iConfig.getUntrackedParameter<int>("maxOutMiss");
211 
212  // define tokens for access
213  tok_lumi = consumes<LumiDetails, edm::InLumi>(edm::InputTag("lumiProducer"));
214  tok_trigEvt = consumes<trigger::TriggerEvent>(triggerEvent_);
215  tok_trigRes = consumes<edm::TriggerResults>(theTriggerResultsLabel_);
216  tok_Muon_ = consumes<reco::MuonCollection>(labelMuon_);
217  tok_genTrack_ = consumes<reco::TrackCollection>(labelGenTrack_);
218  tok_recVtx_ = consumes<reco::VertexCollection>(edm::InputTag("offlinePrimaryVertices"));
219  tok_parts_ = consumes<reco::GenParticleCollection>(iConfig.getParameter<edm::InputTag>("particleSource"));
220 
221  if (isItAOD_) {
222  tok_EB_ = consumes<EcalRecHitCollection>(edm::InputTag("reducedEcalRecHitsEB"));
223  tok_EE_ = consumes<EcalRecHitCollection>(edm::InputTag("reducedEcalRecHitsEE"));
224  tok_hbhe_ = consumes<HBHERecHitCollection>(edm::InputTag("reducedHcalRecHits", "hbhereco"));
225  } else {
226  tok_EB_ = consumes<EcalRecHitCollection>(edm::InputTag("ecalRecHit", "EcalRecHitsEB"));
227  tok_EE_ = consumes<EcalRecHitCollection>(edm::InputTag("ecalRecHit", "EcalRecHitsEE"));
228  tok_hbhe_ = consumes<HBHERecHitCollection>(edm::InputTag("hbhereco"));
229  }
230  tok_ew_ = consumes<GenEventInfoProduct>(edm::InputTag("generator"));
231 
232  tok_geom_ = esConsumes<CaloGeometry, CaloGeometryRecord>();
233  tok_caloTopology_ = esConsumes<CaloTopology, CaloTopologyRecord>();
234  tok_topo_ = esConsumes<HcalTopology, HcalRecNumberingRecord>();
235  tok_magField_ = esConsumes<MagneticField, IdealMagneticFieldRecord>();
236  tok_ecalChStatus_ = esConsumes<EcalChannelStatus, EcalChannelStatusRcd>();
237  tok_sevlv_ = esConsumes<EcalSeverityLevelAlgo, EcalSeverityLevelAlgoRcd>();
238 
239  edm::LogVerbatim("IsoTrack") << "Verbosity " << verbosity_ << " with " << trigNames_.size() << " triggers:";
240  for (unsigned int k = 0; k < trigNames_.size(); ++k)
241  edm::LogVerbatim("IsoTrack") << " [" << k << "] " << trigNames_[k];
242  edm::LogVerbatim("IsoTrack") << "TrackQuality " << theTrackQuality_ << " Minpt " << selectionParameters_.minPt
243  << " maxDxy " << selectionParameters_.maxDxyPV << " maxDz "
245  << " maxDp/p " << selectionParameters_.maxDpOverP << " minOuterHit "
246  << selectionParameters_.minOuterHit << " minLayerCrossed "
247  << selectionParameters_.minLayerCrossed << " maxInMiss "
249  << " minTrackP " << minTrackP_ << " maxTrackEta " << maxTrackEta_ << " tMinE_ " << tMinE_
250  << " tMaxE " << tMaxE_ << " tMinH_ " << tMinH_ << " tMaxH_ " << tMaxH_ << " isItAOD "
251  << isItAOD_ << " doTree " << doTree_ << " vetoTrigger " << vetoTrigger_ << " vetoMuon "
252  << vetoMuon_ << ":" << cutMuon_ << " vetoEcal " << vetoEcal_ << ":" << cutEcal_ << ":"
253  << cutRatio_;
254 
255  double pBins[nPBin_ + 1] = {1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 9.0, 11.0, 15.0, 20.0, 25.0, 30.0, 40.0, 60.0, 100.0};
256  int etaBins[nEtaBin_ + 1] = {1, 7, 13, 17, 23};
257  int pvBins[nPVBin_ + 1] = {1, 2, 3, 5, 100};
258  for (int i = 0; i <= nPBin_; ++i)
259  pBin_[i] = pBins[i];
260  for (int i = 0; i <= nEtaBin_; ++i)
261  etaBin_[i] = etaBins[i];
262  for (int i = 0; i <= nPVBin_; ++i)
263  pvBin_[i] = pvBins[i];
264 
265  firstEvent_ = true;
266  changed_ = false;
267 }
268 
270  std::vector<std::string> trig;
271  std::vector<double> weights;
272  std::vector<std::string> newNames = {"HLT", "PixelTracks_Multiplicity", "HLT_Physics_", "HLT_JetE", "HLT_ZeroBias"};
274  desc.add<edm::InputTag>("particleSource", edm::InputTag("genParticles"));
275  desc.addUntracked<int>("verbosity", 0);
276  desc.addUntracked<std::vector<std::string> >("triggers", trig);
277  desc.addUntracked<std::vector<std::string> >("newNames", newNames);
278  desc.addUntracked<edm::InputTag>("labelMuon", edm::InputTag("muons", "", "RECO"));
279  desc.addUntracked<edm::InputTag>("labelTrack", edm::InputTag("generalTracks", "", "RECO"));
280  desc.addUntracked<std::string>("trackQuality", "highPurity");
281  desc.addUntracked<double>("minTrackPt", 1.0);
282  desc.addUntracked<double>("maxDxyPV", 0.02);
283  desc.addUntracked<double>("maxDzPV", 0.02);
284  desc.addUntracked<double>("maxChi2", 5.0);
285  desc.addUntracked<double>("maxDpOverP", 0.1);
286  desc.addUntracked<int>("minOuterHit", 4);
287  desc.addUntracked<int>("minLayerCrossed", 8);
288  desc.addUntracked<int>("maxInMiss", 0);
289  desc.addUntracked<int>("maxOutMiss", 0);
290  desc.addUntracked<double>("minTrackP", 1.0);
291  desc.addUntracked<double>("maxTrackEta", 2.6);
292  desc.addUntracked<double>("timeMinCutECAL", -500.0);
293  desc.addUntracked<double>("timeMaxCutECAL", 500.0);
294  desc.addUntracked<double>("timeMinCutHCAL", -500.0);
295  desc.addUntracked<double>("timeMaxCutHCAL", 500.0);
296  desc.addUntracked<double>("thresholdEB", 0.030);
297  desc.addUntracked<double>("thresholdEE", 0.150);
298  desc.addUntracked<double>("thresholdHB", 0.7);
299  desc.addUntracked<double>("thresholdHE", 0.8);
300  desc.addUntracked<bool>("isItAOD", false);
301  desc.addUntracked<bool>("vetoTrigger", false);
302  desc.addUntracked<bool>("doTree", false);
303  desc.addUntracked<bool>("vetoMuon", true);
304  desc.addUntracked<double>("cutMuon", 0.1);
305  desc.addUntracked<bool>("vetoEcal", false);
306  desc.addUntracked<double>("cutEcal", 2.0);
307  desc.addUntracked<double>("cutRatio", 0.9);
308  desc.addUntracked<std::vector<double> >("puWeights", weights);
309  descriptions.add("studyCaloResponse", desc);
310 }
311 
313  clear();
314  int counter0[1000] = {0};
315  int counter1[1000] = {0};
316  int counter2[1000] = {0};
317  int counter3[1000] = {0};
318  int counter4[1000] = {0};
319  int counter5[1000] = {0};
320  int counter6[1000] = {0};
321  int counter7[1000] = {0};
322  if (verbosity_ > 0)
323  edm::LogVerbatim("IsoTrack") << "Event starts====================================";
324  int RunNo = iEvent.id().run();
325  int EvtNo = iEvent.id().event();
326  int Lumi = iEvent.luminosityBlock();
327  int Bunch = iEvent.bunchCrossing();
328 
329  std::vector<int> newAccept(newNames_.size() + 1, 0);
330  if (verbosity_ > 0)
331  edm::LogVerbatim("IsoTrack") << "RunNo " << RunNo << " EvtNo " << EvtNo << " Lumi " << Lumi << " Bunch " << Bunch;
332 
334  edm::Handle<trigger::TriggerEvent> triggerEventHandle;
335  iEvent.getByToken(tok_trigEvt, triggerEventHandle);
336 
337  bool ok(false);
338  std::string triggerUse("None");
339  if (!triggerEventHandle.isValid()) {
340  if (trigNames_.empty()) {
341  ok = true;
342  } else {
343  edm::LogWarning("StudyCaloResponse") << "Error! Can't get the product " << triggerEvent_.label();
344  }
345  } else {
346  triggerEvent = *(triggerEventHandle.product());
347 
350  iEvent.getByToken(tok_trigRes, triggerResults);
351 
352  if (triggerResults.isValid()) {
353  h_nHLT->Fill(triggerResults->size());
354  h_nHLTvsRN->Fill(RunNo, triggerResults->size());
355 
356  const edm::TriggerNames& triggerNames = iEvent.triggerNames(*triggerResults);
357  const std::vector<std::string>& triggerNames_ = triggerNames.triggerNames();
358  for (unsigned int iHLT = 0; iHLT < triggerResults->size(); iHLT++) {
359  int ipos = -1;
360  std::string newtriggerName = truncate_str(triggerNames_[iHLT]);
361  for (unsigned int i = 0; i < HLTNames_.size(); ++i) {
362  if (newtriggerName == HLTNames_[i]) {
363  ipos = i + 1;
364  break;
365  }
366  }
367  if (ipos < 0) {
368  HLTNames_.push_back(newtriggerName);
369  ipos = (int)(HLTNames_.size());
370  if (ipos <= h_HLTAccept->GetNbinsX())
371  h_HLTAccept->GetXaxis()->SetBinLabel(ipos, newtriggerName.c_str());
372  }
373  if ((int)(iHLT + 1) > h_HLTAccepts[nRun_]->GetNbinsX()) {
374  edm::LogVerbatim("IsoTrack") << "Wrong trigger " << RunNo << " Event " << EvtNo << " Hlt " << iHLT;
375  } else {
376  if (firstEvent_)
377  h_HLTAccepts[nRun_]->GetXaxis()->SetBinLabel(iHLT + 1, newtriggerName.c_str());
378  }
379  int hlt = triggerResults->accept(iHLT);
380  if (hlt) {
381  h_HLTAccepts[nRun_]->Fill(iHLT + 1);
382  h_HLTAccept->Fill(ipos);
383  }
384  if (trigNames_.empty()) {
385  ok = true;
386  } else {
387  for (unsigned int i = 0; i < trigNames_.size(); ++i) {
388  if (newtriggerName.find(trigNames_[i]) != std::string::npos) {
389  if (verbosity_ % 10 > 0)
390  edm::LogVerbatim("IsoTrack") << newtriggerName;
391  if (hlt > 0) {
392  if (!ok)
393  triggerUse = newtriggerName;
394  ok = true;
395  tr_TrigName.push_back(newtriggerName);
396  }
397  }
398  }
399  if (vetoTrigger_)
400  ok = !ok;
401  for (unsigned int i = 0; i < newNames_.size(); ++i) {
402  if (newtriggerName.find(newNames_[i]) != std::string::npos) {
403  if (verbosity_ % 10 > 0)
404  edm::LogVerbatim("IsoTrack") << "[" << i << "] " << newNames_[i] << " : " << newtriggerName;
405  if (hlt > 0)
406  newAccept[i] = 1;
407  }
408  }
409  }
410  }
411  int iflg(0), indx(1);
412  for (unsigned int i = 0; i < newNames_.size(); ++i) {
413  iflg += (indx * newAccept[i]);
414  indx *= 2;
415  }
416  h_HLTCorr->Fill(iflg);
417  }
418  }
419  if ((verbosity_ / 10) % 10 > 0)
420  edm::LogVerbatim("IsoTrack") << "Trigger check gives " << ok << " with " << triggerUse;
421 
422  //Look at the tracks
424  iEvent.getByToken(tok_genTrack_, trkCollection);
425 
426  edm::Handle<reco::MuonCollection> muonEventHandle;
427  iEvent.getByToken(tok_Muon_, muonEventHandle);
428 
430  iEvent.getByToken(tok_recVtx_, recVtxs);
431 
432  if ((!trkCollection.isValid()) || (!muonEventHandle.isValid()) || (!recVtxs.isValid())) {
433  edm::LogWarning("StudyCaloResponse") << "Track collection " << trkCollection.isValid() << " Muon collection "
434  << muonEventHandle.isValid() << " Vertex Collecttion " << recVtxs.isValid();
435  ok = false;
436  }
437 
438  if (ok) {
439  h_goodRun->Fill(RunNo);
440  tr_goodRun = RunNo;
441  // get handles to calogeometry and calotopology
442  const CaloGeometry* geo = &iSetup.getData(tok_geom_);
443  const CaloTopology* caloTopology = &iSetup.getData(tok_caloTopology_);
444  const HcalTopology* theHBHETopology = &iSetup.getData(tok_topo_);
445  const MagneticField* bField = &iSetup.getData(tok_magField_);
446  const EcalChannelStatus* theEcalChStatus = &iSetup.getData(tok_ecalChStatus_);
447 
448  int ntrk(0), ngoodPV(0), nPV(-1), nvtxs(0);
449  nvtxs = (int)(recVtxs->size());
450  for (int ind = 0; ind < nvtxs; ind++) {
451  if (!((*recVtxs)[ind].isFake()) && (*recVtxs)[ind].ndof() > 4)
452  ngoodPV++;
453  }
454  for (int i = 0; i < nPVBin_; ++i) {
455  if (ngoodPV >= pvBin_[i] && ngoodPV < pvBin_[i + 1]) {
456  nPV = i;
457  break;
458  }
459  }
460 
461  tr_eventWeight = 1.0;
463  iEvent.getByToken(tok_ew_, genEventInfo);
464  if (genEventInfo.isValid())
465  tr_eventWeight = genEventInfo->weight();
466 
467  if ((verbosity_ / 10) % 10 > 0)
468  edm::LogVerbatim("IsoTrack") << "Number of vertices: " << nvtxs << " Good " << ngoodPV << " Bin " << nPV
469  << " Event weight " << tr_eventWeight;
470  h_numberPV->Fill(nvtxs, tr_eventWeight);
471  h_goodPV->Fill(ngoodPV, tr_eventWeight);
472  tr_goodPV = ngoodPV;
473 
474  if (!puWeights_.empty()) {
475  int npbin = h_goodPV->FindBin(ngoodPV);
476  if (npbin > 0 && npbin <= (int)(puWeights_.size()))
477  tr_eventWeight *= puWeights_[npbin - 1];
478  else
479  tr_eventWeight = 0;
480  }
481 
482  //=== genParticle information
484  iEvent.getByToken(tok_parts_, genParticles);
485  if (genParticles.isValid()) {
486  for (const auto& p : (reco::GenParticleCollection)(*genParticles)) {
487  double pt1 = p.momentum().Rho();
488  double p1 = p.momentum().R();
489  double eta1 = p.momentum().Eta();
490  double phi1 = p.momentum().Phi();
491  fillTrack(nGen_, pt1, p1, eta1, phi1);
492  bool match(false);
493  double phi2(phi1);
494  if (phi2 < 0)
495  phi2 += 2.0 * M_PI;
496  for (const auto& trk : (reco::TrackCollection)(*trkCollection)) {
497  bool quality = trk.quality(selectionParameters_.minQuality);
498  if (quality) {
499  double dEta = trk.eta() - eta1;
500  double phi0 = trk.phi();
501  if (phi0 < 0)
502  phi0 += 2.0 * M_PI;
503  double dPhi = phi0 - phi2;
504  if (dPhi > M_PI)
505  dPhi -= 2. * M_PI;
506  else if (dPhi < -M_PI)
507  dPhi += 2. * M_PI;
508  double dR = sqrt(dEta * dEta + dPhi * dPhi);
509  if (dR < 0.01) {
510  match = true;
511  break;
512  }
513  }
514  }
515  if (match)
516  fillTrack(nGen_ + 1, pt1, p1, eta1, phi1);
517  }
518  }
519 
520  reco::TrackCollection::const_iterator trkItr;
521  for (trkItr = trkCollection->begin(); trkItr != trkCollection->end(); ++trkItr, ++ntrk) {
522  const reco::Track* pTrack = &(*trkItr);
523  double pt1 = pTrack->pt();
524  double p1 = pTrack->p();
525  double eta1 = pTrack->momentum().eta();
526  double phi1 = pTrack->momentum().phi();
528  fillTrack(0, pt1, p1, eta1, phi1);
529  if (quality)
530  fillTrack(1, pt1, p1, eta1, phi1);
531  if (p1 < 1000) {
532  h_h_pNew[0]->Fill(p1);
533  ++counter0[(int)(p1)];
534  }
535  }
536  h_ntrk[0]->Fill(ntrk, tr_eventWeight);
537 
538  std::vector<spr::propagatedTrackID> trkCaloDets;
539  spr::propagateCALO(trkCollection, geo, bField, theTrackQuality_, trkCaloDets, ((verbosity_ / 100) % 10 > 0));
540  std::vector<spr::propagatedTrackID>::const_iterator trkDetItr;
541  for (trkDetItr = trkCaloDets.begin(), ntrk = 0; trkDetItr != trkCaloDets.end(); trkDetItr++, ntrk++) {
542  const reco::Track* pTrack = &(*(trkDetItr->trkItr));
543  double pt1 = pTrack->pt();
544  double p1 = pTrack->p();
545  double eta1 = pTrack->momentum().eta();
546  double phi1 = pTrack->momentum().phi();
547  if ((verbosity_ / 10) % 10 > 0)
548  edm::LogVerbatim("IsoTrack") << "track: p " << p1 << " pt " << pt1 << " eta " << eta1 << " phi " << phi1
549  << " okEcal " << trkDetItr->okECAL;
550  fillTrack(2, pt1, p1, eta1, phi1);
551 
552  bool vetoMuon(false);
553  double chiGlobal(0), dr(0);
554  bool goodGlob(false);
555  if (vetoMuon_) {
556  if (muonEventHandle.isValid()) {
557  for (reco::MuonCollection::const_iterator recMuon = muonEventHandle->begin();
558  recMuon != muonEventHandle->end();
559  ++recMuon) {
560  if (((recMuon->isPFMuon()) && (recMuon->isGlobalMuon() || recMuon->isTrackerMuon())) &&
561  (recMuon->innerTrack()->validFraction() > 0.49) && (recMuon->innerTrack().isNonnull())) {
562  chiGlobal = ((recMuon->globalTrack().isNonnull()) ? recMuon->globalTrack()->normalizedChi2() : 999);
563  goodGlob = (recMuon->isGlobalMuon() && chiGlobal < 3 &&
564  recMuon->combinedQuality().chi2LocalPosition < 12 && recMuon->combinedQuality().trkKink < 20);
565  if (muon::segmentCompatibility(*recMuon) > (goodGlob ? 0.303 : 0.451)) {
566  const reco::Track* pTrack0 = (recMuon->innerTrack()).get();
567  dr = reco::deltaR(pTrack0->eta(), pTrack0->phi(), pTrack->eta(), pTrack->phi());
568  if (dr < cutMuon_) {
569  vetoMuon = true;
570  break;
571  }
572  }
573  }
574  }
575  }
576  }
577  if ((verbosity_ / 10) % 10 > 0)
578  edm::LogVerbatim("IsoTrack") << "vetoMuon: " << vetoMuon_ << ":" << vetoMuon << " chi:good:dr " << chiGlobal
579  << ":" << goodGlob << ":" << dr;
580  if (pt1 > minTrackP_ && std::abs(eta1) < maxTrackEta_ && trkDetItr->okECAL && (!vetoMuon)) {
581  fillTrack(3, pt1, p1, eta1, phi1);
582  double maxNearP31x31 =
583  spr::chargeIsolationEcal(ntrk, trkCaloDets, geo, caloTopology, 15, 15, ((verbosity_ / 1000) % 10 > 0));
584 
585  const EcalSeverityLevelAlgo* sevlv = &iSetup.getData(tok_sevlv_);
586 
587  edm::Handle<EcalRecHitCollection> barrelRecHitsHandle;
588  edm::Handle<EcalRecHitCollection> endcapRecHitsHandle;
589  iEvent.getByToken(tok_EB_, barrelRecHitsHandle);
590  iEvent.getByToken(tok_EE_, endcapRecHitsHandle);
591  // get ECal Tranverse Profile
592  std::pair<double, bool> e7x7P, e11x11P, e15x15P;
593  const DetId isoCell = trkDetItr->detIdECAL;
594  e7x7P = spr::eECALmatrix(isoCell,
595  barrelRecHitsHandle,
596  endcapRecHitsHandle,
597  *theEcalChStatus,
598  geo,
599  caloTopology,
600  sevlv,
601  3,
602  3,
603  eThrEB_,
604  eThrEE_,
605  tMinE_,
606  tMaxE_,
607  ((verbosity_ / 10000) % 10 > 0));
608  e11x11P = spr::eECALmatrix(isoCell,
609  barrelRecHitsHandle,
610  endcapRecHitsHandle,
611  *theEcalChStatus,
612  geo,
613  caloTopology,
614  sevlv,
615  5,
616  5,
617  eThrEB_,
618  eThrEE_,
619  tMinE_,
620  tMaxE_,
621  ((verbosity_ / 10000) % 10 > 0));
622  e15x15P = spr::eECALmatrix(isoCell,
623  barrelRecHitsHandle,
624  endcapRecHitsHandle,
625  *theEcalChStatus,
626  geo,
627  caloTopology,
628  sevlv,
629  7,
630  7,
631  eThrEB_,
632  eThrEE_,
633  tMinE_,
634  tMaxE_,
635  ((verbosity_ / 10000) % 10 > 0));
636 
637  double maxNearHcalP7x7 =
638  spr::chargeIsolationHcal(ntrk, trkCaloDets, theHBHETopology, 3, 3, ((verbosity_ / 1000) % 10 > 0));
639  int ieta(0);
640  double h3x3(0), h5x5(0), h7x7(0);
641  fillIsolation(0, maxNearP31x31, e11x11P.first, e15x15P.first);
642  if ((verbosity_ / 10) % 10 > 0)
643  edm::LogVerbatim("IsoTrack") << "Accepted Tracks reaching Ecal maxNearP31x31 " << maxNearP31x31 << " e11x11P "
644  << e11x11P.first << " e15x15P " << e15x15P.first << " okHCAL "
645  << trkDetItr->okHCAL;
646 
647  int trackID = trackPID(pTrack, genParticles);
648  if (trkDetItr->okHCAL) {
650  iEvent.getByToken(tok_hbhe_, hbhe);
651  const DetId ClosestCell(trkDetItr->detIdHCAL);
652  ieta = ((HcalDetId)(ClosestCell)).ietaAbs();
653  h3x3 = spr::eHCALmatrix(theHBHETopology,
654  ClosestCell,
655  hbhe,
656  1,
657  1,
658  false,
659  true,
660  eThrHB_,
661  eThrHE_,
662  -100.0,
663  -100.0,
664  tMinH_,
665  tMaxH_,
666  ((verbosity_ / 10000) % 10 > 0));
667  h5x5 = spr::eHCALmatrix(theHBHETopology,
668  ClosestCell,
669  hbhe,
670  2,
671  2,
672  false,
673  true,
674  eThrHB_,
675  eThrHE_,
676  -100.0,
677  -100.0,
678  tMinH_,
679  tMaxH_,
680  ((verbosity_ / 10000) % 10 > 0));
681  h7x7 = spr::eHCALmatrix(theHBHETopology,
682  ClosestCell,
683  hbhe,
684  3,
685  3,
686  false,
687  true,
688  eThrHB_,
689  eThrHE_,
690  -100.0,
691  -100.0,
692  tMinH_,
693  tMaxH_,
694  ((verbosity_ / 10000) % 10 > 0));
695  fillIsolation(1, maxNearHcalP7x7, h5x5, h7x7);
696  double eByh = ((e11x11P.second) ? (e11x11P.first / std::max(h3x3, 0.001)) : 0.0);
697  bool notAnElec = ((vetoEcal_ && e11x11P.second) ? ((e11x11P.first < cutEcal_) || (eByh < cutRatio_)) : true);
698  if ((verbosity_ / 10) % 10 > 0)
699  edm::LogVerbatim("IsoTrack") << "Tracks Reaching Hcal maxNearHcalP7x7/h5x5/h7x7 " << maxNearHcalP7x7 << "/"
700  << h5x5 << "/" << h7x7 << " eByh " << eByh << " notAnElec " << notAnElec;
701  tr_TrkPt.push_back(pt1);
702  tr_TrkP.push_back(p1);
703  tr_TrkEta.push_back(eta1);
704  tr_TrkPhi.push_back(phi1);
705  tr_TrkID.push_back(trackID);
706  tr_MaxNearP31X31.push_back(maxNearP31x31);
707  tr_MaxNearHcalP7x7.push_back(maxNearHcalP7x7);
708  tr_FE7x7P.push_back(e7x7P.first);
709  tr_FE11x11P.push_back(e11x11P.first);
710  tr_FE15x15P.push_back(e15x15P.first);
711  tr_SE7x7P.push_back(e7x7P.second);
712  tr_SE11x11P.push_back(e11x11P.second);
713  tr_SE15x15P.push_back(e15x15P.second);
714  tr_iEta.push_back(ieta);
715  tr_H3x3.push_back(h3x3);
716  tr_H5x5.push_back(h5x5);
717  tr_H7x7.push_back(h7x7);
718 
719  if (maxNearP31x31 < 0 && notAnElec) {
720  fillTrack(4, pt1, p1, eta1, phi1);
721  fillEnergy(0, ieta, p1, e7x7P.first, h3x3, e11x11P.first, h5x5);
722  if (maxNearHcalP7x7 < 0) {
723  fillTrack(5, pt1, p1, eta1, phi1);
724  fillEnergy(1, ieta, p1, e7x7P.first, h3x3, e11x11P.first, h5x5);
725  if ((e11x11P.second) && (e15x15P.second) && (e15x15P.first - e11x11P.first) < 2.0) {
726  fillTrack(6, pt1, p1, eta1, phi1);
727  fillEnergy(2, ieta, p1, e7x7P.first, h3x3, e11x11P.first, h5x5);
728  if (h7x7 - h5x5 < 2.0) {
729  fillTrack(7, pt1, p1, eta1, phi1);
730  fillEnergy(3, ieta, p1, e7x7P.first, h3x3, e11x11P.first, h5x5);
731  if (nPV >= 0) {
732  fillTrack(nPV + 8, pt1, p1, eta1, phi1);
733  fillEnergy(nPV + 4, ieta, p1, e7x7P.first, h3x3, e11x11P.first, h5x5);
734  }
735  if (trackID > 0) {
736  fillTrack(nPVBin_ + trackID + 7, pt1, p1, eta1, phi1);
737  fillEnergy(nPVBin_ + trackID + 3, ieta, p1, e7x7P.first, h3x3, e11x11P.first, h5x5);
738  }
739  if (p1 < 1000) {
740  h_h_pNew[7]->Fill(p1);
741  ++counter7[(int)(p1)];
742  }
743  }
744  if (p1 < 1000) {
745  h_h_pNew[6]->Fill(p1);
746  ++counter6[(int)(p1)];
747  }
748  }
749  if (p1 < 1000) {
750  h_h_pNew[5]->Fill(p1);
751  ++counter5[(int)(p1)];
752  }
753  }
754  if (p1 < 1000) {
755  h_h_pNew[4]->Fill(p1);
756  ++counter4[(int)(p1)];
757  }
758  }
759  if (p1 < 1000) {
760  h_h_pNew[3]->Fill(p1);
761  ++counter3[(int)(p1)];
762  }
763  }
764  if (p1 < 1000) {
765  h_h_pNew[2]->Fill(p1);
766  ++counter2[(int)(p1)];
767  }
768  }
769  if (p1 < 1000) {
770  h_h_pNew[1]->Fill(p1);
771  ++counter1[(int)(p1)];
772  }
773  }
774  h_ntrk[1]->Fill(ntrk, tr_eventWeight);
775  if ((!tr_TrkPt.empty()) && doTree_)
776  tree_->Fill();
777  for (int i = 0; i < 1000; ++i) {
778  if (counter0[i])
779  h_counter[0]->Fill(i, counter0[i]);
780  if (counter1[i])
781  h_counter[1]->Fill(i, counter1[i]);
782  if (counter2[i])
783  h_counter[2]->Fill(i, counter2[i]);
784  if (counter3[i])
785  h_counter[3]->Fill(i, counter3[i]);
786  if (counter4[i])
787  h_counter[4]->Fill(i, counter4[i]);
788  if (counter5[i])
789  h_counter[5]->Fill(i, counter5[i]);
790  if (counter6[i])
791  h_counter[6]->Fill(i, counter6[i]);
792  if (counter7[i])
793  h_counter[7]->Fill(i, counter7[i]);
794  }
795  }
796  firstEvent_ = false;
797 }
798 
800  // Book histograms
801  h_nHLT = fs_->make<TH1I>("h_nHLT", "size of trigger Names", 1000, 0, 1000);
802  h_HLTAccept = fs_->make<TH1I>("h_HLTAccept", "HLT Accepts for all runs", 500, 0, 500);
803  for (int i = 1; i <= 500; ++i)
804  h_HLTAccept->GetXaxis()->SetBinLabel(i, " ");
805  h_nHLTvsRN = fs_->make<TH2I>("h_nHLTvsRN", "size of trigger Names vs RunNo", 2168, 190949, 193116, 100, 400, 500);
806  h_HLTCorr = fs_->make<TH1I>("h_HLTCorr", "Correlation among different paths", 100, 0, 100);
807  h_numberPV = fs_->make<TH1I>("h_numberPV", "Number of Primary Vertex", 100, 0, 100);
808  h_goodPV = fs_->make<TH1I>("h_goodPV", "Number of good Primary Vertex", 100, 0, 100);
809  h_goodRun = fs_->make<TH1I>("h_goodRun", "Number of accepted events for Run", 4000, 190000, 1940000);
810  char hname[60], htit[200];
811  std::string CollectionNames[2] = {"Reco", "Propagated"};
812  for (unsigned int i = 0; i < 2; i++) {
813  sprintf(hname, "h_nTrk_%s", CollectionNames[i].c_str());
814  sprintf(htit, "Number of %s tracks", CollectionNames[i].c_str());
815  h_ntrk[i] = fs_->make<TH1I>(hname, htit, 500, 0, 500);
816  }
817  std::string TrkNames[8] = {
818  "All", "Quality", "NoIso", "okEcal", "EcalCharIso", "HcalCharIso", "EcalNeutIso", "HcalNeutIso"};
819  std::string particle[4] = {"Electron", "Pion", "Kaon", "Proton"};
820  for (unsigned int i = 0; i <= nGen_ + 1; i++) {
821  if (i < 8) {
822  sprintf(hname, "h_pt_%s", TrkNames[i].c_str());
823  sprintf(htit, "p_{T} of %s tracks", TrkNames[i].c_str());
824  } else if (i < 8 + nPVBin_) {
825  sprintf(hname, "h_pt_%s_%d", TrkNames[7].c_str(), i - 8);
826  sprintf(htit, "p_{T} of %s tracks (PV=%d:%d)", TrkNames[7].c_str(), pvBin_[i - 8], pvBin_[i - 7] - 1);
827  } else if (i >= nGen_) {
828  sprintf(hname, "h_pt_%s_%d", TrkNames[0].c_str(), i - nGen_);
829  sprintf(htit, "p_{T} of %s Generator tracks", TrkNames[0].c_str());
830  } else {
831  sprintf(hname, "h_pt_%s_%s", TrkNames[7].c_str(), particle[i - 8 - nPVBin_].c_str());
832  sprintf(htit, "p_{T} of %s tracks (%s)", TrkNames[7].c_str(), particle[i - 8 - nPVBin_].c_str());
833  }
834  h_pt[i] = fs_->make<TH1D>(hname, htit, 400, 0, 200.0);
835  h_pt[i]->Sumw2();
836 
837  if (i < 8) {
838  sprintf(hname, "h_p_%s", TrkNames[i].c_str());
839  sprintf(htit, "Momentum of %s tracks", TrkNames[i].c_str());
840  } else if (i < 8 + nPVBin_) {
841  sprintf(hname, "h_p_%s_%d", TrkNames[7].c_str(), i - 8);
842  sprintf(htit, "Momentum of %s tracks (PV=%d:%d)", TrkNames[7].c_str(), pvBin_[i - 8], pvBin_[i - 7] - 1);
843  } else if (i >= nGen_) {
844  sprintf(hname, "h_p_%s_%d", TrkNames[0].c_str(), i - nGen_);
845  sprintf(htit, "Momentum of %s Generator tracks", TrkNames[0].c_str());
846  } else {
847  sprintf(hname, "h_p_%s_%s", TrkNames[7].c_str(), particle[i - 8 - nPVBin_].c_str());
848  sprintf(htit, "Momentum of %s tracks (%s)", TrkNames[7].c_str(), particle[i - 8 - nPVBin_].c_str());
849  }
850  h_p[i] = fs_->make<TH1D>(hname, htit, 400, 0, 200.0);
851  h_p[i]->Sumw2();
852 
853  if (i < 8) {
854  sprintf(hname, "h_eta_%s", TrkNames[i].c_str());
855  sprintf(htit, "Eta of %s tracks", TrkNames[i].c_str());
856  } else if (i < 8 + nPVBin_) {
857  sprintf(hname, "h_eta_%s_%d", TrkNames[7].c_str(), i - 8);
858  sprintf(htit, "Eta of %s tracks (PV=%d:%d)", TrkNames[7].c_str(), pvBin_[i - 8], pvBin_[i - 7] - 1);
859  } else if (i >= nGen_) {
860  sprintf(hname, "h_eta_%s_%d", TrkNames[0].c_str(), i - nGen_);
861  sprintf(htit, "Eta of %s Generator tracks", TrkNames[0].c_str());
862  } else {
863  sprintf(hname, "h_eta_%s_%s", TrkNames[7].c_str(), particle[i - 8 - nPVBin_].c_str());
864  sprintf(htit, "Eta of %s tracks (%s)", TrkNames[7].c_str(), particle[i - 8 - nPVBin_].c_str());
865  }
866  h_eta[i] = fs_->make<TH1D>(hname, htit, 60, -3.0, 3.0);
867  h_eta[i]->Sumw2();
868 
869  if (i < 8) {
870  sprintf(hname, "h_phi_%s", TrkNames[i].c_str());
871  sprintf(htit, "Phi of %s tracks", TrkNames[i].c_str());
872  } else if (i < 8 + nPVBin_) {
873  sprintf(hname, "h_phi_%s_%d", TrkNames[7].c_str(), i - 8);
874  sprintf(htit, "Phi of %s tracks (PV=%d:%d)", TrkNames[7].c_str(), pvBin_[i - 8], pvBin_[i - 7] - 1);
875  } else if (i >= nGen_) {
876  sprintf(hname, "h_phi_%s_%d", TrkNames[0].c_str(), i - nGen_);
877  sprintf(htit, "Phi of %s Generator tracks", TrkNames[0].c_str());
878  } else {
879  sprintf(hname, "h_phi_%s_%s", TrkNames[7].c_str(), particle[i - 8 - nPVBin_].c_str());
880  sprintf(htit, "Phi of %s tracks (%s)", TrkNames[7].c_str(), particle[i - 8 - nPVBin_].c_str());
881  }
882  h_phi[i] = fs_->make<TH1D>(hname, htit, 100, -3.15, 3.15);
883  h_phi[i]->Sumw2();
884  }
885  std::string IsolationNames[2] = {"Ecal", "Hcal"};
886  for (unsigned int i = 0; i < 2; i++) {
887  sprintf(hname, "h_maxNearP_%s", IsolationNames[i].c_str());
888  sprintf(htit, "Energy in ChargeIso region for %s", IsolationNames[i].c_str());
889  h_maxNearP[i] = fs_->make<TH1D>(hname, htit, 120, -1.5, 10.5);
890  h_maxNearP[i]->Sumw2();
891 
892  sprintf(hname, "h_ene1_%s", IsolationNames[i].c_str());
893  sprintf(htit, "Energy in smaller cone for %s", IsolationNames[i].c_str());
894  h_ene1[i] = fs_->make<TH1D>(hname, htit, 400, 0.0, 200.0);
895  h_ene1[i]->Sumw2();
896 
897  sprintf(hname, "h_ene2_%s", IsolationNames[i].c_str());
898  sprintf(htit, "Energy in bigger cone for %s", IsolationNames[i].c_str());
899  h_ene2[i] = fs_->make<TH1D>(hname, htit, 400, 0.0, 200.0);
900  h_ene2[i]->Sumw2();
901 
902  sprintf(hname, "h_ediff_%s", IsolationNames[i].c_str());
903  sprintf(htit, "Energy in NeutralIso region for %s", IsolationNames[i].c_str());
904  h_ediff[i] = fs_->make<TH1D>(hname, htit, 100, -0.5, 19.5);
905  h_ediff[i]->Sumw2();
906  }
907  std::string energyNames[6] = {
908  "E_{7x7}", "H_{3x3}", "(E_{7x7}+H_{3x3})", "E_{11x11}", "H_{5x5}", "{E_{11x11}+H_{5x5})"};
909  for (int i = 0; i < 4 + nPVBin_ + 4; ++i) {
910  for (int ip = 0; ip < nPBin_; ++ip) {
911  for (int ie = 0; ie < nEtaBin_; ++ie) {
912  for (int j = 0; j < 6; ++j) {
913  sprintf(hname, "h_energy_%d_%d_%d_%d", i, ip, ie, j);
914  if (i < 4) {
915  sprintf(htit,
916  "%s/p (p=%4.1f:%4.1f; i#eta=%d:%d) for tracks with %s",
917  energyNames[j].c_str(),
918  pBin_[ip],
919  pBin_[ip + 1],
920  etaBin_[ie],
921  (etaBin_[ie + 1] - 1),
922  TrkNames[i + 4].c_str());
923  } else if (i < 4 + nPVBin_) {
924  sprintf(htit,
925  "%s/p (p=%4.1f:%4.1f, i#eta=%d:%d, PV=%d:%d) for tracks with %s",
926  energyNames[j].c_str(),
927  pBin_[ip],
928  pBin_[ip + 1],
929  etaBin_[ie],
930  (etaBin_[ie + 1] - 1),
931  pvBin_[i - 4],
932  (pvBin_[i - 3] - 1),
933  TrkNames[7].c_str());
934  } else {
935  sprintf(htit,
936  "%s/p (p=%4.1f:%4.1f, i#eta=%d:%d %s) for tracks with %s",
937  energyNames[j].c_str(),
938  pBin_[ip],
939  pBin_[ip + 1],
940  etaBin_[ie],
941  (etaBin_[ie + 1] - 1),
942  particle[i - 4 - nPVBin_].c_str(),
943  TrkNames[7].c_str());
944  }
945  h_energy[i][ip][ie][j] = fs_->make<TH1D>(hname, htit, 5000, -0.1, 49.9);
946  h_energy[i][ip][ie][j]->Sumw2();
947  }
948  }
949  }
950  }
951 
952  for (int i = 0; i < 8; ++i) {
953  sprintf(hname, "counter%d", i);
954  sprintf(htit, "Counter with cut %d", i);
955  h_counter[i] = fs_->make<TH1D>(hname, htit, 1000, 0, 1000);
956  sprintf(hname, "h_pTNew%d", i);
957  sprintf(htit, "Track momentum with cut %d", i);
958  h_h_pNew[i] = fs_->make<TH1D>(hname, htit, 1000, 0, 1000);
959  }
960 
961  // Now the tree
962  if (doTree_) {
963  tree_ = fs_->make<TTree>("testTree", "new HLT Tree");
964  tree_->Branch("tr_goodRun", &tr_goodRun, "tr_goodRun/I");
965  tree_->Branch("tr_goodPV", &tr_goodPV, "tr_goodPV/I");
966  tree_->Branch("tr_eventWeight", &tr_eventWeight, "tr_eventWeight/D");
967  tree_->Branch("tr_tr_TrigName", &tr_TrigName);
968  tree_->Branch("tr_TrkPt", &tr_TrkPt);
969  tree_->Branch("tr_TrkP", &tr_TrkP);
970  tree_->Branch("tr_TrkEta", &tr_TrkEta);
971  tree_->Branch("tr_TrkPhi", &tr_TrkPhi);
972  tree_->Branch("tr_TrkID", &tr_TrkID);
973  tree_->Branch("tr_MaxNearP31X31", &tr_MaxNearP31X31);
974  tree_->Branch("tr_MaxNearHcalP7x7", &tr_MaxNearHcalP7x7);
975  tree_->Branch("tr_FE7x7P", &tr_FE7x7P);
976  tree_->Branch("tr_FE11x11P", &tr_FE11x11P);
977  tree_->Branch("tr_FE15x15P", &tr_FE15x15P);
978  tree_->Branch("tr_SE7x7P", &tr_SE7x7P);
979  tree_->Branch("tr_SE11x11P", &tr_SE11x11P);
980  tree_->Branch("tr_SE15x15P", &tr_SE15x15P);
981  tree_->Branch("tr_H3x3", &tr_H3x3);
982  tree_->Branch("tr_H5x5", &tr_H5x5);
983  tree_->Branch("tr_H7x7", &tr_H7x7);
984  tree_->Branch("tr_iEta", &tr_iEta);
985  }
986 }
987 
988 // ------------ method called when starting to processes a run ------------
989 void StudyCaloResponse::beginRun(edm::Run const& iRun, edm::EventSetup const& iSetup) {
990  char hname[100], htit[400];
991  edm::LogVerbatim("IsoTrack") << "Run[" << nRun_ << "] " << iRun.run() << " hltconfig.init "
992  << hltConfig_.init(iRun, iSetup, "HLT", changed_);
993  sprintf(hname, "h_HLTAccepts_%i", iRun.run());
994  sprintf(htit, "HLT Accepts for Run No %i", iRun.run());
995  TH1I* hnew = fs_->make<TH1I>(hname, htit, 500, 0, 500);
996  for (int i = 1; i <= 500; ++i)
997  hnew->GetXaxis()->SetBinLabel(i, " ");
998  h_HLTAccepts.push_back(hnew);
999  edm::LogVerbatim("IsoTrack") << "beginRun " << iRun.run();
1000  firstEvent_ = true;
1001  changed_ = false;
1002 }
1003 
1004 // ------------ method called when ending the processing of a run ------------
1006  ++nRun_;
1007  edm::LogVerbatim("IsoTrack") << "endRun[" << nRun_ << "] " << iRun.run();
1008 }
1009 
1011  tr_TrigName.clear();
1012  tr_TrkPt.clear();
1013  tr_TrkP.clear();
1014  tr_TrkEta.clear();
1015  tr_TrkPhi.clear();
1016  tr_TrkID.clear();
1017  tr_MaxNearP31X31.clear();
1018  tr_MaxNearHcalP7x7.clear();
1019  tr_FE7x7P.clear();
1020  tr_FE11x11P.clear();
1021  tr_FE15x15P.clear();
1022  tr_SE7x7P.clear();
1023  tr_SE11x11P.clear();
1024  tr_SE15x15P.clear();
1025  tr_H3x3.clear();
1026  tr_H5x5.clear();
1027  tr_H7x7.clear();
1028  tr_iEta.clear();
1029 }
1030 
1031 void StudyCaloResponse::fillTrack(int i, double pt, double p, double eta, double phi) {
1032  h_pt[i]->Fill(pt, tr_eventWeight);
1033  h_p[i]->Fill(p, tr_eventWeight);
1034  h_eta[i]->Fill(eta, tr_eventWeight);
1035  h_phi[i]->Fill(phi, tr_eventWeight);
1036 }
1037 
1038 void StudyCaloResponse::fillIsolation(int i, double emaxnearP, double eneutIso1, double eneutIso2) {
1039  h_maxNearP[i]->Fill(emaxnearP, tr_eventWeight);
1040  h_ene1[i]->Fill(eneutIso1, tr_eventWeight);
1041  h_ene2[i]->Fill(eneutIso2, tr_eventWeight);
1042  h_ediff[i]->Fill(eneutIso2 - eneutIso1, tr_eventWeight);
1043 }
1044 
1046  int flag, int ieta, double p, double enEcal1, double enHcal1, double enEcal2, double enHcal2) {
1047  int ip(-1), ie(-1);
1048  for (int i = 0; i < nPBin_; ++i) {
1049  if (p >= pBin_[i] && p < pBin_[i + 1]) {
1050  ip = i;
1051  break;
1052  }
1053  }
1054  for (int i = 0; i < nEtaBin_; ++i) {
1055  if (ieta >= etaBin_[i] && ieta < etaBin_[i + 1]) {
1056  ie = i;
1057  break;
1058  }
1059  }
1060  if (ip >= 0 && ie >= 0 && enEcal1 > 0.02 && enHcal1 > 0.1) {
1061  h_energy[flag][ip][ie][0]->Fill(enEcal1 / p, tr_eventWeight);
1062  h_energy[flag][ip][ie][1]->Fill(enHcal1 / p, tr_eventWeight);
1063  h_energy[flag][ip][ie][2]->Fill((enEcal1 + enHcal1) / p, tr_eventWeight);
1064  h_energy[flag][ip][ie][3]->Fill(enEcal2 / p, tr_eventWeight);
1065  h_energy[flag][ip][ie][4]->Fill(enHcal2 / p, tr_eventWeight);
1066  h_energy[flag][ip][ie][5]->Fill((enEcal2 + enHcal2) / p, tr_eventWeight);
1067  }
1068 }
1069 
1071  std::string truncated_str(str);
1072  int length = str.length();
1073  for (int i = 0; i < length - 2; i++) {
1074  if (str[i] == '_' && str[i + 1] == 'v' && isdigit(str.at(i + 2))) {
1075  int z = i + 1;
1076  truncated_str = str.substr(0, z);
1077  }
1078  }
1079  return (truncated_str);
1080 }
1081 
1084  int id(0);
1085  if (genParticles.isValid()) {
1086  unsigned int indx;
1087  reco::GenParticleCollection::const_iterator p;
1088  double mindR(999.9);
1089  for (p = genParticles->begin(), indx = 0; p != genParticles->end(); ++p, ++indx) {
1090  int pdgId = std::abs(p->pdgId());
1091  int idx = (pdgId == 11) ? 1 : ((pdgId == 211) ? 2 : ((pdgId == 321) ? 3 : ((pdgId == 2212) ? 4 : 0)));
1092  if (idx > 0) {
1093  double dEta = pTrack->eta() - p->momentum().Eta();
1094  double phi1 = pTrack->phi();
1095  double phi2 = p->momentum().Phi();
1096  if (phi1 < 0)
1097  phi1 += 2.0 * M_PI;
1098  if (phi2 < 0)
1099  phi2 += 2.0 * M_PI;
1100  double dPhi = phi1 - phi2;
1101  if (dPhi > M_PI)
1102  dPhi -= 2. * M_PI;
1103  else if (dPhi < -M_PI)
1104  dPhi += 2. * M_PI;
1105  double dR = sqrt(dEta * dEta + dPhi * dPhi);
1106  if (dR < mindR) {
1107  mindR = dR;
1108  id = idx;
1109  }
1110  }
1111  }
1112  }
1113  return id;
1114 }
1115 
bool quality(const TrackQuality) const
Track quality.
Definition: TrackBase.h:552
std::vector< double > tr_TrkEta
static const std::string kSharedResource
Definition: TFileService.h:76
Log< level::Info, true > LogVerbatim
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
TH1D * h_eta[nGen_+2]
const std::vector< std::string > newNames_
edm::EDGetTokenT< reco::TrackCollection > tok_genTrack_
std::vector< bool > tr_SE11x11P
const edm::InputTag theTriggerResultsLabel_
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::vector< double > tr_H5x5
void fillIsolation(int, double, double, double)
double pBin_[nPBin_+1]
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
std::vector< std::string > tr_TrigName
int trackPID(const reco::Track *, const edm::Handle< reco::GenParticleCollection > &)
edm::EDGetTokenT< reco::MuonCollection > tok_Muon_
TrackQuality
track quality
Definition: TrackBase.h:150
static const int nPVBin_
edm::Service< TFileService > fs_
spr::trackSelectionParameters selectionParameters_
double p() const
momentum vector magnitude
Definition: TrackBase.h:631
edm::EDGetTokenT< EcalRecHitCollection > tok_EE_
std::vector< double > tr_FE7x7P
T const * product() const
Definition: Handle.h:70
std::vector< double > tr_MaxNearP31X31
std::vector< Track > TrackCollection
collection of Tracks
Definition: TrackFwd.h:14
std::vector< double > tr_TrkPhi
void analyze(edm::Event const &, edm::EventSetup const &) override
std::string const & label() const
Definition: InputTag.h:36
TH1D * h_phi[nGen_+2]
edm::EDGetTokenT< trigger::TriggerEvent > tok_trigEvt
edm::ESGetToken< CaloTopology, CaloTopologyRecord > tok_caloTopology_
int etaBin_[nEtaBin_+1]
edm::EDGetTokenT< edm::TriggerResults > tok_trigRes
T getUntrackedParameter(std::string const &, T const &) const
void fillTrack(int, double, double, double, double)
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > tok_geom_
const std::string theTrackQuality_
edm::EDGetTokenT< EcalRecHitCollection > tok_EB_
ALPAKA_FN_ACC ALPAKA_FN_INLINE uint32_t ietaAbs(uint32_t id)
double pt() const
track transverse momentum
Definition: TrackBase.h:637
string quality
std::string truncate_str(const std::string &)
const std::vector< double > puWeights_
double chargeIsolationEcal(unsigned int trkIndex, std::vector< spr::propagatedTrackID > &vdetIds, const CaloGeometry *geo, const CaloTopology *caloTopology, int ieta, int iphi, bool debug=false)
int iEvent
Definition: GenABIO.cc:224
RunNumber_t run() const
Definition: RunBase.h:40
const double maxTrackEta_
edm::ESGetToken< EcalChannelStatus, EcalChannelStatusRcd > tok_ecalChStatus_
T sqrt(T t)
Definition: SSEVec.h:19
const edm::InputTag labelGenTrack_
virtual void beginLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
float segmentCompatibility(const reco::Muon &muon, reco::Muon::ArbitrationType arbitrationType=reco::Muon::SegmentAndTrackArbitration)
double phi() const
azimuthal angle of momentum vector
Definition: TrackBase.h:649
std::vector< int > tr_iEta
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
edm::EDGetTokenT< LumiDetails > tok_lumi
static std::string const triggerResults
Definition: EdmProvDump.cc:47
std::vector< double > tr_MaxNearHcalP7x7
edm::ESGetToken< MagneticField, IdealMagneticFieldRecord > tok_magField_
std::vector< double > tr_FE15x15P
std::vector< double > tr_TrkP
#define M_PI
constexpr auto deltaR(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:30
std::vector< double > tr_TrkPt
edm::ESGetToken< HcalTopology, HcalRecNumberingRecord > tok_topo_
std::vector< double > tr_H3x3
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
void fillEnergy(int, int, double, double, double, double, double)
double eta() const
pseudorapidity of momentum vector
Definition: TrackBase.h:652
Definition: DetId.h:17
const std::vector< std::string > trigNames_
std::vector< std::string > HLTNames_
static TrackQuality qualityByName(const std::string &name)
Definition: TrackBase.cc:126
std::vector< int > tr_TrkID
edm::ESGetToken< EcalSeverityLevelAlgo, EcalSeverityLevelAlgoRcd > tok_sevlv_
std::vector< bool > tr_SE7x7P
std::vector< double > tr_H7x7
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
d&#39;tor
void add(std::string const &label, ParameterSetDescription const &psetDescription)
edm::EDGetTokenT< reco::GenParticleCollection > tok_parts_
const Vector & momentum() const
track momentum vector
Definition: TrackBase.h:664
std::vector< TH1I * > h_HLTAccepts
edm::EDGetTokenT< HBHERecHitCollection > tok_hbhe_
void beginJob() override
bool isValid() const
Definition: HandleBase.h:70
int pvBin_[nPVBin_+1]
static const int nEtaBin_
TH1D * h_energy[nPVBin_+8][nPBin_][nEtaBin_][6]
const edm::InputTag labelMuon_
virtual void endLuminosityBlock(edm::LuminosityBlock const &, edm::EventSetup const &)
HLT enums.
edm::EDGetTokenT< reco::VertexCollection > tok_recVtx_
void beginRun(edm::Run const &, edm::EventSetup const &) override
StudyCaloResponse(const edm::ParameterSet &)
reco::TrackBase::TrackQuality minQuality
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
std::pair< typename Association::data_type::first_type, double > match(Reference key, Association association, bool bestMatchByMaxValue)
Generic matching function.
Definition: Utils.h:10
std::vector< double > tr_FE11x11P
Log< level::Warning, false > LogWarning
#define str(s)
static const int nPBin_
double chargeIsolationHcal(unsigned int trkIndex, std::vector< spr::propagatedTrackID > &vdetIds, const HcalTopology *topology, int ieta, int iphi, bool debug=false)
HLTConfigProvider hltConfig_
edm::EDGetTokenT< GenEventInfoProduct > tok_ew_
void endRun(edm::Run const &, edm::EventSetup const &) override
TH1D * h_p[nGen_+2]
Definition: Run.h:45
TH1D * h_pt[nGen_+2]
const edm::InputTag triggerEvent_
static const int nGen_
double eECALmatrix(const DetId &detId, edm::Handle< T > &hitsEB, edm::Handle< T > &hitsEE, const CaloGeometry *geo, const CaloTopology *caloTopology, int ieta, int iphi, double ebThr=-100, double eeThr=-100, double tMin=-500, double tMax=500, bool debug=false)
double eHCALmatrix(const HcalTopology *topology, const DetId &det, edm::Handle< T > &hits, int ieta, int iphi, bool includeHO=false, bool algoNew=true, double hbThr=-100, double heThr=-100, double hfThr=-100, double hoThr=-100, double tMin=-500, double tMax=500, int useRaw=0, bool debug=false)
~StudyCaloResponse() override
std::vector< bool > tr_SE15x15P