CMS 3D CMS Logo

List of all members | Classes | Public Types | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
HLTMuonPlotter Class Reference

#include <HLTMuonPlotter.h>

Classes

struct  matchesByDescendingPt
 
struct  MatchStruct
 

Public Types

typedef dqm::legacy::DQMStore DQMStore
 
typedef dqm::legacy::MonitorElement MonitorElement
 

Public Member Functions

void analyze (const edm::Event &, const edm::EventSetup &)
 
void beginJob ()
 
void beginRun (DQMStore::IBooker &, const edm::Run &, const edm::EventSetup &)
 
 HLTMuonPlotter (const edm::ParameterSet &, std::string, const std::vector< std::string > &, const std::vector< std::string > &, const std::tuple< edm::EDGetTokenT< trigger::TriggerEventWithRefs >, edm::EDGetTokenT< reco::GenParticleCollection >, edm::EDGetTokenT< reco::MuonCollection >> &)
 
 ~HLTMuonPlotter ()
 

Static Public Member Functions

static std::tuple< edm::EDGetTokenT< trigger::TriggerEventWithRefs >, edm::EDGetTokenT< reco::GenParticleCollection >, edm::EDGetTokenT< reco::MuonCollection > > getTokens (const edm::ParameterSet &, edm::ConsumesCollector &&)
 

Private Member Functions

void analyzePath (const edm::Event &, const std::string &, const std::string &, const std::vector< MatchStruct > &, edm::Handle< trigger::TriggerEventWithRefs >)
 
void bookHist (DQMStore::IBooker &, std::string, std::string, std::string, std::string)
 
void findMatches (std::vector< MatchStruct > &, const l1t::MuonVectorRef &candsL1, const std::vector< std::vector< const reco::RecoChargedCandidate * >> &)
 

Private Attributes

double cutMaxEta_
 
double cutMinPt_
 
unsigned int cutMotherId_
 
std::vector< double > cutsDr_
 
std::map< std::string, MonitorElement * > elements_
 
std::string genMuonCut_
 
StringCutObjectSelector< reco::GenParticle > * genMuonSelector_
 
edm::EDGetTokenT< reco::GenParticleCollectiongenParticleLabel_
 
std::string hltPath_
 
std::string hltProcessName_
 
edm::EDGetTokenT< trigger::TriggerEventWithRefshltTriggerSummaryRAW_
 
L1MuonMatcherAlgo l1Matcher_
 
std::vector< std::string > moduleLabels_
 
std::vector< double > parametersEta_
 
std::vector< double > parametersPhi_
 
std::vector< double > parametersTurnOn_
 
std::string recMuonCut_
 
edm::EDGetTokenT< reco::MuonCollectionrecMuonLabel_
 
StringCutObjectSelector< reco::Muon > * recMuonSelector_
 
std::vector< std::string > stepLabels_
 

Detailed Description

Generate histograms for muon trigger efficiencies Documentation available on the CMS TWiki: https://twiki.cern.ch/twiki/bin/view/CMS/MuonHLTOfflinePerformance

Author
J. Klukas, M. Vander Donckt, J. Alcaraz

Definition at line 52 of file HLTMuonPlotter.h.

Member Typedef Documentation

◆ DQMStore

Definition at line 54 of file HLTMuonPlotter.h.

◆ MonitorElement

Definition at line 55 of file HLTMuonPlotter.h.

Constructor & Destructor Documentation

◆ HLTMuonPlotter()

HLTMuonPlotter::HLTMuonPlotter ( const edm::ParameterSet ,
std::string  ,
const std::vector< std::string > &  ,
const std::vector< std::string > &  ,
const std::tuple< edm::EDGetTokenT< trigger::TriggerEventWithRefs >, edm::EDGetTokenT< reco::GenParticleCollection >, edm::EDGetTokenT< reco::MuonCollection >> &   
)

Definition at line 27 of file HLTMuonPlotter.cc.

34  :
35 
36  l1Matcher_(pset) {
37  hltPath_ = hltPath;
38  moduleLabels_ = moduleLabels;
39  stepLabels_ = stepLabels;
40  hltProcessName_ = pset.getParameter<string>("hltProcessName");
41 
42  cutsDr_ = pset.getParameter<vector<double>>("cutsDr");
43 
44  parametersEta_ = pset.getParameter<vector<double>>("parametersEta");
45  parametersPhi_ = pset.getParameter<vector<double>>("parametersPhi");
46  parametersTurnOn_ = pset.getParameter<vector<double>>("parametersTurnOn");
47 
48  genMuonCut_ = pset.getParameter<string>("genMuonCut");
49  recMuonCut_ = pset.getParameter<string>("recMuonCut");
50 
51  genMuonSelector_ = nullptr;
52  recMuonSelector_ = nullptr;
53 
54  // set tokens
55  hltTriggerSummaryRAW_ = std::get<0>(tokens);
56  genParticleLabel_ = std::get<1>(tokens);
57  recMuonLabel_ = std::get<2>(tokens);
58 }

