CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
ElectronConversionRejectionValidator Class Reference

#include <ElectronConversionRejectionValidator.h>

Inheritance diagram for ElectronConversionRejectionValidator:
edm::EDAnalyzer

Public Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 
virtual void beginJob ()
 
virtual void beginRun (edm::Run const &r, edm::EventSetup const &theEventSetup)
 
 ElectronConversionRejectionValidator (const edm::ParameterSet &)
 
virtual void endJob ()
 
virtual void endRun (edm::Run &r, edm::EventSetup const &es)
 
virtual ~ElectronConversionRejectionValidator ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

Private Attributes

std::string conversionCollection_
 
std::string conversionCollectionProducer_
 
DQMStoredbe_
 
std::string dqmpath_
 
float eleD0Max_
 
int eleExpectedHitsInnerMax_
 
float elePtMin_
 
std::string fName_
 
std::string gsfElectronCollection_
 
std::string gsfElectronCollectionProducer_
 
MonitorElementh_convEta_
 
MonitorElementh_convLeadTrackAlgo_
 
MonitorElementh_convLeadTrackpt_
 
MonitorElementh_convLog10TrailTrackpt_
 
MonitorElementh_convPhi_
 
MonitorElementh_convProb_
 
MonitorElementh_convPt_
 
MonitorElementh_convRho_
 
MonitorElementh_convTrailTrackAlgo_
 
MonitorElementh_convTrailTrackpt_
 
MonitorElementh_convZ_
 
MonitorElementh_eleEtaAll_
 
MonitorElementh_eleEtaEff_
 
MonitorElementh_eleEtaFail_
 
MonitorElementh_eleEtaPass_
 
MonitorElementh_elePhiAll_
 
MonitorElementh_elePhiEff_
 
MonitorElementh_elePhiFail_
 
MonitorElementh_elePhiPass_
 
MonitorElementh_elePtAll_
 
MonitorElementh_elePtEff_
 
MonitorElementh_elePtFail_
 
MonitorElementh_elePtPass_
 
bool isRunCentrally_
 
edm::InputTag label_tp_
 
int nEntry_
 
int nEvt_
 
edm::ParameterSet parameters_
 
int verbosity_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDAnalyzer
CurrentProcessingContext const * currentContext () const
 

Detailed Description

$Id: ElectronConversionRejectionValidator

Date:
2011/07/29 03:00:20
Revision:
1.1
Author
J.Bendavid

Definition at line 42 of file ElectronConversionRejectionValidator.h.

Constructor & Destructor Documentation

ElectronConversionRejectionValidator::ElectronConversionRejectionValidator ( const edm::ParameterSet pset)
explicit

Definition at line 53 of file ElectronConversionRejectionValidator.cc.

References edm::ParameterSet::getParameter(), and edm::ParameterSet::getUntrackedParameter().

54  {
55 
56  fName_ = pset.getUntrackedParameter<std::string>("Name");
57  verbosity_ = pset.getUntrackedParameter<int>("Verbosity");
58  parameters_ = pset;
59 
60  gsfElectronCollectionProducer_ = pset.getParameter<std::string>("gsfElectronProducer");
61  gsfElectronCollection_ = pset.getParameter<std::string>("gsfElectronCollection");
62 
63  conversionCollectionProducer_ = pset.getParameter<std::string>("convProducer");
64  conversionCollection_ = pset.getParameter<std::string>("conversionCollection");
65  // conversionTrackProducer_ = pset.getParameter<std::string>("trackProducer");
66 
67  isRunCentrally_= pset.getParameter<bool>("isRunCentrally");
68 
69  elePtMin_ = pset.getParameter<double>("elePtMin");
70  eleExpectedHitsInnerMax_ = pset.getParameter<int>("eleExpectedHitsInnerMax");
71  eleD0Max_ = pset.getParameter<double>("eleD0Max");
72 
73  }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
ElectronConversionRejectionValidator::~ElectronConversionRejectionValidator ( )
virtual

Definition at line 79 of file ElectronConversionRejectionValidator.cc.

79 {}

Member Function Documentation

void ElectronConversionRejectionValidator::analyze ( const edm::Event e,
const edm::EventSetup esup 
)
virtual

Implements edm::EDAnalyzer.

Definition at line 199 of file ElectronConversionRejectionValidator.cc.

References abs, reco::TrackBase::algo(), ChiSquaredProbability(), edm::Event::getByLabel(), edm::EventBase::id(), edm::Ref< C, T, F >::isNull(), ConversionTools::matchedConversion(), and reco::TrackBase::pt().

