CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
TopDiLeptonHLTValidation Class Reference

#include <TopDiLeptonHLTValidation.h>

Inheritance diagram for TopDiLeptonHLTValidation:
one::DQMEDAnalyzer< T > one::dqmimplementation::DQMBaseClass< T... >

Public Member Functions

 TopDiLeptonHLTValidation (const edm::ParameterSet &)
 
 ~TopDiLeptonHLTValidation () override
 
- Public Member Functions inherited from one::DQMEDAnalyzer< T >
 DQMEDAnalyzer ()=default
 
 DQMEDAnalyzer (DQMEDAnalyzer< T... > const &)=delete
 
 DQMEDAnalyzer (DQMEDAnalyzer< T... > &&)=delete
 
 ~DQMEDAnalyzer () override=default
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 

Private Member Functions

void analyze (const edm::Event &, const edm::EventSetup &) override
 
void bookHistograms (DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
 
std::string monitorPath (const std::string &label) const
 
void triggerBinLabels (const std::vector< std::string > &labels)
 set configurable labels for trigger monitoring histograms More...
 

Private Attributes

const reco::GsfElectronelec1_
 
const reco::GsfElectronelec2_
 
double etaElectrons_
 
double etaJets_
 
double etaMuons_
 
MonitorElementhDenJetEta
 
MonitorElementhDenJetPt
 
MonitorElementhDenLeptonEta
 
MonitorElementhDenLeptonPt
 
MonitorElementhDenTriggerMon
 
MonitorElementhNumJetEta
 
MonitorElementhNumJetPt
 
MonitorElementhNumLeptonEta
 
MonitorElementhNumLeptonPt
 
MonitorElementhNumTriggerMon
 
bool isAll_ = false
 
double isoElectrons_
 
double isoMuons_
 
bool isSel_ = false
 
edm::InputTag iTrigger_
 
const reco::Jetjet_
 
unsigned int minElectrons_
 
unsigned int minJets_
 
unsigned int minMuons_
 
const reco::Muonmu1_
 
const reco::Muonmu2_
 
double ptElectrons_
 
double ptJets_
 
double ptMuons_
 
std::string sDir_
 
std::string sElectrons_
 
std::string sJets_
 
std::string sMuons_
 
edm::EDGetTokenT< edm::View< reco::GsfElectron > > tokElectrons_
 
edm::EDGetTokenT< edm::View< reco::Jet > > tokJets_
 
edm::EDGetTokenT< edm::View< reco::Muon > > tokMuons_
 
edm::EDGetTokenT< edm::TriggerResultstokTrigger_
 
std::vector< std::string > vsPaths_
 

Detailed Description

HLTriggerOffline/Top/TopDiLeptonHLTValidation.h

Description:

Description: compute efficiencies of trigger paths on offline reco selection with respect to pt and eta

Implementation: harvesting

HLTriggerOffline/Top/src/TopDiLeptonHLTValidation.cc

Description:

Description: compute efficiencies of trigger paths on offline reco selection with respect to pt and eta

Implementation: harvesting

Definition at line 53 of file TopDiLeptonHLTValidation.h.

Constructor & Destructor Documentation

TopDiLeptonHLTValidation::TopDiLeptonHLTValidation ( const edm::ParameterSet iConfig)
explicit

Definition at line 134 of file TopDiLeptonHLTValidation.h.

References iTrigger_, sElectrons_, sJets_, sMuons_, tokElectrons_, tokJets_, tokMuons_, and tokTrigger_.

135  : sDir_(iConfig.getUntrackedParameter<std::string>("sDir", "Validation/Top/Efficiencies/")),
136  sElectrons_(iConfig.getUntrackedParameter<std::string>("sElectrons", "gsfElectrons")),
137  ptElectrons_(iConfig.getUntrackedParameter<double>("ptElectrons", 0.)),
138  etaElectrons_(iConfig.getUntrackedParameter<double>("etaElectrons", 0.)),
139  isoElectrons_(iConfig.getUntrackedParameter<double>("isoElectrons", 0.)),
140  minElectrons_(iConfig.getUntrackedParameter<unsigned int>("minElectrons", 0)),
141  sMuons_(iConfig.getUntrackedParameter<std::string>("sMuons", "muons")),
142  ptMuons_(iConfig.getUntrackedParameter<double>("ptMuons", 0.)),
143  etaMuons_(iConfig.getUntrackedParameter<double>("etaMuons", 0.)),
144  isoMuons_(iConfig.getUntrackedParameter<double>("isoMuons", 0.)),
145  minMuons_(iConfig.getUntrackedParameter<unsigned int>("minMuons", 0)),
146  sJets_(iConfig.getUntrackedParameter<std::string>("sJets", "ak5PFJets")),
147  ptJets_(iConfig.getUntrackedParameter<double>("ptJets", 0.)),
148  etaJets_(iConfig.getUntrackedParameter<double>("etaJets", 0.)),
149  minJets_(iConfig.getUntrackedParameter<unsigned int>("minJets", 0)),
150  iTrigger_(iConfig.getUntrackedParameter<edm::InputTag>("iTrigger")),
151  vsPaths_(iConfig.getUntrackedParameter<std::vector<std::string>>("vsPaths"))
152 
153 {
154  // Electrons
155  tokElectrons_ = consumes<edm::View<reco::GsfElectron>>(edm::InputTag(sElectrons_));
156  // Muons
157  tokMuons_ = consumes<edm::View<reco::Muon>>(edm::InputTag(sMuons_));
158  // Jets
159  tokJets_ = consumes<edm::View<reco::Jet>>(edm::InputTag(sJets_));
160  // Trigger
161  tokTrigger_ = consumes<edm::TriggerResults>(iTrigger_);
162 }
T getUntrackedParameter(std::string const &, T const &) const
edm::EDGetTokenT< edm::View< reco::GsfElectron > > tokElectrons_
edm::EDGetTokenT< edm::TriggerResults > tokTrigger_
edm::EDGetTokenT< edm::View< reco::Muon > > tokMuons_
std::vector< std::string > vsPaths_
edm::EDGetTokenT< edm::View< reco::Jet > > tokJets_
TopDiLeptonHLTValidation::~TopDiLeptonHLTValidation ( )
override

Definition at line 164 of file TopDiLeptonHLTValidation.h.

References DEFINE_FWK_MODULE.

164  {
165  // do anything here that needs to be done at desctruction time
166  // (e.g. close files, deallocate resources etc.)
167 }

Member Function Documentation

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

Definition at line 47 of file TopDiLeptonHLTValidation.cc.

References edm::HLTGlobalStatus::accept(), MillePedeFileConverter_cfg::e, elec1_, elec2_, nano_cff::electrons, reco::LeafCandidate::eta(), etaElectrons_, etaJets_, etaMuons_, MonitorElement::Fill(), edm::Event::getByToken(), hDenJetEta, hDenJetPt, hDenLeptonEta, hDenLeptonPt, hDenTriggerMon, hNumJetEta, hNumJetPt, hNumLeptonEta, hNumLeptonPt, hNumTriggerMon, mps_fire::i, training_settings::idx, isAll_, isoElectrons_, isoMuons_, isSel_, jet_, fwrapper::jets, funct::m, minElectrons_, minJets_, minMuons_, mu1_, mu2_, extraflags_cff::muons, dataset::name, reco::LeafCandidate::pt(), ptElectrons_, ptJets_, ptMuons_, tokElectrons_, tokJets_, tokMuons_, tokTrigger_, edm::TriggerNames::triggerNames(), edm::Event::triggerNames(), and vsPaths_.

47  {
48  using namespace edm;
49 
50  isAll_ = false;
51  isSel_ = false;
52 
53  // Electrons
55  if (!iEvent.getByToken(tokElectrons_, electrons))
56  edm::LogWarning("TopDiLeptonHLTValidation") << "Electrons collection not found \n";
57  unsigned int nGoodE = 0;
58  for (edm::View<reco::GsfElectron>::const_iterator e = electrons->begin(); e != electrons->end(); ++e) {
59  if (e->pt() < ptElectrons_)
60  continue;
61  if (fabs(e->eta()) > etaElectrons_)
62  continue;
63  if ((e->dr03TkSumPt() + e->dr03EcalRecHitSumEt() + e->dr03HcalTowerSumEt()) / e->pt() > isoElectrons_)
64  continue;
65  nGoodE++;
66  if (nGoodE == 1)
67  elec1_ = &(*e);
68  if (nGoodE == 2)
69  elec2_ = &(*e);
70  }
71  // Muons
73  if (!iEvent.getByToken(tokMuons_, muons))
74  edm::LogWarning("TopDiLeptonHLTValidation") << "Muons collection not found \n";
75  unsigned int nGoodM = 0;
76  for (edm::View<reco::Muon>::const_iterator m = muons->begin(); m != muons->end(); ++m) {
77  if (!m->isPFMuon() || (!m->isGlobalMuon() && !m->isTrackerMuon()))
78  continue;
79  if (m->pt() < ptMuons_)
80  continue;
81  if (fabs(m->eta()) > etaMuons_)
82  continue;
83  if (((m->pfIsolationR04()).sumChargedHadronPt + (m->pfIsolationR04()).sumPhotonEt +
84  (m->pfIsolationR04()).sumNeutralHadronEt) /
85  m->pt() >
86  isoMuons_)
87  continue;
88  nGoodM++;
89  if (nGoodM == 1)
90  mu1_ = &(*m);
91  if (nGoodM == 2)
92  mu2_ = &(*m);
93  }
94  // Jets
96  if (!iEvent.getByToken(tokJets_, jets))
97  edm::LogWarning("TopDiLeptonHLTValidation") << "Jets collection not found \n";
98  unsigned int nGoodJ = 0;
99  for (edm::View<reco::Jet>::const_iterator j = jets->begin(); j != jets->end(); ++j) {
100  if (j->pt() < ptJets_)
101  continue;
102  if (fabs(j->eta()) > etaJets_)
103  continue;
104  nGoodJ++;
105  if (nGoodJ == minJets_)
106  jet_ = &(*j);
107  }
108 
109  if (nGoodE >= minElectrons_ && nGoodM >= minMuons_ && nGoodJ >= minJets_)
110  isAll_ = true;
111 
112  // Trigger
113  Handle<edm::TriggerResults> triggerTable;
114  if (!iEvent.getByToken(tokTrigger_, triggerTable))
115  edm::LogWarning("TopDiLeptonHLTValidation") << "Trigger collection not found \n";
116  const edm::TriggerNames &triggerNames = iEvent.triggerNames(*triggerTable);
117  unsigned int isInteresting = 0;
118  for (unsigned int i = 0; i < triggerNames.triggerNames().size(); ++i) {
119  TString name = triggerNames.triggerNames()[i].c_str();
120  for (unsigned int j = 0; j < vsPaths_.size(); j++) {
121  if (name.Contains(TString(vsPaths_[j]), TString::kIgnoreCase)) {
122  if (triggerTable->accept(i)) {
123  isInteresting++;
124  if (isAll_)
125  hNumTriggerMon->Fill(j + 0.5);
126  }
127  }
128  }
129  }
130 
131  if (isAll_ && isInteresting > 0)
132  isSel_ = true;
133  else
134  isSel_ = false;
135 
136  // Histos
137  if (isAll_) {
138  if (minElectrons_ > 0) {
139  hDenLeptonPt->Fill(elec1_->pt());
141  }
142  if (minElectrons_ > 1) {
143  hDenLeptonPt->Fill(elec2_->pt());
145  }
146  if (minMuons_ > 0) {
147  hDenLeptonPt->Fill(mu1_->pt());
148  hDenLeptonEta->Fill(mu1_->eta());
149  }
150  if (minMuons_ > 1) {
151  hDenLeptonPt->Fill(mu2_->pt());
152  hDenLeptonEta->Fill(mu2_->eta());
153  }
154  hDenJetPt->Fill(jet_->pt());
155  hDenJetEta->Fill(jet_->eta());
156  for (unsigned int idx = 0; idx < vsPaths_.size(); ++idx) {
157  hDenTriggerMon->Fill(idx + 0.5);
158  }
159  }
160  if (isSel_) {
161  if (minElectrons_ > 0) {
162  hNumLeptonPt->Fill(elec1_->pt());
164  }
165  if (minElectrons_ > 1) {
166  hNumLeptonPt->Fill(elec2_->pt());
168  }
169  if (minMuons_ > 0) {
170  hNumLeptonPt->Fill(mu1_->pt());
171  hNumLeptonEta->Fill(mu1_->eta());
172  }
173  if (minMuons_ > 1) {
174  hNumLeptonPt->Fill(mu2_->pt());
175  hNumLeptonEta->Fill(mu2_->eta());
176  }
177  hNumJetPt->Fill(jet_->pt());
178  hNumJetEta->Fill(jet_->eta());
179  }
180 }
double eta() const final
momentum pseudorapidity
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
edm::EDGetTokenT< edm::View< reco::GsfElectron > > tokElectrons_
const reco::GsfElectron * elec2_
bool accept() const
Has at least one path accepted the event?
edm::EDGetTokenT< edm::TriggerResults > tokTrigger_
double pt() const final
transverse momentum
Strings const & triggerNames() const
Definition: TriggerNames.cc:20
void Fill(long long x)
edm::EDGetTokenT< edm::View< reco::Muon > > tokMuons_
const reco::GsfElectron * elec1_
vector< PseudoJet > jets
HLT enums.
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
std::vector< std::string > vsPaths_
edm::EDGetTokenT< edm::View< reco::Jet > > tokJets_
edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const override
Definition: Event.cc:256
void TopDiLeptonHLTValidation::bookHistograms ( DQMStore::IBooker dbe,
edm::Run const &  ,
edm::EventSetup const &   
)
overrideprivate

Definition at line 183 of file TopDiLeptonHLTValidation.cc.

References DQMStore::IBooker::book1D(), hDenJetEta, hDenJetPt, hDenLeptonEta, hDenLeptonPt, hDenTriggerMon, hNumJetEta, hNumJetPt, hNumLeptonEta, hNumLeptonPt, hNumTriggerMon, sDir_, DQMStore::IBooker::setCurrentFolder(), triggerBinLabels(), and vsPaths_.

183  {
184  dbe.setCurrentFolder(sDir_);
185  hDenLeptonPt = dbe.book1D("PtLeptonAll", "PtLeptonAll", 50, 0., 250.);
186  hDenLeptonEta = dbe.book1D("EtaLeptonAll", "EtaLeptonAll", 30, -3., 3.);
187  hDenJetPt = dbe.book1D("PtLastJetAll", "PtLastJetAll", 60, 0., 300.);
188  hDenJetEta = dbe.book1D("EtaLastJetAll", "EtaLastJetAll", 30, -3., 3.);
189  hNumLeptonPt = dbe.book1D("PtLeptonSel", "PtLeptonSel", 50, 0., 250.);
190  hNumLeptonEta = dbe.book1D("EtaLeptonSel", "EtaLeptonSel", 30, -3., 3.);
191  hNumJetPt = dbe.book1D("PtLastJetSel", "PtLastJetSel", 60, 0., 300.);
192  hNumJetEta = dbe.book1D("EtaLastJetSel", "EtaLastJetSel", 30, -3., 3.);
193  // determine number of bins for trigger monitoring
194  unsigned int nPaths = vsPaths_.size();
195  // monitored trigger occupancy for single lepton triggers
196  hNumTriggerMon = dbe.book1D("TriggerMonSel", "TriggerMonSel", nPaths, 0., nPaths);
197  hDenTriggerMon = dbe.book1D("TriggerMonAll", "TriggerMonAll", nPaths, 0., nPaths);
198  // set bin labels for trigger monitoring
200 }
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:106
std::vector< std::string > vsPaths_
void triggerBinLabels(const std::vector< std::string > &labels)
set configurable labels for trigger monitoring histograms
void TopDiLeptonHLTValidation::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 204 of file TopDiLeptonHLTValidation.cc.

References edm::ConfigurationDescriptions::addDefault(), and edm::ParameterSetDescription::setUnknown().

204  {
205  // The following says we do not know what parameters are allowed so do no
206  // validation
207  // Please change this to state exactly what you do use, even if it is no
208  // parameters
210  desc.setUnknown();
211  descriptions.addDefault(desc);
212 }
void addDefault(ParameterSetDescription const &psetDescription)
std::string TopDiLeptonHLTValidation::monitorPath ( const std::string &  label) const
inlineprivate

deduce monitorPath from label, the label is expected to be of type 'selectionPath:monitorPath'

Definition at line 65 of file TopDiLeptonHLTValidation.h.

References tablePrinter::labels, and triggerBinLabels().

Referenced by triggerBinLabels().

65 { return label.substr(label.find(':') + 1); };
char const * label
void TopDiLeptonHLTValidation::triggerBinLabels ( const std::vector< std::string > &  labels)
inlineprivate

set configurable labels for trigger monitoring histograms

Definition at line 116 of file TopDiLeptonHLTValidation.h.

References hDenTriggerMon, hNumTriggerMon, training_settings::idx, monitorPath(), and MonitorElement::setBinLabel().

Referenced by bookHistograms(), and monitorPath().

116  {
117  for (unsigned int idx = 0; idx < labels.size(); ++idx) {
118  hNumTriggerMon->setBinLabel(idx + 1, "[" + monitorPath(labels[idx]) + "]", 1);
119  hDenTriggerMon->setBinLabel(idx + 1, "[" + monitorPath(labels[idx]) + "]", 1);
120  }
121 }
void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
std::string monitorPath(const std::string &label) const

Member Data Documentation

const reco::GsfElectron* TopDiLeptonHLTValidation::elec1_
private

Definition at line 83 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

const reco::GsfElectron* TopDiLeptonHLTValidation::elec2_
private

Definition at line 84 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

double TopDiLeptonHLTValidation::etaElectrons_
private

Definition at line 88 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

double TopDiLeptonHLTValidation::etaJets_
private

Definition at line 105 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

double TopDiLeptonHLTValidation::etaMuons_
private

Definition at line 97 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

MonitorElement* TopDiLeptonHLTValidation::hDenJetEta
private

Definition at line 79 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopDiLeptonHLTValidation::hDenJetPt
private

Definition at line 77 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopDiLeptonHLTValidation::hDenLeptonEta
private

Definition at line 75 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopDiLeptonHLTValidation::hDenLeptonPt
private

Definition at line 73 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopDiLeptonHLTValidation::hDenTriggerMon
private

Definition at line 81 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), bookHistograms(), and triggerBinLabels().