References cutsDr_, genMuonCut_, genMuonSelector_, genParticleLabel_, TriggerAnalyzer::hltPath, hltPath_, hltProcessName_, hltTriggerSummaryRAW_, moduleLabels_, parametersEta_, parametersPhi_, parametersTurnOn_, muonDTDigis_cfi::pset, recMuonCut_, recMuonLabel_, recMuonSelector_, and stepLabels_.

◆ ~HLTMuonPlotter()

HLTMuonPlotter::~HLTMuonPlotter ( )
inline

Definition at line 65 of file HLTMuonPlotter.h.

65  {
66  delete genMuonSelector_;
67  delete recMuonSelector_;
68  }

References genMuonSelector_, and recMuonSelector_.

Member Function Documentation

◆ analyze()

void HLTMuonPlotter::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)

Definition at line 107 of file HLTMuonPlotter.cc.

107  {
108  LogTrace("HLTMuonVal") << "In HLTMuonPlotter::analyze, "
109  << "Event: " << iEvent.id();
110 
111  // cout << hltPath_ << endl;
112  // for (size_t i = 0; i < moduleLabels_.size(); i++)
113  // cout << " " << moduleLabels_[i] << endl;
114 
115  Handle<TriggerEventWithRefs> rawTriggerEvent;
116  Handle<MuonCollection> recMuons;
118 
119  iEvent.getByToken(hltTriggerSummaryRAW_, rawTriggerEvent);
120  if (rawTriggerEvent.failedToGet()) {
121  LogError("HLTMuonVal") << "No trigger summary found";
122  return;
123  }
124  iEvent.getByToken(recMuonLabel_, recMuons);
126 
127  vector<string> sources;
128  if (genParticles.isValid())
129  sources.push_back("gen");
130  if (recMuons.isValid())
131  sources.push_back("rec");
132 
133  for (size_t sourceNo = 0; sourceNo < sources.size(); sourceNo++) {
134  string source = sources[sourceNo];
135 
136  // If this is the first event, initialize selectors
137  if (!genMuonSelector_)
139  if (!recMuonSelector_)
141 
142  // Make each good gen/rec muon into the base cand for a MatchStruct
143  vector<MatchStruct> matches;
144  if (source == "gen" && genParticles.isValid())
145  for (size_t i = 0; i < genParticles->size(); i++)
146  if ((*genMuonSelector_)(genParticles->at(i)))
147  matches.push_back(MatchStruct(&genParticles->at(i)));
148  if (source == "rec" && recMuons.isValid())
149  for (size_t i = 0; i < recMuons->size(); i++)
150  if ((*recMuonSelector_)(recMuons->at(i)))
151  matches.push_back(MatchStruct(&recMuons->at(i)));
152 
153  // Sort the MatchStructs by pT for later filling of turn-on curve
154  sort(matches.begin(), matches.end(), matchesByDescendingPt());
155 
156  const bool isDoubleMuonPath = (hltPath_.find("Double") != string::npos);
157  const size_t nFilters = moduleLabels_.size();
158  const size_t nSteps = stepLabels_.size();
159  const size_t nStepsHlt = nSteps - 2;
160  const int nObjectsToPassPath = (isDoubleMuonPath) ? 2 : 1;
161  l1t::MuonVectorRef candsL1;
162  vector<vector<RecoChargedCandidateRef>> refsHlt(nStepsHlt);
163  vector<vector<const RecoChargedCandidate *>> candsHlt(nStepsHlt);
164 
165  for (size_t i = 0; i < nFilters; i++) {
166  const int hltStep = i - 1;
168  size_t iFilter = rawTriggerEvent->filterIndex(tag);
169  if (iFilter < rawTriggerEvent->size()) {
170  if (i == 0)
171  rawTriggerEvent->getObjects(iFilter, TriggerL1Mu, candsL1);
172  else
173  rawTriggerEvent->getObjects(iFilter, TriggerMuon, refsHlt[hltStep]);
174  } else
175  LogTrace("HLTMuonVal") << "No collection with label " << tag;
176  }
177  for (size_t i = 0; i < nStepsHlt; i++)
178  for (size_t j = 0; j < refsHlt[i].size(); j++)
179  if (refsHlt[i][j].isAvailable()) {
180  candsHlt[i].push_back(&*refsHlt[i][j]);
181  } else {
182  LogWarning("HLTMuonPlotter") << "Ref refsHlt[i][j]: product not available " << i << " " << j;
183  }
184 
185  // Add trigger objects to the MatchStructs
186  findMatches(matches, candsL1, candsHlt);
187 
188  vector<size_t> matchesInEtaRange;
189  vector<bool> hasMatch(matches.size(), true);
190 
191  for (size_t step = 0; step < nSteps; step++) {
192  size_t hltStep = (step >= 2) ? step - 2 : 0;
193  if (nSteps == 6)
194  hltStep = hltStep - 1; // case of the tracker muon (it has no L2)
195  size_t level = 0;
196  if ((stepLabels_[step].find("L3TkIso") != string::npos) || (stepLabels_[step].find("TkTkIso") != string::npos))
197  level = 6;
198  else if ((stepLabels_[step].find("L3HcalIso") != string::npos) ||
199  (stepLabels_[step].find("TkEcalIso") != string::npos))
200  level = 5;
201  else if ((stepLabels_[step].find("L3EcalIso") != string::npos) ||
202  (stepLabels_[step].find("TkEcalIso") != string::npos))
203  level = 4;
204  else if ((stepLabels_[step].find("L3") != string::npos) || (stepLabels_[step].find("Tk") != string::npos))
205  level = 3;
206  else if (stepLabels_[step].find("L2") != string::npos)
207  level = 2;
208  else if (stepLabels_[step].find("L1") != string::npos)
209  level = 1;
210 
211  for (size_t j = 0; j < matches.size(); j++) {
212  if (level == 0) {
213  if (fabs(matches[j].candBase->eta()) < cutMaxEta_)
214  matchesInEtaRange.push_back(j);
215  } else if (level == 1) {
216  if (matches[j].candL1 == nullptr)
217  hasMatch[j] = false;
218  } else if (level >= 2) {
219  if (matches[j].candHlt[hltStep] == nullptr)
220  hasMatch[j] = false;
221  else if (!hasMatch[j]) {
222  LogTrace("HLTMuonVal") << "Match found for HLT step " << hltStep << " of " << nStepsHlt
223  << " without previous match!";
224  break;
225  }
226  }
227  }
228 
229  if (std::count(hasMatch.begin(), hasMatch.end(), true) < nObjectsToPassPath)
230  break;
231 
232  string pre = source + "Pass";
233  string post = "_" + stepLabels_[step];
234 
235  for (size_t j = 0; j < matches.size(); j++) {
236  float pt = matches[j].candBase->pt();
237  float eta = matches[j].candBase->eta();
238  float phi = matches[j].candBase->phi();
239  if (hasMatch[j]) {
240  if (!matchesInEtaRange.empty() && j == matchesInEtaRange[0])
241  elements_[pre + "MaxPt1" + post]->Fill(pt);
242  if (matchesInEtaRange.size() >= 2 && j == matchesInEtaRange[1])
243  elements_[pre + "MaxPt2" + post]->Fill(pt);
244  if (pt > cutMinPt_) {
245  elements_[pre + "Eta" + post]->Fill(eta);
246  if (fabs(eta) < cutMaxEta_)
247  elements_[pre + "Phi" + post]->Fill(phi);
248  }
249  }
250  }
251  }
252 
253  } // End loop over sources
254 }