199  {
200 
201  using namespace edm;
202 
203 
204  nEvt_++;
205  LogInfo("ElectronConversionRejectionValidator") << "ElectronConversionRejectionValidator Analyzing event number: " << e.id() << " Global Counter " << nEvt_ <<"\n";
206  // std::cout << "ElectronConversionRejectionValidator Analyzing event number: " << e.id() << " Global Counter " << nEvt_ <<"\n";
207 
208 
209 
213  if (!convHandle.isValid()) {
214  edm::LogError("ElectronConversionRejectionValidator") << "Error! Can't get the Conversion collection "<< std::endl;
215  return;
216  }
217 
219  Handle<reco::GsfElectronCollection> gsfElectronHandle;
221  const reco::GsfElectronCollection &gsfElectronCollection = *(gsfElectronHandle.product());
222  if (!gsfElectronHandle.isValid()) {
223  edm::LogError("ElectronConversionRejectionValidator") << "Error! Can't get the Electron collection "<< std::endl;
224  return;
225  }
226 
227  // offline Primary vertex
229  e.getByLabel("offlinePrimaryVertices", vertexHandle);
230  if (!vertexHandle.isValid()) {
231  edm::LogError("ElectronConversionRejectionValidator") << "Error! Can't get the product primary Vertex Collection "<< "\n";
232  return;
233  }
234  const reco::Vertex &thevtx = vertexHandle->at(0);
235 
237  e.getByLabel("offlineBeamSpot", bsHandle);
238  if (!bsHandle.isValid()) {
239  edm::LogError("ElectronConversionRejectionValidator") << "Error! Can't get the product beamspot Collection "<< "\n";
240  return;
241  }
242  const reco::BeamSpot &thebs = *bsHandle.product();
243 
244 
245  //loop over electrons
246  for (reco::GsfElectronCollection::const_iterator iele = gsfElectronCollection.begin(); iele!=gsfElectronCollection.end(); ++iele) {
247  //apply basic pre-selection cuts to remove the conversions with obviously displaced tracks which will anyways be
248  //removed from the analysis by the hit pattern or impact parameter requirements
249  if (iele->pt() < elePtMin_) continue;
250  if (iele->gsfTrack()->trackerExpectedHitsInner().numberOfHits() > eleExpectedHitsInnerMax_) continue;
251  if ( std::abs(iele->gsfTrack()->dxy(thevtx.position())) > eleD0Max_ ) continue;
252 
253  //fill information for all electrons
254  h_elePtAll_->Fill(iele->pt());
255  h_eleEtaAll_->Fill(iele->eta());
256  h_elePhiAll_->Fill(iele->phi());
257 
258 
259  //find matching conversion if any
260  reco::ConversionRef convref = ConversionTools::matchedConversion(*iele,convHandle,thebs.position());
261  //fill information on passing electrons only if there is no matching conversion (electron passed the conversion rejection cut!)
262  if (convref.isNull()) {
263  h_elePtPass_->Fill(iele->pt());
264  h_eleEtaPass_->Fill(iele->eta());
265  h_elePhiPass_->Fill(iele->phi());
266  }
267  else {
268  //matching conversion, electron failed conversion rejection cut
269  //fill information on electron and matching conversion
270  //(Note that in case of multiple matching conversions passing the requirements, the conversion tools returns the one closest to the IP,
271  //which is most likely to be the conversion of the primary photon in case there was one.)
272 
273  //fill electron info
274  h_elePtFail_->Fill(iele->pt());
275  h_eleEtaFail_->Fill(iele->eta());
276  h_elePhiFail_->Fill(iele->phi());
277 
278  //fill conversion info
279  math::XYZVectorF convmom = convref->refittedPairMomentum();
280  h_convPt_->Fill(convmom.rho());
281  h_convEta_->Fill(convmom.eta());
282  h_convPhi_->Fill(convmom.phi());
283  h_convRho_->Fill(convref->conversionVertex().position().rho());
284  h_convZ_->Fill(convref->conversionVertex().position().z());
285  h_convProb_->Fill(ChiSquaredProbability(convref->conversionVertex().chi2(),convref->conversionVertex().ndof()));
286 
287  //fill information about conversion tracks
288  if (convref->tracks().size()<2) continue;
289 
290  RefToBase<reco::Track> tk1 = convref->tracks().front();
291  RefToBase<reco::Track> tk2 = convref->tracks().back();
292 
293  RefToBase<reco::Track> tklead;
294  RefToBase<reco::Track> tktrail;
295  if (tk1->pt() >= tk2->pt()) {
296  tklead = tk1;
297  tktrail = tk2;
298  }
299  else {
300  tklead = tk2;
301  tktrail = tk1;
302  }
303  h_convLeadTrackpt_->Fill(tklead->pt());
304  h_convTrailTrackpt_->Fill(tktrail->pt());
305  h_convLog10TrailTrackpt_->Fill(log10(tktrail->pt()));
306  h_convLeadTrackAlgo_->Fill(tklead->algo());
307  h_convTrailTrackAlgo_->Fill(tktrail->algo());
308 
309  }
310  }
311 
312 }
#define abs(x)
Definition: mlp_lapack.h:159
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
void Fill(long long x)
TrackAlgorithm algo() const
Definition: TrackBase.h:332
bool isNull() const
Checks for null.
Definition: Ref.h:247
double pt() const
track transverse momentum
Definition: TrackBase.h:131
float ChiSquaredProbability(double chiSquared, double nrDOF)
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< float > > XYZVectorF
spatial vector with cartesian internal representation
Definition: Vector3D.h:18
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:356
edm::EventID id() const
Definition: EventBase.h:56
static reco::ConversionRef matchedConversion(const reco::GsfElectron &ele, const edm::Handle< reco::ConversionCollection > &convCol, const math::XYZPoint &beamspot, bool allowCkfMatch=true, float lxyMin=2.0, float probMin=1e-6, unsigned int nHitsBeforeVtxMax=0)
void ElectronConversionRejectionValidator::beginJob ( void  )
virtual

