CMS 3D CMS Logo

L1TMuonDQMOffline.cc
Go to the documentation of this file.
1 
12 
13 #include <array>
14 
15 using namespace reco;
16 using namespace trigger;
17 using namespace edm;
18 using namespace std;
19 using namespace l1t;
20 
21 //__________RECO-GMT Muon Pair Helper Class____________________________
22 
24  const l1t::Muon* regMu,
26  bool useAtVtxCoord)
27  : m_muon(muon), m_regMu(regMu) {
28  if (m_regMu) {
29  if (useAtVtxCoord) {
32  } else {
33  m_gmtEta = m_regMu->eta();
34  m_gmtPhi = m_regMu->phi();
35  }
36  } else {
37  m_gmtEta = -5.;
38  m_gmtPhi = -5.;
39  }
40  if (m_muon) {
41  TrajectoryStateOnSurface trajectory = propagator.extrapolate(*m_muon);
42  if (trajectory.isValid()) {
43  m_eta = trajectory.globalPosition().eta();
44  m_phi = trajectory.globalPosition().phi();
45  } else {
46  m_eta = 999.;
47  m_phi = 999.;
48  }
49  } else {
50  m_eta = 999.;
51  m_phi = 999.;
52  }
53 };
54 
56  m_muon = muonGmtPair.m_muon;
57  m_regMu = muonGmtPair.m_regMu;
58 
59  m_gmtEta = muonGmtPair.m_gmtEta;
60  m_gmtPhi = muonGmtPair.m_gmtPhi;
61 
62  m_eta = muonGmtPair.m_eta;
63  m_phi = muonGmtPair.m_phi;
64 }
65 
66 double MuonGmtPair::dR() {
67  float dEta = m_regMu ? (m_gmtEta - m_eta) : 999.;
68  float dPhi = m_regMu ? reco::deltaPhi(m_gmtPhi, m_phi) : 999.;
69  return sqrt(dEta * dEta + dPhi * dPhi);
70 }
71 
73  if (std::abs(m_eta) < 0.83)
75  if (std::abs(m_eta) < 1.24)
77  if (std::abs(m_eta) < 2.4)
80 }
81 
83  if (type == L1TMuonDQMOffline::kResPt)
84  return (gmtPt() - pt()) / pt();
86  return (pt() - gmtPt()) / gmtPt(); // (1/gmtPt - 1/pt) / (1/pt)
88  return (gmtCharge() * charge() * pt() - gmtPt()) /
89  gmtPt(); // (gmtCharge/gmtPt - charge/pt) / (charge/pt) with gmtCharge/charge = gmtCharge*charge
90  if (type == L1TMuonDQMOffline::kResPhi)
91  return reco::deltaPhi(gmtPhi(), m_phi);
92  if (type == L1TMuonDQMOffline::kResEta)
93  return gmtEta() - m_eta;
94  if (type == L1TMuonDQMOffline::kResCh)
95  return gmtCharge() - charge();
96  return -999.;
97 }
98 
100  if (type == L1TMuonDQMOffline::kEffPt)
101  return pt();
102  if (type == L1TMuonDQMOffline::kEffPhi)
103  return m_phi;
104  if (type == L1TMuonDQMOffline::kEffEta)
105  return m_eta;
106  return -999.;
107 }
108 
109 //__________DQM_base_class_______________________________________________
111  : m_propagator(ps.getParameter<edm::ParameterSet>("muProp")),
112  m_effTypes({kEffPt, kEffPhi, kEffEta, kEffVtx}),
116  m_effStrings({{kEffPt, "pt"}, {kEffPhi, "phi"}, {kEffEta, "eta"}, {kEffVtx, "vtx"}}),
117  m_effLabelStrings({{kEffPt, "p_{T} (GeV)"}, {kEffPhi, "#phi"}, {kEffEta, "#eta"}, {kEffVtx, "# vertices"}}),
118  m_resStrings({{kResPt, "pt"},
119  {kRes1OverPt, "1overpt"},
120  {kResQOverPt, "qoverpt"},
121  {kResPhi, "phi"},
122  {kResEta, "eta"},
123  {kResCh, "charge"}}),
124  m_resLabelStrings({{kResPt, "(p_{T}^{L1} - p_{T}^{reco})/p_{T}^{reco}"},
125  {kRes1OverPt, "(p_{T}^{reco} - p_{T}^{L1})/p_{T}^{L1}"},
126  {kResQOverPt, "(q^{L1}*q^{reco}*p_{T}^{reco} - p_{T}^{L1})/p_{T}^{L1}"},
127  {kResPhi, "#phi_{L1} - #phi_{reco}"},
128  {kResEta, "#eta_{L1} - #eta_{reco}"},
129  {kResCh, "charge^{L1} - charge^{reco}"}}),
130  m_etaStrings({{kEtaRegionAll, "etaMin0_etaMax2p4"},
131  {kEtaRegionBmtf, "etaMin0_etaMax0p83"},
132  {kEtaRegionOmtf, "etaMin0p83_etaMax1p24"},
133  {kEtaRegionEmtf, "etaMin1p24_etaMax2p4"}}),
135  {{kQualAll, "qualAll"}, {kQualOpen, "qualOpen"}, {kQualDouble, "qualDouble"}, {kQualSingle, "qualSingle"}}),
136  m_verbose(ps.getUntrackedParameter<bool>("verbose")),
137  m_HistFolder(ps.getUntrackedParameter<string>("histFolder")),
138  m_TagPtCut(ps.getUntrackedParameter<double>("tagPtCut")),
139  m_recoToL1PtCutFactor(ps.getUntrackedParameter<double>("recoToL1PtCutFactor")),
140  m_cutsVPSet(ps.getUntrackedParameter<std::vector<edm::ParameterSet>>("cuts")),
141  m_MuonInputTag(consumes<reco::MuonCollection>(ps.getUntrackedParameter<InputTag>("muonInputTag"))),
142  m_GmtInputTag(consumes<l1t::MuonBxCollection>(ps.getUntrackedParameter<InputTag>("gmtInputTag"))),
143  m_VtxInputTag(consumes<VertexCollection>(ps.getUntrackedParameter<InputTag>("vtxInputTag"))),
144  m_BsInputTag(consumes<BeamSpot>(ps.getUntrackedParameter<InputTag>("bsInputTag"))),
145  m_trigInputTag(consumes<trigger::TriggerEvent>(ps.getUntrackedParameter<InputTag>("trigInputTag"))),
146  m_trigProcess(ps.getUntrackedParameter<string>("trigProcess")),
147  m_trigProcess_token(consumes<edm::TriggerResults>(ps.getUntrackedParameter<InputTag>("trigProcess_token"))),
148  m_trigNames(ps.getUntrackedParameter<vector<string>>("triggerNames")),
149  m_effVsPtBins(ps.getUntrackedParameter<std::vector<double>>("efficiencyVsPtBins")),
150  m_effVsPhiBins(ps.getUntrackedParameter<std::vector<double>>("efficiencyVsPhiBins")),
151  m_effVsEtaBins(ps.getUntrackedParameter<std::vector<double>>("efficiencyVsEtaBins")),
152  m_effVsVtxBins(ps.getUntrackedParameter<std::vector<double>>("efficiencyVsVtxBins")),
153  m_useAtVtxCoord(ps.getUntrackedParameter<bool>("useL1AtVtxCoord")),
154  m_maxGmtMuonDR(0.3),
155  m_minTagProbeDR(0.5),
156  m_maxHltMuonDR(0.1) {
157  if (m_verbose)
158  cout << "[L1TMuonDQMOffline:] ____________ Storage initialization ____________ " << endl;
159 
160  for (const auto cutsPSet : m_cutsVPSet) {
161  const auto qCut = cutsPSet.getUntrackedParameter<int>("qualCut");
162  QualLevel qLevel = kQualAll;
163  if (qCut > 11) {
164  qLevel = kQualSingle;
165  } else if (qCut > 7) {
166  qLevel = kQualDouble;
167  } else if (qCut > 3) {
168  qLevel = kQualOpen;
169  }
170  m_cuts.emplace_back(std::make_pair(cutsPSet.getUntrackedParameter<int>("ptCut"), qLevel));
171  }
172 }
173 
174 //_____________________________________________________________________
176 //----------------------------------------------------------------------
178  if (m_verbose)
179  cout << "[L1TMuonDQMOffline:] Called beginRun." << endl;
180  bool changed = true;
181  m_hltConfig.init(run, iSetup, m_trigProcess, changed);
182  m_propagator.init(iSetup);
183 }
184 
185 //_____________________________________________________________________
187  //book histos
188  bookControlHistos(ibooker);
189  bookEfficiencyHistos(ibooker);
190  bookResolutionHistos(ibooker);
191 
192  vector<string>::const_iterator trigNamesIt = m_trigNames.begin();
193  vector<string>::const_iterator trigNamesEnd = m_trigNames.end();
194 
195  for (; trigNamesIt != trigNamesEnd; ++trigNamesIt) {
196  TString tNameTmp = TString(*trigNamesIt); // use TString as it handles regex
197  TRegexp tNamePattern = TRegexp(tNameTmp, true);
198  int tIndex = -1;
199 
200  for (unsigned ipath = 0; ipath < m_hltConfig.size(); ++ipath) {
201  TString tmpName = TString(m_hltConfig.triggerName(ipath));
202  if (tmpName.Contains(tNamePattern)) {
203  tIndex = int(ipath);
204  m_trigIndices.push_back(tIndex);
205  }
206  }
207  if (tIndex < 0 && m_verbose)
208  cout << "[L1TMuonDQMOffline:] Warning: Could not find trigger " << (*trigNamesIt) << endl;
209  }
210 }
211 
212 //_____________________________________________________________________
213 void L1TMuonDQMOffline::analyze(const Event& iEvent, const EventSetup& eventSetup) {
215  iEvent.getByToken(m_MuonInputTag, muons);
217  iEvent.getByToken(m_BsInputTag, beamSpot);
219  iEvent.getByToken(m_VtxInputTag, vertex);
221  iEvent.getByToken(m_GmtInputTag, gmtCands);
222  Handle<edm::TriggerResults> trigResults;
223  iEvent.getByToken(m_trigProcess_token, trigResults);
225  iEvent.getByToken(m_trigInputTag, trigEvent);
226 
227  const auto nVtx = getNVertices(vertex);
228  const Vertex primaryVertex = getPrimaryVertex(vertex, beamSpot);
229 
230  getTightMuons(muons, primaryVertex);
231  getProbeMuons(trigResults, trigEvent); // CB add flag to run on orthogonal datasets (no T&P)
232 
233  getMuonGmtPairs(gmtCands);
234 
235  if (m_verbose)
236  cout << "[L1TMuonDQMOffline:] Computing efficiencies" << endl;
237 
238  vector<MuonGmtPair>::const_iterator muonGmtPairsIt = m_MuonGmtPairs.begin();
239  vector<MuonGmtPair>::const_iterator muonGmtPairsEnd = m_MuonGmtPairs.end();
240 
241  // To fill once for global eta and once for TF eta region of the L1T muon.
242  // The second entry is a placeholder and will be replaced by the TF eta region of the L1T muon.
243  std::array<EtaRegion, 2> regsToFill{{kEtaRegionAll, kEtaRegionAll}};
244 
245  for (; muonGmtPairsIt != muonGmtPairsEnd; ++muonGmtPairsIt) {
246  // Fill the resolution histograms
247  if ((muonGmtPairsIt->etaRegion() != kEtaRegionOut) && (muonGmtPairsIt->gmtPt() > 0)) {
248  regsToFill[1] = muonGmtPairsIt->etaRegion();
250  for (const auto var : m_resTypes) {
251  const auto varToFill = muonGmtPairsIt->getDeltaVar(var);
252  std::get<0>(histoKeyRes) = var;
253  // Fill for the global eta and for TF eta region that the probe muon is in
254  for (const auto regToFill : regsToFill) {
255  std::get<1>(histoKeyRes) = regToFill;
256  for (const auto qualLevel : m_qualLevelsRes) {
257  // This assumes that the qualLevel enum has increasing qualities
258  // HW quality levels can be 0, 4, 8, or 12
259  int qualCut = qualLevel * 4;
260  if (muonGmtPairsIt->gmtQual() >= qualCut) {
261  std::get<2>(histoKeyRes) = qualLevel;
262  m_ResolutionHistos[histoKeyRes]->Fill(varToFill);
263  }
264  }
265  }
266  }
267  }
268 
269  // Fill the efficiency numerator and denominator histograms
270  if (muonGmtPairsIt->etaRegion() != kEtaRegionOut) {
271  unsigned int cutsCounter = 0;
272  for (const auto cut : m_cuts) {
273  const auto gmtPtCut = cut.first;
274  const auto qualLevel = cut.second;
275  const bool gmtAboveCut = (muonGmtPairsIt->gmtPt() > gmtPtCut);
276 
277  // default keys
278  m_histoKeyEffDenVarType histoKeyEffDenVar = {kEffPt, gmtPtCut, kEtaRegionAll};
279  m_histoKeyEffNumVarType histoKeyEffNumVar = {kEffPt, gmtPtCut, kEtaRegionAll, qualLevel};
280 
281  regsToFill[1] = muonGmtPairsIt->etaRegion();
282  for (const auto var : m_effTypes) {
283  if (var != kEffPt) {
284  if (muonGmtPairsIt->pt() < m_recoToL1PtCutFactor * gmtPtCut)
285  break; // efficiency at plateau
286  }
287  double varToFill;
288  if (var == kEffVtx) {
289  varToFill = static_cast<double>(nVtx);
290  } else {
291  varToFill = muonGmtPairsIt->getVar(var);
292  }
293  // Fill denominators
294  if (var == kEffEta) {
295  m_EfficiencyDenEtaHistos[gmtPtCut]->Fill(varToFill);
296  } else {
297  std::get<0>(histoKeyEffDenVar) = var;
298  // Fill for the global eta and for TF eta region that the probe muon is in
299  for (const auto regToFill : regsToFill) {
300  if (var == kEffPt) {
301  if (cutsCounter == 0) {
302  m_EfficiencyDenPtHistos[regToFill]->Fill(varToFill);
303  }
304  } else {
305  std::get<2>(histoKeyEffDenVar) = regToFill;
306  m_EfficiencyDenVarHistos[histoKeyEffDenVar]->Fill(varToFill);
307  }
308  }
309  }
310  // Fill numerators
311  std::get<0>(histoKeyEffNumVar) = var;
312  // This assumes that the qualLevel enum has increasing qualities
313  if (gmtAboveCut && muonGmtPairsIt->gmtQual() >= qualLevel * 4) {
314  if (var == kEffEta) {
315  m_histoKeyEffNumEtaType histoKeyEffNumEta = {gmtPtCut, qualLevel};
316  m_EfficiencyNumEtaHistos[histoKeyEffNumEta]->Fill(varToFill);
317  } else {
318  std::get<3>(histoKeyEffNumVar) = qualLevel;
319  // Fill for the global eta and for TF eta region that the probe muon is in
320  for (const auto regToFill : regsToFill) {
321  std::get<2>(histoKeyEffNumVar) = regToFill;
322  m_EfficiencyNumVarHistos[histoKeyEffNumVar]->Fill(varToFill);
323  }
324  }
325  }
326  }
327  ++cutsCounter;
328  }
329  }
330  }
331 
332  if (m_verbose)
333  cout << "[L1TMuonDQMOffline:] Computation finished" << endl;
334 }
335 
336 //_____________________________________________________________________
338  if (m_verbose)
339  cout << "[L1TMuonDQMOffline:] Booking Control Plot Histos" << endl;
340 
341  ibooker.setCurrentFolder(m_HistFolder + "/control_variables");
342 
343  m_ControlHistos[kCtrlMuonGmtDeltaR] = ibooker.book1D("MuonGmtDeltaR", "MuonGmtDeltaR; #DeltaR", 50, 0., 0.5);
345  ibooker.book2D("NTightVsAll", "NTightVsAll; # muons; # tight muons", 20, -0.5, 19.5, 16, -0.5, 15.5);
347  ibooker.book2D("NProbesVsTight", "NProbesVsTight; # tight muons; # probe muons", 8, -0.5, 7.5, 8, -0.5, 7.5);
348 
349  m_ControlHistos[kCtrlTagPt] = ibooker.book1D("TagMuonPt", "TagMuonPt; p_{T}", 50, 0., 100.);
350  m_ControlHistos[kCtrlTagPhi] = ibooker.book1D("TagMuonPhi", "TagMuonPhi; #phi", 66, -3.3, 3.3);
351  m_ControlHistos[kCtrlTagEta] = ibooker.book1D("TagMuonEta", "TagMuonEta; #eta", 50, -2.5, 2.5);
352 
353  m_ControlHistos[kCtrlProbePt] = ibooker.book1D("ProbeMuonPt", "ProbeMuonPt; p_{T}", 50, 0., 100.);
354  m_ControlHistos[kCtrlProbePhi] = ibooker.book1D("ProbeMuonPhi", "ProbeMuonPhi; #phi", 66, -3.3, 3.3);
355  m_ControlHistos[kCtrlProbeEta] = ibooker.book1D("ProbeMuonEta", "ProbeMuonEta; #eta", 50, -2.5, 2.5);
356 
358  ibooker.book1D("TagMuonProbeMuonDeltaR", "TagMuonProbeMuonDeltaR; #DeltaR", 50, 0., 5.0);
359  m_ControlHistos[kCtrlTagHltDr] = ibooker.book1D("TagMuonHltDeltaR", "TagMuonHltDeltaR;#DeltaR", 55, 0., 0.11);
360 }
361 
362 //_____________________________________________________________________
364  ibooker.setCurrentFolder(m_HistFolder + "/numerators_and_denominators");
365 
366  for (const auto var : m_effTypes) {
367  auto histBins = getHistBinsEff(var);
368  // histograms for eta variable get a special treatment
369  if (var == kEffEta) {
370  for (const auto cut : m_cuts) {
371  const auto gmtPtCut = cut.first;
372  const auto qualLevel = cut.second;
373  std::string name = "effDen_" + m_effStrings[var] + "_" + std::to_string(gmtPtCut);
374  m_EfficiencyDenEtaHistos[gmtPtCut] =
375  ibooker.book1D(name, name + ";" + m_effLabelStrings[var], histBins.size() - 1, &histBins[0]);
376  name = "effNum_" + m_effStrings[var] + "_" + std::to_string(gmtPtCut) + "_" + m_qualStrings[qualLevel];
377  m_histoKeyEffNumEtaType histoKeyEffNumEta = {gmtPtCut, qualLevel};
378  m_EfficiencyNumEtaHistos[histoKeyEffNumEta] =
379  ibooker.book1D(name, name + ";" + m_effLabelStrings[var], histBins.size() - 1, &histBins[0]);
380  }
381  } else {
382  for (const auto etaReg : m_etaRegions) {
383  // denominator histograms for pt variable get a special treatment
384  if (var == kEffPt) {
385  std::string name = "effDen_" + m_effStrings[var] + "_" + m_etaStrings[etaReg];
386  m_EfficiencyDenPtHistos[etaReg] =
387  ibooker.book1D(name, name + ";" + m_effLabelStrings[var], histBins.size() - 1, &histBins[0]);
388  } else {
389  for (const auto cut : m_cuts) {
390  const int gmtPtCut = cut.first;
391  std::string name =
392  "effDen_" + m_effStrings[var] + "_" + std::to_string(gmtPtCut) + "_" + m_etaStrings[etaReg];
393  m_histoKeyEffDenVarType histoKeyEffDenVar = {var, gmtPtCut, etaReg};
394  m_EfficiencyDenVarHistos[histoKeyEffDenVar] =
395  ibooker.book1D(name, name + ";" + m_effLabelStrings[var], histBins.size() - 1, &histBins[0]);
396  }
397  }
398  for (const auto cut : m_cuts) {
399  const auto gmtPtCut = cut.first;
400  const auto qualLevel = cut.second;
401  std::string name = "effNum_" + m_effStrings[var] + "_" + std::to_string(gmtPtCut) + "_" +
402  m_etaStrings[etaReg] + "_" + m_qualStrings[qualLevel];
403  m_histoKeyEffNumVarType histoKeyEffNum = {var, gmtPtCut, etaReg, qualLevel};
404  m_EfficiencyNumVarHistos[histoKeyEffNum] =
405  ibooker.book1D(name, name + ";" + m_effLabelStrings[var], histBins.size() - 1, &histBins[0]);
406  }
407  }
408  }
409  }
410 }
411 
413  if (m_verbose)
414  cout << "[L1TMuonOffline:] Booking Resolution Plot Histos" << endl;
415  ibooker.setCurrentFolder(m_HistFolder + "/resolution");
416 
417  for (const auto var : m_resTypes) {
418  auto nbins = std::get<0>(getHistBinsRes(var));
419  auto xmin = std::get<1>(getHistBinsRes(var));
420  auto xmax = std::get<2>(getHistBinsRes(var));
421  for (const auto etaReg : m_etaRegions) {
422  for (const auto qualLevel : m_qualLevelsRes) {
423  m_histoKeyResType histoKeyRes = {var, etaReg, qualLevel};
424  std::string name =
425  "resolution_" + m_resStrings[var] + "_" + m_etaStrings[etaReg] + "_" + m_qualStrings[qualLevel];
426  m_ResolutionHistos[histoKeyRes] = ibooker.book1D(name, name + ";" + m_resLabelStrings[var], nbins, xmin, xmax);
427  }
428  }
429  }
430 }
431 
432 //_____________________________________________________________________
434  unsigned int nVtx = 0;
435 
436  if (vertex.isValid()) {
437  for (const auto vertexIt : *vertex) {
438  if (vertexIt.isValid() && !vertexIt.isFake()) {
439  ++nVtx;
440  }
441  }
442  }
443  return nVtx;
444 }
445 
446 //_____________________________________________________________________
448  Vertex::Point posVtx;
449  Vertex::Error errVtx;
450 
451  bool hasPrimaryVertex = false;
452 
453  if (vertex.isValid()) {
454  vector<Vertex>::const_iterator vertexIt = vertex->begin();
455  vector<Vertex>::const_iterator vertexEnd = vertex->end();
456 
457  for (; vertexIt != vertexEnd; ++vertexIt) {
458  if (vertexIt->isValid() && !vertexIt->isFake()) {
459  posVtx = vertexIt->position();
460  errVtx = vertexIt->error();
461  hasPrimaryVertex = true;
462  break;
463  }
464  }
465  }
466 
467  if (!hasPrimaryVertex) {
468  posVtx = beamSpot->position();
469  errVtx(0, 0) = beamSpot->BeamWidthX();
470  errVtx(1, 1) = beamSpot->BeamWidthY();
471  errVtx(2, 2) = beamSpot->sigmaZ();
472  }
473  const Vertex primaryVertex(posVtx, errVtx);
474  return primaryVertex;
475 }
476 
477 //_____________________________________________________________________
479  if (m_verbose)
480  cout << "[L1TMuonDQMOffline:] Getting tight muons" << endl;
481  m_TightMuons.clear();
482  MuonCollection::const_iterator muonIt = muons->begin();
483  MuonCollection::const_iterator muonEnd = muons->end();
484 
485  for (; muonIt != muonEnd; ++muonIt) {
486  if (muon::isTightMuon((*muonIt), vertex)) {
487  m_TightMuons.push_back(&(*muonIt));
488  }
489  }
490  m_ControlHistos[kCtrlNTightVsAll]->Fill(muons->size(), m_TightMuons.size());
491 }
492 
493 //_____________________________________________________________________
496  if (m_verbose)
497  cout << "[L1TMuonDQMOffline:] getting probe muons" << endl;
498  m_ProbeMuons.clear();
499  std::vector<const reco::Muon*> tagMuonsInHist;
500 
501  tagMuonsInHist.clear();
502 
503  vector<const reco::Muon*>::const_iterator probeCandIt = m_TightMuons.begin();
504  vector<const reco::Muon*>::const_iterator tightMuonsEnd = m_TightMuons.end();
505 
506  for (; probeCandIt != tightMuonsEnd; ++probeCandIt) {
507  bool isProbe = false;
508  vector<const reco::Muon*>::const_iterator tagCandIt = m_TightMuons.begin();
509  float deltar = 0.;
510 
511  for (; tagCandIt != tightMuonsEnd; ++tagCandIt) {
512  bool tagMuonAlreadyInHist = false;
513  bool tagHasTrig = false;
514  float eta = (*tagCandIt)->eta();
515  float phi = (*tagCandIt)->phi();
516  float pt = (*tagCandIt)->pt();
517  float dEta = eta - (*probeCandIt)->eta();
518  float dPhi = phi - (*probeCandIt)->phi();
519  deltar = sqrt(dEta * dEta + dPhi * dPhi);
520 
521  if ((*tagCandIt) == (*probeCandIt) || deltar < m_minTagProbeDR)
522  continue; // CB has a little bias for closed-by muons
523  auto matchHltDeltaR = matchHlt(trigEvent, (*tagCandIt));
524  tagHasTrig = (matchHltDeltaR < m_maxHltMuonDR) && (pt > m_TagPtCut);
525  isProbe |= tagHasTrig;
526  if (tagHasTrig) {
527  if (std::distance(m_TightMuons.begin(), m_TightMuons.end()) > 2) {
528  for (vector<const reco::Muon*>::const_iterator tagMuonsInHistIt = tagMuonsInHist.begin();
529  tagMuonsInHistIt != tagMuonsInHist.end();
530  ++tagMuonsInHistIt) {
531  if ((*tagCandIt) == (*tagMuonsInHistIt)) {
532  tagMuonAlreadyInHist = true;
533  break;
534  }
535  }
536  if (tagMuonAlreadyInHist == false)
537  tagMuonsInHist.push_back((*tagCandIt));
538  }
539  if (tagMuonAlreadyInHist == false) {
540  m_ControlHistos[kCtrlTagEta]->Fill(eta);
541  m_ControlHistos[kCtrlTagPhi]->Fill(phi);
542  m_ControlHistos[kCtrlTagPt]->Fill(pt);
543  m_ControlHistos[kCtrlTagProbeDr]->Fill(deltar);
544  m_ControlHistos[kCtrlTagHltDr]->Fill(matchHltDeltaR);
545  }
546  }
547  }
548  if (isProbe)
549  m_ProbeMuons.push_back((*probeCandIt));
550  }
552 }
553 
554 //_____________________________________________________________________
556  m_MuonGmtPairs.clear();
557  if (m_verbose)
558  cout << "[L1TMuonDQMOffline:] Getting muon GMT pairs" << endl;
559 
560  vector<const reco::Muon*>::const_iterator probeMuIt = m_ProbeMuons.begin();
561  vector<const reco::Muon*>::const_iterator probeMuEnd = m_ProbeMuons.end();
562 
564  l1t::MuonBxCollection::const_iterator gmtEnd = gmtCands->end(0);
565 
566  for (; probeMuIt != probeMuEnd; ++probeMuIt) {
567  MuonGmtPair pairBestCand((*probeMuIt), nullptr, m_propagator, m_useAtVtxCoord);
568 
569  // Fill the control histograms with the probe muon kinematic variables used
573 
574  gmtIt = gmtCands->begin(0); // use only on L1T muons from BX 0
575 
576  for (; gmtIt != gmtEnd; ++gmtIt) {
577  MuonGmtPair pairTmpCand((*probeMuIt), &(*gmtIt), m_propagator, m_useAtVtxCoord);
578 
579  if ((pairTmpCand.dR() < m_maxGmtMuonDR) && (pairTmpCand.dR() < pairBestCand.dR())) {
580  pairBestCand = pairTmpCand;
581  }
582  }
583  m_MuonGmtPairs.push_back(pairBestCand);
584  m_ControlHistos[kCtrlMuonGmtDeltaR]->Fill(pairBestCand.dR());
585  }
586 }
587 
588 //_____________________________________________________________________
590  double matchDeltaR = 9999;
591 
592  TriggerObjectCollection trigObjs = triggerEvent->getObjects();
593 
594  vector<int>::const_iterator trigIndexIt = m_trigIndices.begin();
595  vector<int>::const_iterator trigIndexEnd = m_trigIndices.end();
596 
597  for (; trigIndexIt != trigIndexEnd; ++trigIndexIt) {
598  const vector<string> moduleLabels(m_hltConfig.moduleLabels(*trigIndexIt));
599  const unsigned moduleIndex = m_hltConfig.size((*trigIndexIt)) - 2;
600  const unsigned hltFilterIndex = triggerEvent->filterIndex(InputTag(moduleLabels[moduleIndex], "", m_trigProcess));
601 
602  if (hltFilterIndex < triggerEvent->sizeFilters()) {
603  const Keys triggerKeys(triggerEvent->filterKeys(hltFilterIndex));
604  const Vids triggerVids(triggerEvent->filterIds(hltFilterIndex));
605  const unsigned nTriggers = triggerVids.size();
606  for (size_t iTrig = 0; iTrig < nTriggers; ++iTrig) {
607  const TriggerObject trigObject = trigObjs[triggerKeys[iTrig]];
608  double dRtmp = deltaR((*mu), trigObject);
609  if (dRtmp < matchDeltaR)
610  matchDeltaR = dRtmp;
611  }
612  }
613  }
614  return matchDeltaR;
615 }
616 
618  if (eff == kEffPt) {
619  std::vector<float> effVsPtBins(m_effVsPtBins.begin(), m_effVsPtBins.end());
620  return effVsPtBins;
621  }
622  if (eff == kEffPhi) {
623  std::vector<float> effVsPhiBins(m_effVsPhiBins.begin(), m_effVsPhiBins.end());
624  return effVsPhiBins;
625  }
626  if (eff == kEffEta) {
627  std::vector<float> effVsEtaBins(m_effVsEtaBins.begin(), m_effVsEtaBins.end());
628  return effVsEtaBins;
629  }
630  if (eff == kEffVtx) {
631  std::vector<float> effVsVtxBins(m_effVsVtxBins.begin(), m_effVsVtxBins.end());
632  return effVsVtxBins;
633  }
634  return {0., 1.};
635 }
636 
637 std::tuple<int, double, double> L1TMuonDQMOffline::getHistBinsRes(ResType res) {
638  if (res == kResPt)
639  return {50, -2., 2.};
640  if (res == kRes1OverPt)
641  return {50, -2., 2.};
642  if (res == kResQOverPt)
643  return {50, -2., 2.};
644  if (res == kResPhi)
645  return {96, -0.2, 0.2};
646  if (res == kResEta)
647  return {100, -0.1, 0.1};
648  if (res == kResCh)
649  return {5, -2, 3};
650  return {1, 0, 1};
651 }
652 
653 //define this as a plug-in
std::map< EffType, std::string > m_effStrings
unsigned int size() const
number of trigger paths in trigger table
constexpr double deltaPhi(double phi1, double phi2)
Definition: deltaPhi.h:26
const_iterator end(int bx) const
type
Definition: HCALResponse.h:21
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX)
Definition: DQMStore.cc:239
TrajectoryStateOnSurface extrapolate(const reco::Track &tk) const
edm::EDGetTokenT< reco::BeamSpot > m_BsInputTag
double eta() const final
momentum pseudorapidity
edm::EDGetTokenT< reco::MuonCollection > m_MuonInputTag
const std::string & triggerName(unsigned int triggerIndex) const
std::vector< double > m_effVsVtxBins
std::map< ResType, std::string > m_resLabelStrings
std::map< EtaRegion, std::string > m_etaStrings
edm::EDGetTokenT< edm::TriggerResults > m_trigProcess_token
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
double gmtPt() const
void analyze(const edm::Event &e, const edm::EventSetup &c) override
double getDeltaVar(const L1TMuonDQMOffline::ResType) const
std::map< std::tuple< ResType, EtaRegion, QualLevel >, MonitorElement * > m_ResolutionHistos
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:418
const std::vector< EtaRegion > m_etaRegions
const Keys & filterKeys(trigger::size_type index) const
Definition: TriggerEvent.h:118
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
trigger::size_type filterIndex(const edm::InputTag &filterTag) const
find index of filter in data-member vector from filter tag
Definition: TriggerEvent.h:132
std::vector< double > m_effVsPhiBins
math::Error< dimension >::type Error
covariance error matrix (3x3)
Definition: Vertex.h:43
GlobalPoint globalPosition() const
double getVar(const L1TMuonDQMOffline::EffType) const
std::map< EtaRegion, MonitorElement * > m_EfficiencyDenPtHistos
std::tuple< EffType, int, EtaRegion, QualLevel > m_histoKeyEffNumVarType
delete x;
Definition: CaloConfig.h:22
std::string m_HistFolder
std::pair< int, QualLevel > m_histoKeyEffNumEtaType
Definition: Electron.h:6
std::tuple< ResType, EtaRegion, QualLevel > m_histoKeyResType
std::vector< const reco::Muon * > m_ProbeMuons
std::vector< float > getHistBinsEff(EffType eff)
void getProbeMuons(edm::Handle< edm::TriggerResults > &trigResults, edm::Handle< trigger::TriggerEvent > &trigEvent)
const unsigned int getNVertices(edm::Handle< reco::VertexCollection > &vertex)
~L1TMuonDQMOffline() override
std::vector< std::string > m_trigNames
virtual void bookControlHistos(DQMStore::IBooker &)
std::map< QualLevel, std::string > m_qualStrings
double matchHlt(edm::Handle< trigger::TriggerEvent > &triggerEvent, const reco::Muon *mu)
std::string m_trigProcess
int gmtCharge() const
std::vector< T >::const_iterator const_iterator
Definition: BXVector.h:18
const l1t::Muon * m_regMu
const Vids & filterIds(trigger::size_type index) const
Definition: TriggerEvent.h:117
std::vector< edm::ParameterSet > m_cutsVPSet
int iEvent
Definition: GenABIO.cc:224
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
Propagate an object (usually a track) to the second muon station. Support for other muon stations wil...
std::map< EffType, std::string > m_effLabelStrings
std::tuple< int, double, double > getHistBinsRes(ResType res)
edm::EDGetTokenT< l1t::MuonBxCollection > m_GmtInputTag
const TriggerObjectCollection & getObjects() const
Definition: TriggerEvent.h:101
std::vector< double > m_effVsPtBins
void bookHistograms(DQMStore::IBooker &ibooker, const edm::Run &run, const edm::EventSetup &iSetup) override
double gmtPhi() const
T sqrt(T t)
Definition: SSEVec.h:19
std::tuple< EffType, int, EtaRegion > m_histoKeyEffDenVarType
std::map< std::pair< int, QualLevel >, MonitorElement * > m_EfficiencyNumEtaHistos
const reco::Muon * m_muon
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
std::map< int, MonitorElement * > m_EfficiencyDenEtaHistos
std::vector< std::pair< int, QualLevel > > m_cuts
math::XYZPoint Point
point in the space
Definition: Vertex.h:39
double etaAtVtx() const
Definition: Muon.h:93
double BeamWidthX() const
beam width X
Definition: BeamSpot.h:82
const std::vector< EffType > m_effTypes
int charge() const
const std::vector< QualLevel > m_qualLevelsRes
std::vector< MuonGmtPair > m_MuonGmtPairs
bool isValid() const
Definition: HandleBase.h:70
std::map< std::tuple< EffType, int, EtaRegion >, MonitorElement * > m_EfficiencyDenVarHistos
Definition: Muon.h:21
const std::vector< std::string > & moduleLabels(unsigned int trigger) const
label(s) of module(s) on a trigger path
std::vector< TriggerObject > TriggerObjectCollection
collection of trigger physics objects (e.g., all isolated muons)
Definition: TriggerObject.h:75
L1TMuonDQMOffline(const edm::ParameterSet &ps)
void getMuonGmtPairs(edm::Handle< l1t::MuonBxCollection > &gmtCands)
std::map< ResType, std::string > m_resStrings
Definition: deltar.py:1
std::vector< size_type > Keys
bool init(const edm::Run &iRun, const edm::EventSetup &iSetup, const std::string &processName, bool &changed)
d&#39;tor
double sigmaZ() const
sigma z
Definition: BeamSpot.h:76
double BeamWidthY() const
beam width Y
Definition: BeamSpot.h:84
virtual void bookResolutionHistos(DQMStore::IBooker &ibooker)
HLTConfigProvider m_hltConfig
const reco::Vertex getPrimaryVertex(edm::Handle< reco::VertexCollection > &vertex, edm::Handle< reco::BeamSpot > &beamSpot)
void init(const edm::EventSetup &iSetup)
double pt() const
std::vector< double > m_effVsEtaBins
std::vector< const reco::Muon * > m_TightMuons
T eta() const
Definition: PV3DBase.h:73
fixed size matrix
HLT enums.
const std::vector< ResType > m_resTypes
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY)
Definition: DQMStore.cc:266
void dqmBeginRun(const edm::Run &run, const edm::EventSetup &iSetup) override
edm::EDGetTokenT< reco::VertexCollection > m_VtxInputTag
double gmtEta() const
edm::EDGetTokenT< trigger::TriggerEvent > m_trigInputTag
const Point & position() const
position
Definition: BeamSpot.h:59
std::map< std::tuple< EffType, int, EtaRegion, QualLevel >, MonitorElement * > m_EfficiencyNumVarHistos
PropagateToMuon m_propagator
double phiAtVtx() const
Definition: Muon.h:94
bool isTightMuon(const reco::Muon &, const reco::Vertex &)
L1TMuonDQMOffline::EtaRegion etaRegion() const
const_iterator begin(int bx) const
primaryVertex
hltOfflineBeamSpot for HLTMON
MuonGmtPair(const reco::Muon *muon, const l1t::Muon *regMu, const PropagateToMuon &propagator, bool useAtVtxCoord)
double phi() const final
momentum azimuthal angle
std::map< Control, MonitorElement * > m_ControlHistos
std::vector< int > Vids
std::vector< int > m_trigIndices
Definition: Run.h:45
virtual void bookEfficiencyHistos(DQMStore::IBooker &ibooker)
void getTightMuons(edm::Handle< reco::MuonCollection > &muons, const reco::Vertex &vertex)