References submitPVResolutionJobs::count, cutMaxEta_, cutMinPt_, elements_, PVValHelper::eta, edm::HandleBase::failedToGet(), HcalObjRepresent::Fill(), trigger::TriggerEventWithRefs::filterIndex(), spr::find(), findMatches(), genMuonCut_, genMuonSelector_, genParticleLabel_, genParticles2HepMC_cfi::genParticles, trigger::TriggerEventWithRefs::getObjects(), hltPath_, hltProcessName_, hltTriggerSummaryRAW_, mps_fire::i, iEvent, HLT_FULL_cff::InputTag, edm::HandleBase::isValid(), dqmiolumiharvest::j, personalPlayback::level, LogTrace, oniaPATMuonsWithTrigger_cff::matches, moduleLabels_, phi, DiDispStaMuonMonitor_cfi::pt, recMuonCut_, recMuonLabel_, recMuonSelector_, findQualityFiles::size, jetUpdater_cfi::sort, source, CalibrationSummaryClient_cfi::sources, stepLabels_, GlobalPosition_Frontier_DevDB_cff::tag, trigger::TriggerL1Mu, and trigger::TriggerMuon.

◆ analyzePath()

void HLTMuonPlotter::analyzePath ( const edm::Event ,
const std::string &  ,
const std::string &  ,
const std::vector< MatchStruct > &  ,
edm::Handle< trigger::TriggerEventWithRefs  
)
private