Reimplemented from edm::EDAnalyzer.

Definition at line 84 of file ElectronConversionRejectionValidator.cc.

References DQMStore::book1D(), dbe_, jptDQMConfig_cff::etaMax, jptDQMConfig_cff::etaMin, cppFunctionSkipper::operator, jptDQMConfig_cff::phiMax, jptDQMConfig_cff::phiMin, Pi, jptDQMConfig_cff::ptMax, PtMinSelector_cfg::ptMin, and DQMStore::setCurrentFolder().

84  {
85 
86  nEvt_=0;
87  nEntry_=0;
88 
89 
90  dbe_ = 0;
92 
93 
94  double ptMin = parameters_.getParameter<double>("ptMin");
95  double ptMax = parameters_.getParameter<double>("ptMax");
96  int ptBin = parameters_.getParameter<int>("ptBin");
97 
98  double trackptMin = parameters_.getParameter<double>("trackptMin");
99  double trackptMax = parameters_.getParameter<double>("trackptMax");
100  int trackptBin = parameters_.getParameter<int>("trackptBin");
101 
102 // double resMin = parameters_.getParameter<double>("resMin");
103 // double resMax = parameters_.getParameter<double>("resMax");
104 // int resBin = parameters_.getParameter<int>("resBin");
105 
106  double etaMin = parameters_.getParameter<double>("etaMin");
107  double etaMax = parameters_.getParameter<double>("etaMax");
108  int etaBin = parameters_.getParameter<int>("etaBin");
109 
110  double phiMin = -TMath::Pi();
111  double phiMax = TMath::Pi();
112  int phiBin = parameters_.getParameter<int>("phiBin");
113 
114 
115  double rhoMin = parameters_.getParameter<double>("rhoMin");
116  double rhoMax = parameters_.getParameter<double>("rhoMax");
117  int rhoBin = parameters_.getParameter<int>("rhoBin");
118 
119  double zMin = parameters_.getParameter<double>("zMin");
120  double zMax = parameters_.getParameter<double>("zMax");
121  int zBin = parameters_.getParameter<int>("zBin");
122 
123 // double dPhiTracksMin = parameters_.getParameter<double>("dPhiTracksMin");
124 // double dPhiTracksMax = parameters_.getParameter<double>("dPhiTracksMax");
125 // int dPhiTracksBin = parameters_.getParameter<int>("dPhiTracksBin");
126 
127 // double eoverpMin = parameters_.getParameter<double>("eoverpMin");
128 // double eoverpMax = parameters_.getParameter<double>("eoverpMax");
129 // int eoverpBin = parameters_.getParameter<int>("eoverpBin");
130 
131 
132  // double dEtaTracksMin = parameters_.getParameter<double>("dEtaTracksMin"); // unused
133  // double dEtaTracksMax = parameters_.getParameter<double>("dEtaTracksMax"); // unused
134  // int dEtaTracksBin = parameters_.getParameter<int>("dEtaTracksBin"); // unused
135 
136 // double dCotTracksMin = parameters_.getParameter<double>("dCotTracksMin");
137 // double dCotTracksMax = parameters_.getParameter<double>("dCotTracksMax");
138 // int dCotTracksBin = parameters_.getParameter<int>("dCotTracksBin");
139 
140 
141  if (dbe_) {
142 
144  // SC from reco photons
145 
146  //TString simfolder = TString(
147  //std::string simpath = dqmpath_ + "SimulationInfo";
149  //
150  // simulation information about conversions
151  // Histograms for efficiencies
152  h_elePtAll_ = dbe_->book1D("elePtAll","# of Electrons",ptBin,ptMin,ptMax);
153  h_eleEtaAll_ = dbe_->book1D("eleEtaAll","# of Electrons",etaBin,etaMin,etaMax);
154  h_elePhiAll_ = dbe_->book1D("elePhiAll","# of Electrons",phiBin,phiMin,phiMax);
155 
156  h_elePtPass_ = dbe_->book1D("elePtPass","# of Electrons",ptBin,ptMin,ptMax);
157  h_eleEtaPass_ = dbe_->book1D("eleEtaPass","# of Electrons",etaBin,etaMin,etaMax);
158  h_elePhiPass_ = dbe_->book1D("elePhiPass","# of Electrons",phiBin,phiMin,phiMax);
159 
160  h_elePtFail_ = dbe_->book1D("elePtFail","# of Electrons",ptBin,ptMin,ptMax);
161  h_eleEtaFail_ = dbe_->book1D("eleEtaFail","# of Electrons",etaBin,etaMin,etaMax);
162  h_elePhiFail_ = dbe_->book1D("elePhiFail","# of Electrons",phiBin,phiMin,phiMax);
163 
164  h_convPt_ = dbe_->book1D("convPt","# of Electrons",ptBin,ptMin,ptMax);
165  h_convEta_ = dbe_->book1D("convEta","# of Electrons",etaBin,etaMin,etaMax);
166  h_convPhi_ = dbe_->book1D("convPhi","# of Electrons",phiBin,phiMin,phiMax);
167  h_convRho_ = dbe_->book1D("convRho","# of Electrons",rhoBin,rhoMin,rhoMax);
168  h_convZ_ = dbe_->book1D("convZ","# of Electrons",zBin,zMin,zMax);
169  h_convProb_ = dbe_->book1D("convProb","# of Electrons",100,0.0,1.0);
170 
171  h_convLeadTrackpt_ = dbe_->book1D("convLeadTrackpt","# of Electrons",trackptBin,trackptMin,trackptMax);
172  h_convTrailTrackpt_ = dbe_->book1D("convTrailTrackpt","# of Electrons",trackptBin,trackptMin,trackptMax);
173  h_convLog10TrailTrackpt_ = dbe_->book1D("convLog10TrailTrackpt","# of Electrons",ptBin,-2.0,3.0);
174 
175  h_convLeadTrackAlgo_ = dbe_->book1D("convLeadTrackAlgo","# of Electrons",31,-0.5,30.5);
176  h_convTrailTrackAlgo_ = dbe_->book1D("convLeadTrackAlgo","# of Electrons",31,-0.5,30.5);
177 
178 
179  } // if DQM
180 
181 
182 
183 }
const double Pi
T getParameter(std::string const &) const
MonitorElement * book1D(const char *name, const char *title, int nchX, double lowX, double highX)
Book 1D histogram.
Definition: DQMStore.cc:717
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:429
void ElectronConversionRejectionValidator::beginRun ( edm::Run const &  r,
edm::EventSetup const &  theEventSetup 
)
virtual