MonitorElement* TopDiLeptonHLTValidation::hNumJetEta
private

Definition at line 78 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopDiLeptonHLTValidation::hNumJetPt
private

Definition at line 76 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopDiLeptonHLTValidation::hNumLeptonEta
private

Definition at line 74 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopDiLeptonHLTValidation::hNumLeptonPt
private

Definition at line 72 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopDiLeptonHLTValidation::hNumTriggerMon
private

Definition at line 80 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), bookHistograms(), and triggerBinLabels().

bool TopDiLeptonHLTValidation::isAll_ = false
private

Definition at line 112 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

double TopDiLeptonHLTValidation::isoElectrons_
private

Definition at line 89 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

double TopDiLeptonHLTValidation::isoMuons_
private

Definition at line 98 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

bool TopDiLeptonHLTValidation::isSel_ = false
private

Definition at line 113 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

edm::InputTag TopDiLeptonHLTValidation::iTrigger_
private

Definition at line 108 of file TopDiLeptonHLTValidation.h.

Referenced by TopDiLeptonHLTValidation().

const reco::Jet* TopDiLeptonHLTValidation::jet_
private

Definition at line 101 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

unsigned int TopDiLeptonHLTValidation::minElectrons_
private

Definition at line 90 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

unsigned int TopDiLeptonHLTValidation::minJets_
private

