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