◆ beginJob()

void HLTMuonPlotter::beginJob ( void  )

Definition at line 60 of file HLTMuonPlotter.cc.

60 {}

◆ beginRun()

void HLTMuonPlotter::beginRun ( DQMStore::IBooker iBooker,
const edm::Run iRun,
const edm::EventSetup iSetup 
)

Definition at line 62 of file HLTMuonPlotter.cc.

62  {
63  l1Matcher_.init(iSetup);
64 
65  cutMaxEta_ = 2.4;
66  if (hltPath_.find("eta2p1") != string::npos)
67  cutMaxEta_ = 2.1;
68 
69  // Choose a pT cut for gen/rec muons based on the pT cut in the hltPath_
70  unsigned int threshold = 0;
71  TPRegexp ptRegexp("Mu([0-9]+)");
72  TObjArray *regexArray = ptRegexp.MatchS(hltPath_);
73  if (regexArray->GetEntriesFast() == 2) {
74  threshold = atoi(((TObjString *)regexArray->At(1))->GetString());
75  }
76  delete regexArray;
77  // We select a whole number min pT cut slightly above the hltPath_'s final
78  // pt threshold, then subtract a bit to let through particle gun muons with
79  // exact integer pT:
80  cutMinPt_ = ceil(threshold * 1.1) - 0.01;
81  if (cutMinPt_ < 0.)
82  cutMinPt_ = 0.;
83 
84  string baseDir = "HLT/Muon/Distributions/";
86 
87  vector<string> sources(2);
88  sources[0] = "gen";
89  sources[1] = "rec";
90 
91  elements_["CutMinPt"] = iBooker.bookFloat("CutMinPt");
92  elements_["CutMaxEta"] = iBooker.bookFloat("CutMaxEta");
93  elements_["CutMinPt"]->Fill(cutMinPt_);
94  elements_["CutMaxEta"]->Fill(cutMaxEta_);
95 
96  for (size_t i = 0; i < sources.size(); i++) {
97  string source = sources[i];
98  for (size_t j = 0; j < stepLabels_.size(); j++) {
99  bookHist(iBooker, hltPath_, stepLabels_[j], source, "Eta");
100  bookHist(iBooker, hltPath_, stepLabels_[j], source, "Phi");
101  bookHist(iBooker, hltPath_, stepLabels_[j], source, "MaxPt1");
102  bookHist(iBooker, hltPath_, stepLabels_[j], source, "MaxPt2");
103  }
104  }
105 }

References ALCARECODTCalibSynchDQM_cff::baseDir, dqm::implementation::IBooker::bookFloat(), bookHist(), reco::ceil(), cutMaxEta_, cutMinPt_, elements_, hltPath_, mps_fire::i, L1MuonMatcherAlgo::init(), dqmiolumiharvest::j, l1Matcher_, dqm::implementation::NavigatorBase::setCurrentFolder(), source, CalibrationSummaryClient_cfi::sources, stepLabels_, and remoteMonitoring_LED_IterMethod_cfg::threshold.

◆ bookHist()

void HLTMuonPlotter::bookHist ( DQMStore::IBooker ,
std::string  ,
std::string  ,
std::string  ,
std::string   
)
private

Definition at line 345 of file HLTMuonPlotter.cc.

345  {
346  string sourceUpper = source;
347  sourceUpper[0] = toupper(sourceUpper[0]);
348  string name = source + "Pass" + type + "_" + label;
349  TH1F *h;
350 
351  if (type.find("MaxPt") != string::npos) {
352  string desc = (type == "MaxPt1") ? "Leading" : "Next-to-Leading";
353  string title = "pT of " + desc + " " + sourceUpper + " Muon " + "matched to " + label;
354  const size_t nBins = parametersTurnOn_.size() - 1;
355  float *edges = new float[nBins + 1];
356  for (size_t i = 0; i < nBins + 1; i++)
358  h = new TH1F(name.c_str(), title.c_str(), nBins, edges);
359  }
360 
361  else {
362  string symbol = (type == "Eta") ? "#eta" : "#phi";
363  string title = symbol + " of " + sourceUpper + " Muons " + "matched to " + label;
364  vector<double> params = (type == "Eta") ? parametersEta_ : parametersPhi_;
365  int nBins = (int)params[0];
366  double min = params[1];
367  double max = params[2];
368  h = new TH1F(name.c_str(), title.c_str(), nBins, min, max);
369  }
370 
371  h->Sumw2();
372  elements_[name] = iBooker.book1D(name, h);
373  delete h;
374 }

