CMS 3D CMS Logo

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

#include <TopSingleLeptonHLTValidation.h>

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

Public Member Functions

 TopSingleLeptonHLTValidation (const edm::ParameterSet &)
 
 ~TopSingleLeptonHLTValidation () 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::GsfElectronelec_
 
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::Muonmu_
 
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/interface/TopSingleLeptonHLTValidation.h

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

Implementation: harvesting

HLTriggerOffline/Top/src/TopSingleLeptonHLTValidation.cc

Description:

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

Implementation: harvesting

Definition at line 50 of file TopSingleLeptonHLTValidation.h.

Constructor & Destructor Documentation

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

Definition at line 129 of file TopSingleLeptonHLTValidation.h.

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

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

Definition at line 159 of file TopSingleLeptonHLTValidation.h.

References DEFINE_FWK_MODULE.

159  {
160  // do anything here that needs to be done at desctruction time
161  // (e.g. close files, deallocate resources etc.)
162 }

Member Function Documentation

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

Definition at line 46 of file TopSingleLeptonHLTValidation.cc.

References edm::HLTGlobalStatus::accept(), MillePedeFileConverter_cfg::e, elec_, 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_, mu_, extraflags_cff::muons, dataset::name, EnergyCorrector::pt, reco::LeafCandidate::pt(), ptElectrons_, ptJets_, ptMuons_, tokElectrons_, tokJets_, tokMuons_, tokTrigger_, edm::TriggerNames::triggerNames(), edm::Event::triggerNames(), and vsPaths_.

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

Definition at line 180 of file TopSingleLeptonHLTValidation.cc.

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

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

Definition at line 201 of file TopSingleLeptonHLTValidation.cc.

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

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

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

Definition at line 62 of file TopSingleLeptonHLTValidation.h.

References tablePrinter::labels, and triggerBinLabels().

Referenced by triggerBinLabels().

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

set configurable labels for trigger monitoring histograms

Definition at line 111 of file TopSingleLeptonHLTValidation.h.

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

Referenced by bookHistograms(), and monitorPath().

111  {
112  for (unsigned int idx = 0; idx < labels.size(); ++idx) {
113  hNumTriggerMon->setBinLabel(idx + 1, "[" + monitorPath(labels[idx]) + "]", 1);
114  hDenTriggerMon->setBinLabel(idx + 1, "[" + monitorPath(labels[idx]) + "]", 1);
115  }
116 }
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* TopSingleLeptonHLTValidation::elec_
private

Definition at line 80 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

double TopSingleLeptonHLTValidation::etaElectrons_
private

Definition at line 84 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

double TopSingleLeptonHLTValidation::etaJets_
private

Definition at line 100 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

double TopSingleLeptonHLTValidation::etaMuons_
private

Definition at line 92 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

MonitorElement* TopSingleLeptonHLTValidation::hDenJetEta
private

Definition at line 76 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopSingleLeptonHLTValidation::hDenJetPt
private

Definition at line 74 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopSingleLeptonHLTValidation::hDenLeptonEta
private

Definition at line 72 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopSingleLeptonHLTValidation::hDenLeptonPt
private

Definition at line 70 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopSingleLeptonHLTValidation::hDenTriggerMon
private

Definition at line 78 of file TopSingleLeptonHLTValidation.h.

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

MonitorElement* TopSingleLeptonHLTValidation::hNumJetEta
private

Definition at line 75 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopSingleLeptonHLTValidation::hNumJetPt
private

Definition at line 73 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopSingleLeptonHLTValidation::hNumLeptonEta
private

Definition at line 71 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopSingleLeptonHLTValidation::hNumLeptonPt
private

Definition at line 69 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().

MonitorElement* TopSingleLeptonHLTValidation::hNumTriggerMon
private

Definition at line 77 of file TopSingleLeptonHLTValidation.h.

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

bool TopSingleLeptonHLTValidation::isAll_ = false
private

Definition at line 107 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

double TopSingleLeptonHLTValidation::isoElectrons_
private

Definition at line 85 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

double TopSingleLeptonHLTValidation::isoMuons_
private

Definition at line 93 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

bool TopSingleLeptonHLTValidation::isSel_ = false
private

Definition at line 108 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

edm::InputTag TopSingleLeptonHLTValidation::iTrigger_
private

Definition at line 103 of file TopSingleLeptonHLTValidation.h.

Referenced by TopSingleLeptonHLTValidation().

const reco::Jet* TopSingleLeptonHLTValidation::jet_
private

Definition at line 96 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

unsigned int TopSingleLeptonHLTValidation::minElectrons_
private

Definition at line 86 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

unsigned int TopSingleLeptonHLTValidation::minJets_
private

Definition at line 101 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

unsigned int TopSingleLeptonHLTValidation::minMuons_
private

Definition at line 94 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

const reco::Muon* TopSingleLeptonHLTValidation::mu_
private

Definition at line 88 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

double TopSingleLeptonHLTValidation::ptElectrons_
private

Definition at line 83 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

double TopSingleLeptonHLTValidation::ptJets_
private

Definition at line 99 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

double TopSingleLeptonHLTValidation::ptMuons_
private

Definition at line 91 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze().

std::string TopSingleLeptonHLTValidation::sDir_
private

Definition at line 68 of file TopSingleLeptonHLTValidation.h.

Referenced by bookHistograms().

std::string TopSingleLeptonHLTValidation::sElectrons_
private

Definition at line 81 of file TopSingleLeptonHLTValidation.h.

Referenced by TopSingleLeptonHLTValidation().

std::string TopSingleLeptonHLTValidation::sJets_
private

Definition at line 97 of file TopSingleLeptonHLTValidation.h.

Referenced by TopSingleLeptonHLTValidation().

std::string TopSingleLeptonHLTValidation::sMuons_
private

Definition at line 89 of file TopSingleLeptonHLTValidation.h.

Referenced by TopSingleLeptonHLTValidation().

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

Definition at line 82 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and TopSingleLeptonHLTValidation().

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

Definition at line 98 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and TopSingleLeptonHLTValidation().

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

Definition at line 90 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and TopSingleLeptonHLTValidation().

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

Definition at line 104 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and TopSingleLeptonHLTValidation().

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

Definition at line 105 of file TopSingleLeptonHLTValidation.h.

Referenced by analyze(), and bookHistograms().