CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HLTMuonPlotter.cc
Go to the documentation of this file.
1 
16 
21 
22 
23 
24 using namespace std;
25 using namespace edm;
26 using namespace reco;
27 using namespace trigger;
28 using namespace l1extra;
29 
30 
31 
32 typedef vector<ParameterSet> Parameters;
33 
34 
35 
37  string hltPath,
38  const std::vector<string>& moduleLabels,
39  const std::vector<string>& stepLabels,
43  ) :
44 
45  l1Matcher_(pset)
46 {
47 
48  hltPath_ = hltPath;
49  moduleLabels_ = moduleLabels;
50  stepLabels_ = stepLabels;
51  hltProcessName_ = pset.getParameter<string>("hltProcessName");
52 
53  cutsDr_ = pset.getParameter< vector<double> >("cutsDr" );
54 
55  parametersEta_ = pset.getParameter< vector<double> >("parametersEta");
56  parametersPhi_ = pset.getParameter< vector<double> >("parametersPhi");
57  parametersTurnOn_ = pset.getParameter< vector<double> >("parametersTurnOn");
58 
59  genMuonCut_ = pset.getParameter<string>("genMuonCut");
60  recMuonCut_ = pset.getParameter<string>("recMuonCut");
61 
62  genMuonSelector_ = 0;
63  recMuonSelector_ = 0;
64 
65  //set tokens
66  hltTriggerSummaryRAW_ = tokens.get<0>();
67  genParticleLabel_ = tokens.get<1>();
68  recMuonLabel_ = tokens.get<2>();
69 
70 }
71 
72 
73 
74 void
76 {
77 
78 }
79 
80 
81 
82 void
84  const Run & iRun, const EventSetup & iSetup)
85 {
86 
87  static int runNumber = 0;
88  runNumber++;
89 
90  l1Matcher_.init(iSetup);
91 
92  cutMaxEta_ = 2.4;
93  if (hltPath_.find("eta2p1") != string::npos)
94  cutMaxEta_ = 2.1;
95 
96  // Choose a pT cut for gen/rec muons based on the pT cut in the hltPath_
97  unsigned int threshold = 0;
98  TPRegexp ptRegexp("Mu([0-9]+)");
99  TObjArray * regexArray = ptRegexp.MatchS(hltPath_);
100  if (regexArray->GetEntriesFast() == 2) {
101  threshold = atoi(((TObjString *)regexArray->At(1))->GetString());
102  }
103  delete regexArray;
104  // We select a whole number min pT cut slightly above the hltPath_'s final
105  // pt threshold, then subtract a bit to let through particle gun muons with
106  // exact integer pT:
107  cutMinPt_ = ceil(threshold * 1.1) - 0.01;
108  if (cutMinPt_ < 0.) cutMinPt_ = 0.;
109 
110  string baseDir = "HLT/Muon/Distributions/";
111  iBooker.setCurrentFolder(baseDir + hltPath_);
112 
113  vector<string> sources(2);
114  sources[0] = "gen";
115  sources[1] = "rec";
116 
117  elements_["CutMinPt" ] = iBooker.bookFloat("CutMinPt" );
118  elements_["CutMaxEta"] = iBooker.bookFloat("CutMaxEta");
119  elements_["CutMinPt" ]->Fill(cutMinPt_);
120  elements_["CutMaxEta"]->Fill(cutMaxEta_);
121 
122  for (size_t i = 0; i < sources.size(); i++) {
123  string source = sources[i];
124  for (size_t j = 0; j < stepLabels_.size(); j++) {
125  bookHist(iBooker, hltPath_, stepLabels_[j], source, "Eta");
126  bookHist(iBooker, hltPath_, stepLabels_[j], source, "Phi");
127  bookHist(iBooker, hltPath_, stepLabels_[j], source, "MaxPt1");
128  bookHist(iBooker, hltPath_, stepLabels_[j], source, "MaxPt2");
129  }
130  }
131 
132 }
133 
134 
135 
136 void
138 {
139 
140  static int eventNumber = 0;
141  eventNumber++;
142  LogTrace("HLTMuonVal") << "In HLTMuonPlotter::analyze, "
143  << "Event: " << eventNumber;
144 
145  // cout << hltPath_ << endl;
146  // for (size_t i = 0; i < moduleLabels_.size(); i++)
147  // cout << " " << moduleLabels_[i] << endl;
148 
149  Handle< TriggerEventWithRefs> rawTriggerEvent;
150  Handle< MuonCollection> recMuons;
152 
153  iEvent.getByToken(hltTriggerSummaryRAW_, rawTriggerEvent);
154  if (rawTriggerEvent.failedToGet())
155  {LogError("HLTMuonVal") << "No trigger summary found"; return;}
156  iEvent.getByToken(recMuonLabel_, recMuons);
157  iEvent.getByToken(genParticleLabel_, genParticles );
158 
159  vector<string> sources;
160  if (genParticles.isValid()) sources.push_back("gen");
161  if ( recMuons.isValid()) sources.push_back("rec");
162 
163  for (size_t sourceNo = 0; sourceNo < sources.size(); sourceNo++) {
164 
165  string source = sources[sourceNo];
166 
167  // If this is the first event, initialize selectors
172 
173  // Make each good gen/rec muon into the base cand for a MatchStruct
174  vector<MatchStruct> matches;
175  if (source == "gen" && genParticles.isValid())
176  for (size_t i = 0; i < genParticles->size(); i++)
177  if ((*genMuonSelector_)(genParticles->at(i)))
178  matches.push_back(MatchStruct(& genParticles->at(i)));
179  if (source == "rec" && recMuons.isValid())
180  for (size_t i = 0; i < recMuons->size(); i++)
181  if ((*recMuonSelector_)(recMuons->at(i)))
182  matches.push_back(MatchStruct(& recMuons->at(i)));
183 
184  // Sort the MatchStructs by pT for later filling of turn-on curve
185  sort(matches.begin(), matches.end(), matchesByDescendingPt());
186 
187  const bool isDoubleMuonPath = (hltPath_.find("Double") != string::npos);
188  const size_t nFilters = moduleLabels_.size();
189  const size_t nSteps = stepLabels_.size();
190  const size_t nStepsHlt = nSteps - 2;
191  const int nObjectsToPassPath = (isDoubleMuonPath) ? 2 : 1;
192  vector< L1MuonParticleRef > candsL1;
193  vector< vector< RecoChargedCandidateRef > > refsHlt(nStepsHlt);
194  vector< vector< const RecoChargedCandidate * > > candsHlt(nStepsHlt);
195 
196  for (size_t i = 0; i < nFilters; i++) {
197  const int hltStep = i - 1;
199  size_t iFilter = rawTriggerEvent->filterIndex(tag);
200  if (iFilter < rawTriggerEvent->size()) {
201  if (i == 0)
202  rawTriggerEvent->getObjects(iFilter, TriggerL1Mu, candsL1);
203  else
204  rawTriggerEvent->getObjects(iFilter, TriggerMuon,
205  refsHlt[hltStep]);
206  }
207  else LogTrace("HLTMuonVal") << "No collection with label " << tag;
208  }
209  for (size_t i = 0; i < nStepsHlt; i++)
210  for (size_t j = 0; j < refsHlt[i].size(); j++)
211  if (refsHlt[i][j].isAvailable()) {
212  candsHlt[i].push_back(& * refsHlt[i][j]);
213  } else {
214  LogWarning("HLTMuonPlotter")
215  << "Ref refsHlt[i][j]: product not available "
216  << i << " " << j;
217  }
218 
219  // Add trigger objects to the MatchStructs
220  findMatches(matches, candsL1, candsHlt);
221 
222  vector<size_t> matchesInEtaRange;
223  vector<bool> hasMatch(matches.size(), true);
224 
225  for (size_t step = 0; step < nSteps; step++) {
226 
227  const size_t hltStep = (step >= 2) ? step - 2 : 0;
228  size_t level = 0;
229  if (stepLabels_[step].find("L3") != string::npos) level = 3;
230  else if (stepLabels_[step].find("L2") != string::npos) level = 2;
231  else if (stepLabels_[step].find("L1") != string::npos) level = 1;
232 
233  for (size_t j = 0; j < matches.size(); j++) {
234  if (level == 0) {
235  if (fabs(matches[j].candBase->eta()) < cutMaxEta_)
236  matchesInEtaRange.push_back(j);
237  }
238  else if (level == 1) {
239  if (matches[j].candL1 == 0)
240  hasMatch[j] = false;
241  }
242  else if (level >= 2) {
243  if (matches[j].candHlt[hltStep] == 0)
244  hasMatch[j] = false;
245  else if (!hasMatch[j]) {
246  LogTrace("HLTMuonVal") << "Match found for HLT step " << hltStep
247  << " of " << nStepsHlt
248  << " without previous match!";
249  break;
250  }
251  }
252  }
253 
254  if (std::count(hasMatch.begin(), hasMatch.end(), true) <
255  nObjectsToPassPath)
256  break;
257 
258  string pre = source + "Pass";
259  string post = "_" + stepLabels_[step];
260 
261  for (size_t j = 0; j < matches.size(); j++) {
262  float pt = matches[j].candBase->pt();
263  float eta = matches[j].candBase->eta();
264  float phi = matches[j].candBase->phi();
265  if (hasMatch[j]) {
266  if (matchesInEtaRange.size() >= 1 && j == matchesInEtaRange[0])
267  elements_[pre + "MaxPt1" + post]->Fill(pt);
268  if (matchesInEtaRange.size() >= 2 && j == matchesInEtaRange[1])
269  elements_[pre + "MaxPt2" + post]->Fill(pt);
270  if (pt > cutMinPt_) {
271  elements_[pre + "Eta" + post]->Fill(eta);
272  if (fabs(eta) < cutMaxEta_)
273  elements_[pre + "Phi" + post]->Fill(phi);
274  }
275  }
276  }
277 
278  }
279 
280 
281 
282  } // End loop over sources
283 
284 }
285 
286 
287 
288 boost::tuple<
292 {
293 
294  edm::EDGetTokenT<trigger::TriggerEventWithRefs> _hltTriggerSummaryRAW = iC.consumes<TriggerEventWithRefs>(edm::InputTag("hltTriggerSummaryRAW"));
295  edm::EDGetTokenT<reco::GenParticleCollection> _genParticleLabel = iC.consumes<GenParticleCollection>(pset.getParameter<string>("genParticleLabel"));
296  edm::EDGetTokenT<reco::MuonCollection> _recMuonLabel = iC.consumes<MuonCollection>(pset.getParameter<string>("recMuonLabel"));
297 
298  boost::tuple<
301  edm::EDGetTokenT<reco::MuonCollection> > myTuple(_hltTriggerSummaryRAW,_genParticleLabel,_recMuonLabel);
302 
303  return (myTuple);
304 }
305 
306 
307 
308 void
310  vector<MatchStruct> & matches,
311  const std::vector<L1MuonParticleRef>& candsL1,
312  const std::vector< vector< const RecoChargedCandidate *> >& candsHlt)
313 {
314 
315  set<size_t>::iterator it;
316 
317  set<size_t> indicesL1;
318  for (size_t i = 0; i < candsL1.size(); i++)
319  indicesL1.insert(i);
320 
321  vector< set<size_t> > indicesHlt(candsHlt.size());
322  for (size_t i = 0; i < candsHlt.size(); i++)
323  for (size_t j = 0; j < candsHlt[i].size(); j++)
324  indicesHlt[i].insert(j);
325 
326  for (size_t i = 0; i < matches.size(); i++) {
327 
328  const Candidate * cand = matches[i].candBase;
329 
330  double bestDeltaR = cutsDr_[0];
331  size_t bestMatch = kNull;
332  for (it = indicesL1.begin(); it != indicesL1.end(); it++) {
333  if (candsL1[*it].isAvailable()) {
334  double dR = deltaR(cand->eta(), cand->phi(),
335  candsL1[*it]->eta(), candsL1[*it]->phi());
336  if (dR < bestDeltaR) {
337  bestMatch = *it;
338  bestDeltaR = dR;
339  }
340  // TrajectoryStateOnSurface propagated;
341  // float dR = 999., dPhi = 999.;
342  // bool isValid = l1Matcher_.match(* cand, * candsL1[*it],
343  // dR, dPhi, propagated);
344  // if (isValid && dR < bestDeltaR) {
345  // bestMatch = *it;
346  // bestDeltaR = dR;
347  // }
348  } else {
349  LogWarning("HLTMuonPlotter")
350  << "Ref candsL1[*it]: product not available "
351  << *it;
352  }
353  }
354  if (bestMatch != kNull)
355  matches[i].candL1 = & * candsL1[bestMatch];
356  indicesL1.erase(bestMatch);
357 
358  matches[i].candHlt.assign(candsHlt.size(), 0);
359  for (size_t j = 0; j < candsHlt.size(); j++) {
360  size_t level = (candsHlt.size() == 4) ? (j < 2) ? 2 : 3 :
361  (candsHlt.size() == 2) ? (j < 1) ? 2 : 3 :
362  2;
363  bestDeltaR = cutsDr_[level - 2];
364  bestMatch = kNull;
365  for (it = indicesHlt[j].begin(); it != indicesHlt[j].end(); it++) {
366  double dR = deltaR(cand->eta(), cand->phi(),
367  candsHlt[j][*it]->eta(), candsHlt[j][*it]->phi());
368  if (dR < bestDeltaR) {
369  bestMatch = *it;
370  bestDeltaR = dR;
371  }
372  }
373  if (bestMatch != kNull)
374  matches[i].candHlt[j] = candsHlt[j][bestMatch];
375  indicesHlt[j].erase(bestMatch);
376  }
377 
378 // cout << " Muon: " << cand->eta() << ", ";
379 // if (matches[i].candL1) cout << matches[i].candL1->eta() << ", ";
380 // else cout << "none, ";
381 // for (size_t j = 0; j < candsHlt.size(); j++)
382 // if (matches[i].candHlt[j]) cout << matches[i].candHlt[j]->eta() << ", ";
383 // else cout << "none, ";
384 // cout << endl;
385 
386  }
387 
388 }
389 
390 
391 
392 
393 void
395  string path, string label,
396  string source, string type)
397 {
398 
399  string sourceUpper = source;
400  sourceUpper[0] = toupper(sourceUpper[0]);
401  string name = source + "Pass" + type + "_" + label;
402  TH1F * h;
403 
404  if (type.find("MaxPt") != string::npos) {
405  string desc = (type == "MaxPt1") ? "Leading" : "Next-to-Leading";
406  string title = "pT of " + desc + " " + sourceUpper + " Muon "+
407  "matched to " + label;
408  const size_t nBins = parametersTurnOn_.size() - 1;
409  float * edges = new float[nBins + 1];
410  for (size_t i = 0; i < nBins + 1; i++) edges[i] = parametersTurnOn_[i];
411  h = new TH1F(name.c_str(), title.c_str(), nBins, edges);
412  }
413 
414  else {
415  string symbol = (type == "Eta") ? "#eta" : "#phi";
416  string title = symbol + " of " + sourceUpper + " Muons " +
417  "matched to " + label;
418  vector<double> params = (type == "Eta") ? parametersEta_ : parametersPhi_;
419  int nBins = (int)params[0];
420  double min = params[1];
421  double max = params[2];
422  h = new TH1F(name.c_str(), title.c_str(), nBins, min, max);
423  }
424 
425  h->Sumw2();
426  elements_[name] = iBooker.book1D(name, h);
427  delete h;
428 
429 }
430 
type
Definition: HCALResponse.h:21
std::vector< GenParticle > GenParticleCollection
collection of GenParticles
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
void init(const edm::EventSetup &iSetup)
Call this method at the beginning of each run, to initialize geometry, magnetic field and propagators...
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
enum start value shifted to 81 so as to avoid clashes with PDG codes
void beginRun(DQMStore::IBooker &, const edm::Run &, const edm::EventSetup &)
virtual float eta() const =0
momentum pseudorapidity
std::string hltPath_
std::vector< double > parametersEta_
virtual float phi() const =0
momentum azimuthal angle
L1MuonMatcherAlgo l1Matcher_
T eta() const
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
std::string genMuonCut_
dictionary edges
std::vector< std::string > moduleLabels_
std::vector< Muon > MuonCollection
collection of Muon objects
Definition: MuonFwd.h:9
static boost::tuple< edm::EDGetTokenT< trigger::TriggerEventWithRefs >, edm::EDGetTokenT< reco::GenParticleCollection >, edm::EDGetTokenT< reco::MuonCollection > > getTokens(const edm::ParameterSet &, edm::ConsumesCollector &&)
std::string recMuonCut_
int iEvent
Definition: GenABIO.cc:230
vector< ParameterSet > Parameters
tuple path
else: Piece not in the list, fine.
StringCutObjectSelector< reco::Muon > * recMuonSelector_
std::vector< double > cutsDr_
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
const unsigned int kNull
edm::EDGetTokenT< reco::MuonCollection > recMuonLabel_
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:113
int j
Definition: DBlmapReader.cc:9
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
void analyze(const edm::Event &, const edm::EventSetup &)
T min(T a, T b)
Definition: MathUtil.h:58
bool insert(Storage &iStorage, ItemType *iItem, const IdTag &iIdTag)
Definition: HCMethods.h:49
bool isValid() const
Definition: HandleBase.h:76
StringCutObjectSelector< reco::GenParticle > * genMuonSelector_
#define LogTrace(id)
double deltaR(double eta1, double eta2, double phi1, double phi2)
Definition: TreeUtility.cc:17
std::vector< std::string > stepLabels_
bool failedToGet() const
Definition: HandleBase.h:80
void findMatches(std::vector< MatchStruct > &, const std::vector< l1extra::L1MuonParticleRef > &, const std::vector< std::vector< const reco::RecoChargedCandidate * > > &)
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
void bookHist(DQMStore::IBooker &, std::string, std::string, std::string, std::string)
#define begin
Definition: vmac.h:30
std::vector< double > parametersPhi_
tuple level
Definition: testEve_cfg.py:34
MonitorElement * bookFloat(Args &&...args)
Definition: DQMStore.h:107
std::map< std::string, MonitorElement * > elements_
std::string hltProcessName_
edm::EDGetTokenT< reco::GenParticleCollection > genParticleLabel_
HLTMuonPlotter(const edm::ParameterSet &, std::string, const std::vector< std::string > &, const std::vector< std::string > &, const boost::tuple< edm::EDGetTokenT< trigger::TriggerEventWithRefs >, edm::EDGetTokenT< reco::GenParticleCollection >, edm::EDGetTokenT< reco::MuonCollection > > &)
edm::EDGetTokenT< trigger::TriggerEventWithRefs > hltTriggerSummaryRAW_
std::vector< double > parametersTurnOn_
static std::string const source
Definition: EdmProvDump.cc:43
tuple size
Write out results.
Definition: Run.h:41
Definition: DDAxes.h:10