References dqm::implementation::IBooker::book1D(), submitPVResolutionJobs::desc, SelectiveReadoutTask_cfi::edges, elements_, h, mps_fire::i, createfilelist::int, label, SiStripPI::max, min(), Skims_PA_cff::name, seedmultiplicitymonitor_newtracking_cfi::nBins, parametersEta_, parametersPhi_, parametersTurnOn_, CalibrationSummaryClient_cfi::params, source, and runGCPTkAlMap::title.

Referenced by beginRun().

◆ findMatches()

void HLTMuonPlotter::findMatches ( std::vector< MatchStruct > &  matches,
const l1t::MuonVectorRef candsL1,
const std::vector< std::vector< const reco::RecoChargedCandidate * >> &  candsHlt 
)
private

Definition at line 275 of file HLTMuonPlotter.cc.

277  {
278  set<size_t>::iterator it;
279 
280  set<size_t> indicesL1;
281  for (size_t i = 0; i < candsL1.size(); i++)
282  indicesL1.insert(i);
283 
284  vector<set<size_t>> indicesHlt(candsHlt.size());
285  for (size_t i = 0; i < candsHlt.size(); i++)
286  for (size_t j = 0; j < candsHlt[i].size(); j++)
287  indicesHlt[i].insert(j);
288 
289  for (size_t i = 0; i < matches.size(); i++) {
290  const Candidate *cand = matches[i].candBase;
291 
292  double bestDeltaR = cutsDr_[0];
293  size_t bestMatch = kNull;
294  for (it = indicesL1.begin(); it != indicesL1.end(); it++) {
295  if (candsL1[*it].isAvailable()) {
296  double dR = deltaR(cand->eta(), cand->phi(), candsL1[*it]->eta(), candsL1[*it]->phi());
297  if (dR < bestDeltaR) {
298  bestMatch = *it;
299  bestDeltaR = dR;
300  }
301  // TrajectoryStateOnSurface propagated;
302  // float dR = 999., dPhi = 999.;
303  // bool isValid = l1Matcher_.match(* cand, * candsL1[*it],
304  // dR, dPhi, propagated);
305  // if (isValid && dR < bestDeltaR) {
306  // bestMatch = *it;
307  // bestDeltaR = dR;
308  // }
309  } else {
310  LogWarning("HLTMuonPlotter") << "Ref candsL1[*it]: product not available " << *it;
311  }
312  }
313 
314  if (bestMatch != kNull)
315  matches[i].candL1 = &*candsL1[bestMatch];
316  indicesL1.erase(bestMatch);
317 
318  matches[i].candHlt.assign(candsHlt.size(), nullptr);
319  for (size_t j = 0; j < candsHlt.size(); j++) {
320  size_t level = (candsHlt.size() == 4) ? (j < 2) ? 2 : 3 : (candsHlt.size() == 2) ? (j < 1) ? 2 : 3 : 2;
321  bestDeltaR = cutsDr_[level - 2];
322  bestMatch = kNull;
323  for (it = indicesHlt[j].begin(); it != indicesHlt[j].end(); it++) {
324  double dR = deltaR(cand->eta(), cand->phi(), candsHlt[j][*it]->eta(), candsHlt[j][*it]->phi());
325  if (dR < bestDeltaR) {
326  bestMatch = *it;
327  bestDeltaR = dR;
328  }
329  }
330  if (bestMatch != kNull)
331  matches[i].candHlt[j] = candsHlt[j][bestMatch];
332  indicesHlt[j].erase(bestMatch);
333  }
334 
335  // cout << " Muon: " << cand->eta() << ", ";
336  // if (matches[i].candL1) cout << matches[i].candL1->eta() << ", ";
337  // else cout << "none, ";
338  // for (size_t j = 0; j < candsHlt.size(); j++)
339  // if (matches[i].candHlt[j]) cout << matches[i].candHlt[j]->eta() <<
340  // ", "; else cout << "none, ";
341  // cout << endl;
342  }
343 }

References deltar::bestMatch(), cutsDr_, PbPb_ZMuSkimMuonDPG_cff::deltaR, HGC3DClusterGenMatchSelector_cfi::dR, mps_fire::i, edm::eventsetup::heterocontainer::insert(), dqmiolumiharvest::j, kNull, personalPlayback::level, and oniaPATMuonsWithTrigger_cff::matches.

Referenced by analyze().

◆ getTokens()

Definition at line 259 of file HLTMuonPlotter.cc.

259  {
261  iC.consumes<TriggerEventWithRefs>(edm::InputTag("hltTriggerSummaryRAW"));
263  iC.consumes<GenParticleCollection>(pset.getParameter<string>("genParticleLabel"));
265  iC.consumes<MuonCollection>(pset.getParameter<string>("recMuonLabel"));
266 
267  std::tuple<edm::EDGetTokenT<trigger::TriggerEventWithRefs>,
270  myTuple(_hltTriggerSummaryRAW, _genParticleLabel, _recMuonLabel);
271 
272  return (myTuple);
273 }