Definition at line 106 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

unsigned int TopDiLeptonHLTValidation::minMuons_
private

Definition at line 99 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

const reco::Muon* TopDiLeptonHLTValidation::mu1_
private

Definition at line 92 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

const reco::Muon* TopDiLeptonHLTValidation::mu2_
private

Definition at line 93 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

double TopDiLeptonHLTValidation::ptElectrons_
private

Definition at line 87 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

double TopDiLeptonHLTValidation::ptJets_
private

Definition at line 104 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

double TopDiLeptonHLTValidation::ptMuons_
private

Definition at line 96 of file TopDiLeptonHLTValidation.h.

Referenced by analyze().

std::string TopDiLeptonHLTValidation::sDir_
private

Definition at line 71 of file TopDiLeptonHLTValidation.h.

Referenced by bookHistograms().

std::string TopDiLeptonHLTValidation::sElectrons_
private

Definition at line 85 of file TopDiLeptonHLTValidation.h.

Referenced by TopDiLeptonHLTValidation().

std::string TopDiLeptonHLTValidation::sJets_
private

Definition at line 102 of file TopDiLeptonHLTValidation.h.

Referenced by TopDiLeptonHLTValidation().

std::string TopDiLeptonHLTValidation::sMuons_
private

Definition at line 94 of file TopDiLeptonHLTValidation.h.

Referenced by TopDiLeptonHLTValidation().

edm::EDGetTokenT<edm::View<reco::GsfElectron> > TopDiLeptonHLTValidation::tokElectrons_
private

Definition at line 86 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and TopDiLeptonHLTValidation().

edm::EDGetTokenT<edm::View<reco::Jet> > TopDiLeptonHLTValidation::tokJets_
private

Definition at line 103 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and TopDiLeptonHLTValidation().

edm::EDGetTokenT<edm::View<reco::Muon> > TopDiLeptonHLTValidation::tokMuons_
private

Definition at line 95 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and TopDiLeptonHLTValidation().

edm::EDGetTokenT<edm::TriggerResults> TopDiLeptonHLTValidation::tokTrigger_
private

Definition at line 109 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and TopDiLeptonHLTValidation().

std::vector<std::string> TopDiLeptonHLTValidation::vsPaths_
private

Definition at line 110 of file TopDiLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().