Reimplemented from edm::EDAnalyzer.

Definition at line 187 of file ElectronConversionRejectionValidator.cc.

187  {
188 
189 
190 }
void ElectronConversionRejectionValidator::endJob ( void  )
virtual

Reimplemented from edm::EDAnalyzer.

Definition at line 318 of file ElectronConversionRejectionValidator.cc.

References dbe_, dumpDBToFile_GT_ttrig_cfg::outputFileName, hitfit::return, and DQMStore::save().

318  {
319 
320 
321  std::string outputFileName = parameters_.getParameter<std::string>("OutputFileName");
322  if ( ! isRunCentrally_ ) {
323  dbe_->save(outputFileName);
324  }
325 
326  edm::LogInfo("ElectronConversionRejectionValidator") << "Analyzed " << nEvt_ << "\n";
327  // std::cout << "::endJob Analyzed " << nEvt_ << " events " << " with total " << nPho_ << " Photons " << "\n";
328  // std::cout << "ElectronConversionRejectionValidator::endJob Analyzed " << nEvt_ << " events " << "\n";
329 
330  return ;
331 }
T getParameter(std::string const &) const
void save(const std::string &filename, const std::string &path="", const std::string &pattern="", const std::string &rewrite="", SaveReferenceTag ref=SaveWithReference, int minStatus=dqm::qstatus::STATUS_OK, const std::string &fileupdate="RECREATE")
Definition: DQMStore.cc:2113
void ElectronConversionRejectionValidator::endRun ( edm::Run r,
edm::EventSetup const &  es 
)
virtual