References HLT_FULL_cff::InputTag, and muonDTDigis_cfi::pset.

Referenced by HLTMuonValidator::HLTMuonValidator().

Member Data Documentation

◆ cutMaxEta_

double HLTMuonPlotter::cutMaxEta_
private

Definition at line 124 of file HLTMuonPlotter.h.

Referenced by analyze(), and beginRun().

◆ cutMinPt_

double HLTMuonPlotter::cutMinPt_
private

Definition at line 123 of file HLTMuonPlotter.h.

Referenced by analyze(), and beginRun().

◆ cutMotherId_

unsigned int HLTMuonPlotter::cutMotherId_
private

Definition at line 125 of file HLTMuonPlotter.h.

◆ cutsDr_

std::vector<double> HLTMuonPlotter::cutsDr_
private

Definition at line 126 of file HLTMuonPlotter.h.

Referenced by findMatches(), and HLTMuonPlotter().

◆ elements_

std::map<std::string, MonitorElement *> HLTMuonPlotter::elements_
private

Definition at line 135 of file HLTMuonPlotter.h.

Referenced by analyze(), beginRun(), and bookHist().

◆ genMuonCut_

std::string HLTMuonPlotter::genMuonCut_
private

Definition at line 127 of file HLTMuonPlotter.h.

Referenced by analyze(), and HLTMuonPlotter().

◆ genMuonSelector_

StringCutObjectSelector<reco::GenParticle>* HLTMuonPlotter::genMuonSelector_
private

Definition at line 130 of file HLTMuonPlotter.h.

Referenced by analyze(), HLTMuonPlotter(), and ~HLTMuonPlotter().

◆ genParticleLabel_

edm::EDGetTokenT<reco::GenParticleCollection> HLTMuonPlotter::genParticleLabel_
private

Definition at line 116 of file HLTMuonPlotter.h.

Referenced by analyze(), and HLTMuonPlotter().

◆ hltPath_

std::string HLTMuonPlotter::hltPath_
private

Definition at line 109 of file HLTMuonPlotter.h.

Referenced by analyze(), beginRun(), and HLTMuonPlotter().

◆ hltProcessName_

std::string HLTMuonPlotter::hltProcessName_
private

Definition at line 110 of file HLTMuonPlotter.h.

Referenced by analyze(), and HLTMuonPlotter().

◆ hltTriggerSummaryRAW_

edm::EDGetTokenT<trigger::TriggerEventWithRefs> HLTMuonPlotter::hltTriggerSummaryRAW_
private

Definition at line 115 of file HLTMuonPlotter.h.

Referenced by analyze(), and HLTMuonPlotter().

◆ l1Matcher_

L1MuonMatcherAlgo HLTMuonPlotter::l1Matcher_
private

Definition at line 133 of file HLTMuonPlotter.h.

Referenced by beginRun().

◆ moduleLabels_

std::vector<std::string> HLTMuonPlotter::moduleLabels_
private

Definition at line 112 of file HLTMuonPlotter.h.

Referenced by analyze(), and HLTMuonPlotter().

◆ parametersEta_

std::vector<double> HLTMuonPlotter::parametersEta_
private

Definition at line 119 of file HLTMuonPlotter.h.

Referenced by bookHist(), and HLTMuonPlotter().

◆ parametersPhi_

std::vector<double> HLTMuonPlotter::parametersPhi_
private

Definition at line 120 of file HLTMuonPlotter.h.

Referenced by bookHist(), and HLTMuonPlotter().

◆ parametersTurnOn_

std::vector<double> HLTMuonPlotter::parametersTurnOn_
private

Definition at line 121 of file HLTMuonPlotter.h.

Referenced by bookHist(), and HLTMuonPlotter().

◆ recMuonCut_

std::string HLTMuonPlotter::recMuonCut_
private

Definition at line 128 of file HLTMuonPlotter.h.

Referenced by analyze(), and HLTMuonPlotter().

◆ recMuonLabel_

edm::EDGetTokenT<reco::MuonCollection> HLTMuonPlotter::recMuonLabel_
private

Definition at line 117 of file HLTMuonPlotter.h.

Referenced by analyze(), and HLTMuonPlotter().

◆ recMuonSelector_

StringCutObjectSelector<reco::Muon>* HLTMuonPlotter::recMuonSelector_
private

Definition at line 131 of file HLTMuonPlotter.h.

Referenced by analyze(), HLTMuonPlotter(), and ~HLTMuonPlotter().

◆ stepLabels_

std::vector<std::string> HLTMuonPlotter::stepLabels_
private

Definition at line 113 of file HLTMuonPlotter.h.

Referenced by analyze(), beginRun(), and HLTMuonPlotter().

personalPlayback.level
level
Definition: personalPlayback.py:22
HLTMuonPlotter::parametersEta_
std::vector< double > parametersEta_
Definition: HLTMuonPlotter.h:119
trigger::TriggerEventWithRefs
Definition: TriggerEventWithRefs.h:27
runGCPTkAlMap.title
string title
Definition: runGCPTkAlMap.py:94
mps_fire.i
i
Definition: mps_fire.py:428
genParticles2HepMC_cfi.genParticles
genParticles
Definition: genParticles2HepMC_cfi.py:4
dqm::implementation::IBooker::bookFloat
MonitorElement * bookFloat(TString const &name, FUNC onbooking=NOOP())
Definition: DQMStore.h:80
HLTMuonPlotter::cutMinPt_
double cutMinPt_
Definition: HLTMuonPlotter.h:123
step
step
Definition: StallMonitor.cc:94
DiDispStaMuonMonitor_cfi.pt
pt
Definition: DiDispStaMuonMonitor_cfi.py:39
CalibrationSummaryClient_cfi.params
params
Definition: CalibrationSummaryClient_cfi.py:14
kNull
const unsigned int kNull
Definition: HLTHiggsPlotter.h:42
min
T min(T a, T b)
Definition: MathUtil.h:58
edm::EDGetTokenT< trigger::TriggerEventWithRefs >
h
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
Definition: L1TUtmAlgorithmRcd.h:4
HLTMuonPlotter::moduleLabels_
std::vector< std::string > moduleLabels_
Definition: HLTMuonPlotter.h:112
HLTMuonPlotter::cutMaxEta_
double cutMaxEta_
Definition: HLTMuonPlotter.h:124
TriggerAnalyzer.hltPath
hltPath
Definition: TriggerAnalyzer.py:62
oniaPATMuonsWithTrigger_cff.matches
matches
Definition: oniaPATMuonsWithTrigger_cff.py:77
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89285
reco::GenParticleCollection
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
Definition: GenParticleFwd.h:13
dqm::implementation::NavigatorBase::setCurrentFolder
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
trigger::TriggerEventWithRefs::getObjects
void getObjects(size_type filter, Vids &ids, VRphoton &photons) const
extract Ref<C>s for a specific filter and of specific physics type
Definition: TriggerEventWithRefs.h:399
CalibrationSummaryClient_cfi.sources
sources
Definition: CalibrationSummaryClient_cfi.py:23
ALCARECODTCalibSynchDQM_cff.baseDir
baseDir
Definition: ALCARECODTCalibSynchDQM_cff.py:14
HLTMuonPlotter::hltTriggerSummaryRAW_
edm::EDGetTokenT< trigger::TriggerEventWithRefs > hltTriggerSummaryRAW_
Definition: HLTMuonPlotter.h:115
spr::find
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:19
deltar.bestMatch
def bestMatch(object, matchCollection)
Definition: deltar.py:138
edm::Handle
Definition: AssociativeIterator.h:50
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
matchesByDescendingPt
Helper structure to order MatchStruct.
Definition: MatchStruct.cc:58
HLTMuonPlotter::recMuonCut_
std::string recMuonCut_
Definition: HLTMuonPlotter.h:128
h
HLTMuonPlotter::genMuonCut_
std::string genMuonCut_
Definition: HLTMuonPlotter.h:127
reco::ceil
constexpr int32_t ceil(float num)
Definition: constexpr_cmath.h:7
GlobalPosition_Frontier_DevDB_cff.tag
tag
Definition: GlobalPosition_Frontier_DevDB_cff.py:11
PVValHelper::eta
Definition: PVValidationHelpers.h:70
reco::MuonCollection
std::vector< Muon > MuonCollection
collection of Muon objects
Definition: MuonFwd.h:9
trigger::TriggerMuon
Definition: TriggerTypeDefs.h:79
source
static const std::string source
Definition: EdmProvDump.cc:47
HLTMuonPlotter::stepLabels_
std::vector< std::string > stepLabels_
Definition: HLTMuonPlotter.h:113
edm::ConsumesCollector::consumes
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
Definition: ConsumesCollector.h:55
submitPVResolutionJobs.count
count
Definition: submitPVResolutionJobs.py:352
seedmultiplicitymonitor_newtracking_cfi.nBins
nBins
Definition: seedmultiplicitymonitor_newtracking_cfi.py:8
trigger::TriggerEventWithRefs::filterIndex
size_type filterIndex(const edm::InputTag &filterTag) const
index from tag
Definition: TriggerEventWithRefs.h:223
PbPb_ZMuSkimMuonDPG_cff.deltaR
deltaR
Definition: PbPb_ZMuSkimMuonDPG_cff.py:63
MatchStruct
Definition: MatchStruct.cc:23
edm::HandleBase::failedToGet
bool failedToGet() const
Definition: HandleBase.h:72
SiStripPI::max
Definition: SiStripPayloadInspectorHelper.h:169
HLTMuonPlotter::hltProcessName_
std::string hltProcessName_
Definition: HLTMuonPlotter.h:110
type
type
Definition: SiPixelVCal_PayloadInspector.cc:37
trigger::TriggerL1Mu
enum start value shifted to 81 so as to avoid clashes with PDG codes
Definition: TriggerTypeDefs.h:30
jetUpdater_cfi.sort
sort
Definition: jetUpdater_cfi.py:29
cand
Definition: decayParser.h:32
HLTMuonPlotter::recMuonSelector_
StringCutObjectSelector< reco::Muon > * recMuonSelector_
Definition: HLTMuonPlotter.h:131
createfilelist.int
int
Definition: createfilelist.py:10
iEvent
int iEvent
Definition: GenABIO.cc:224
HLTMuonPlotter::genMuonSelector_
StringCutObjectSelector< reco::GenParticle > * genMuonSelector_
Definition: HLTMuonPlotter.h:130
edm::LogError
Log< level::Error, false > LogError
Definition: MessageLogger.h:123
HLTMuonPlotter::genParticleLabel_
edm::EDGetTokenT< reco::GenParticleCollection > genParticleLabel_
Definition: HLTMuonPlotter.h:116
HLTMuonPlotter::recMuonLabel_
edm::EDGetTokenT< reco::MuonCollection > recMuonLabel_
Definition: HLTMuonPlotter.h:117
SelectiveReadoutTask_cfi.edges
edges
Definition: SelectiveReadoutTask_cfi.py:107
HcalObjRepresent::Fill
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
Definition: HcalObjRepresent.h:1053
reco::Candidate
Definition: Candidate.h:27
DDAxes::phi
HLTMuonPlotter::l1Matcher_
L1MuonMatcherAlgo l1Matcher_
Definition: HLTMuonPlotter.h:133
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
HLTMuonPlotter::cutsDr_
std::vector< double > cutsDr_
Definition: HLTMuonPlotter.h:126
StringCutObjectSelector< reco::GenParticle >
HLTMuonPlotter::elements_
std::map< std::string, MonitorElement * > elements_
Definition: HLTMuonPlotter.h:135
edm::eventsetup::heterocontainer::insert
bool insert(Storage &iStorage, ItemType *iItem, const IdTag &iIdTag)
Definition: HCMethods.h:50
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
l1t::MuonVectorRef
std::vector< MuonRef > MuonVectorRef
Definition: Muon.h:15
HLTMuonPlotter::bookHist
void bookHist(DQMStore::IBooker &, std::string, std::string, std::string, std::string)
Definition: HLTMuonPlotter.cc:345
HLTMuonPlotter::findMatches
void findMatches(std::vector< MatchStruct > &, const l1t::MuonVectorRef &candsL1, const std::vector< std::vector< const reco::RecoChargedCandidate * >> &)
Definition: HLTMuonPlotter.cc:275
LogTrace
#define LogTrace(id)
Definition: MessageLogger.h:234
HGC3DClusterGenMatchSelector_cfi.dR
dR
Definition: HGC3DClusterGenMatchSelector_cfi.py:7
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
edm::HandleBase::isValid
bool isValid() const
Definition: HandleBase.h:70
remoteMonitoring_LED_IterMethod_cfg.threshold
threshold
Definition: remoteMonitoring_LED_IterMethod_cfg.py:430
edm::InputTag
Definition: InputTag.h:15
label
const char * label
Definition: PFTauDecayModeTools.cc:11
HLTMuonPlotter::hltPath_
std::string hltPath_
Definition: HLTMuonPlotter.h:109
L1MuonMatcherAlgo::init
void init(const edm::EventSetup &iSetup)
Definition: L1MuonMatcherAlgo.cc:16
muonDTDigis_cfi.pset
pset
Definition: muonDTDigis_cfi.py:27
HLTMuonPlotter::parametersPhi_
std::vector< double > parametersPhi_
Definition: HLTMuonPlotter.h:120
findQualityFiles.size
size
Write out results.
Definition: findQualityFiles.py:443
HLTMuonPlotter::parametersTurnOn_
std::vector< double > parametersTurnOn_
Definition: HLTMuonPlotter.h:121