Definition at line 192 of file ElectronConversionRejectionValidator.cc.

192  {
193 
194 
195 }

Member Data Documentation

std::string ElectronConversionRejectionValidator::conversionCollection_
private

Definition at line 73 of file ElectronConversionRejectionValidator.h.

std::string ElectronConversionRejectionValidator::conversionCollectionProducer_
private

Definition at line 72 of file ElectronConversionRejectionValidator.h.

DQMStore* ElectronConversionRejectionValidator::dbe_
private

Definition at line 64 of file ElectronConversionRejectionValidator.h.

std::string ElectronConversionRejectionValidator::dqmpath_
private

Definition at line 78 of file ElectronConversionRejectionValidator.h.

float ElectronConversionRejectionValidator::eleD0Max_
private

Definition at line 88 of file ElectronConversionRejectionValidator.h.

int ElectronConversionRejectionValidator::eleExpectedHitsInnerMax_
private

Definition at line 87 of file ElectronConversionRejectionValidator.h.

float ElectronConversionRejectionValidator::elePtMin_
private

Definition at line 86 of file ElectronConversionRejectionValidator.h.

std::string ElectronConversionRejectionValidator::fName_
private

Definition at line 63 of file ElectronConversionRejectionValidator.h.

std::string ElectronConversionRejectionValidator::gsfElectronCollection_
private

Definition at line 76 of file ElectronConversionRejectionValidator.h.

std::string ElectronConversionRejectionValidator::gsfElectronCollectionProducer_
private

Definition at line 75 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convEta_
private

Definition at line 108 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convLeadTrackAlgo_
private

Definition at line 118 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convLeadTrackpt_
private

Definition at line 115 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convLog10TrailTrackpt_
private

Definition at line 117 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convPhi_
private

Definition at line 109 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convProb_
private

Definition at line 113 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convPt_
private

Definition at line 107 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convRho_
private

Definition at line 110 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convTrailTrackAlgo_
private

Definition at line 119 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convTrailTrackpt_
private

Definition at line 116 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_convZ_
private

Definition at line 111 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_eleEtaAll_
private

Definition at line 92 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_eleEtaEff_
private

Definition at line 104 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_eleEtaFail_
private

Definition at line 100 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_eleEtaPass_
private

Definition at line 96 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_elePhiAll_
private

Definition at line 93 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_elePhiEff_
private

Definition at line 105 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_elePhiFail_
private

Definition at line 101 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_elePhiPass_
private

Definition at line 97 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_elePtAll_
private

Definition at line 91 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_elePtEff_
private

Definition at line 103 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_elePtFail_
private

Definition at line 99 of file ElectronConversionRejectionValidator.h.

MonitorElement* ElectronConversionRejectionValidator::h_elePtPass_
private

Definition at line 95 of file ElectronConversionRejectionValidator.h.

bool ElectronConversionRejectionValidator::isRunCentrally_
private

Definition at line 84 of file ElectronConversionRejectionValidator.h.

edm::InputTag ElectronConversionRejectionValidator::label_tp_
private

Definition at line 80 of file ElectronConversionRejectionValidator.h.

int ElectronConversionRejectionValidator::nEntry_
private

Definition at line 68 of file ElectronConversionRejectionValidator.h.

int ElectronConversionRejectionValidator::nEvt_
private

Definition at line 67 of file ElectronConversionRejectionValidator.h.

edm::ParameterSet ElectronConversionRejectionValidator::parameters_
private
int ElectronConversionRejectionValidator::verbosity_
private

Definition at line 66 of file ElectronConversionRejectionValidator.h.