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
SelectionStep< Object > Class Template Reference

Templated helper class to allow a selection on a certain object collection. More...

#include <TopDQMHelpers.h>

Public Member Functions

bool select (const edm::Event &event)
 apply selection More...
 
bool select (const edm::Event &event, const std::string &type)
 apply selection with special treatment for PFCandidates More...
 
bool select (const edm::Event &event, const edm::EventSetup &setup)
 apply selection override for jets More...
 
 SelectionStep (const edm::ParameterSet &cfg, edm::ConsumesCollector &&iC)
 default constructor More...
 
bool selectVertex (const edm::Event &event)
 
 ~SelectionStep ()
 default destructor More...
 

Private Attributes

edm::EDGetTokenT
< reco::JetTagCollection
btagLabel_
 choice for b-tag as extra selection type More...
 
double btagWorkingPoint_
 choice of b-tag working point as extra selection type More...
 
double eidCutValue_
 
edm::EDGetTokenT
< edm::ValueMap< float > > 
electronId_
 electronId label as extra selection type More...
 
edm::EDGetTokenT< edm::View
< reco::GsfElectron > > 
gsfEs_
 
std::string jetCorrector_
 jet corrector as extra selection type More...
 
edm::EDGetTokenT
< reco::JetIDValueMap
jetIDLabel_
 jetID as an extra selection type More...
 
StringCutObjectSelector
< reco::JetID > * 
jetIDSelect_
 selection string on the jetID More...
 
int max_
 
int min_
 min/max for object multiplicity More...
 
edm::EDGetTokenT< edm::View
< reco::Vertex > > 
pvs_
 
StringCutObjectSelector< Object > select_
 string cut selector More...
 
edm::EDGetTokenT< edm::View
< Object > > 
src_
 input collection More...
 

Detailed Description

template<typename Object>
class SelectionStep< Object >

Templated helper class to allow a selection on a certain object collection.

"DQM/Physics/interface/TopDQMHelpers.h"

Templated helper class to allow a selection on a certain object collection, which may be monitored by a separate class afterwards. The class wraps and slightly extends the features of the StringCutParser to allow also to apply event based selections, according to a minimal or maximal number of elements in the collection after the object selection has been applied. It takes an edm::ParameterSet in the constructor, which should contain the following elements:

The parameters src and select are mandatory. The parameters min and max are optional. The parameters electronId and jetCorrector are optional. They are added to keep the possibility to apply selections on id'ed electrons or on corrected jets. They may be omitted in the PSet for simplification reasons if not needed at any time. They are not effiective for other object collections but electrons or jets. If none of the two parameters min or max is found in the event the select function returns true if at least one object fullfilled the requirements.

The class has one template value, which is the object collection to apply the selection on. This has to be parsed to the StringCutParser class. The function select is overrided for jets to circumvent problems with the template specialisation. Note that for MET not type1 or muon corrections are supported on reco candidates.

Templated helper class to allow a selection on a certain object collection, which may be monitored by a separate class afterwards. The class wraps and slightly extends the features of the StringCutParser to allow also to apply event based selections, according to a minimal or maximal number of elements in the collection after the object selection has been applied. It takes an edm::ParameterSet in the constructor, which should contain the following elements:

The parameters src and select are mandatory. The parameters min and max are optional. The parameters electronId and jetCorrector are optional. They are added to keep the possibility to apply selections on id'ed electrons or on corrected jets. They may be omitted in the PSet for simplification reasons if not needed at any time. They are not effiective for other object collections but electrons or jets. If none of the two parameters min or max is found in the event the select function returns true if at least one object fullfilled the requirements.

The class has one template value, which is the object collection to apply the selection on. This has to be parsed to the StringCutParser class. The function select is overrided for jets to circumvent problems with the template specialisation. Note that for MET not type1 or muon corrections are supported on reco candidates.

Definition at line 182 of file TopDQMHelpers.h.

Constructor & Destructor Documentation

template<typename Object >
SelectionStep< Object >::SelectionStep ( const edm::ParameterSet cfg,
edm::ConsumesCollector &&  iC 
)

default constructor

Definition at line 234 of file TopDQMHelpers.h.

References SelectionStep< Object >::btagLabel_, SelectionStep< Object >::btagWorkingPoint_, SelectionStep< Object >::eidCutValue_, SelectionStep< Object >::electronId_, edm::ParameterSet::exists(), edm::ParameterSet::existsAs(), edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), SelectionStep< Object >::gsfEs_, SelectionStep< Object >::jetCorrector_, SelectionStep< Object >::jetIDLabel_, SelectionStep< Object >::jetIDSelect_, SelectionStep< Object >::max_, SelectionStep< Object >::min_, SelectionStep< Object >::src_, and AlCaHLTBitMon_QueryRunRegistry::string.

236  : select_(cfg.getParameter<std::string>("select")), jetIDSelect_(0) {
237 
238  src_ =
240  // exist otherwise they are initialized with -1
241  cfg.exists("min") ? min_ = cfg.getParameter<int>("min") : min_ = -1;
242  cfg.exists("max") ? max_ = cfg.getParameter<int>("max") : max_ = -1;
243  std::string mygSF = "gedGsfElectrons";
245  cfg.getUntrackedParameter<edm::InputTag>("myGSF", mygSF));
246  if (cfg.existsAs<edm::ParameterSet>("electronId")) {
247  edm::ParameterSet elecId =
248  cfg.getParameter<edm::ParameterSet>("electronId");
250  elecId.getParameter<edm::InputTag>("src"));
251  eidCutValue_ = elecId.getParameter<double>("cutValue");
252  }
253  if (cfg.exists("jetCorrector")) {
254  jetCorrector_ = cfg.getParameter<std::string>("jetCorrector");
255  }
256  if (cfg.existsAs<edm::ParameterSet>("jetBTagger")) {
257  edm::ParameterSet jetBTagger =
258  cfg.getParameter<edm::ParameterSet>("jetBTagger");
260  jetBTagger.getParameter<edm::InputTag>("label"));
261  btagWorkingPoint_ = jetBTagger.getParameter<double>("workingPoint");
262  }
263  if (cfg.existsAs<edm::ParameterSet>("jetID")) {
264  edm::ParameterSet jetID = cfg.getParameter<edm::ParameterSet>("jetID");
266  jetID.getParameter<edm::InputTag>("label"));
268  jetID.getParameter<std::string>("select"));
269  }
270 }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
bool existsAs(std::string const &parameterName, bool trackiness=true) const
checks if a parameter exists as a given type
Definition: ParameterSet.h:186
edm::EDGetTokenT< edm::ValueMap< float > > electronId_
electronId label as extra selection type
bool exists(std::string const &parameterName) const
checks if a parameter exists
edm::EDGetTokenT< edm::View< reco::GsfElectron > > gsfEs_
int min_
min/max for object multiplicity
edm::EDGetTokenT< reco::JetTagCollection > btagLabel_
choice for b-tag as extra selection type
double eidCutValue_
double btagWorkingPoint_
choice of b-tag working point as extra selection type
edm::EDGetTokenT< edm::View< Object > > src_
input collection
StringCutObjectSelector< reco::JetID > * jetIDSelect_
selection string on the jetID
std::string jetCorrector_
jet corrector as extra selection type
StringCutObjectSelector< Object > select_
string cut selector
edm::EDGetTokenT< reco::JetIDValueMap > jetIDLabel_
jetID as an extra selection type
template<typename Object >
SelectionStep< Object >::~SelectionStep ( )
inline

default destructor

Definition at line 187 of file TopDQMHelpers.h.

187 {};

Member Function Documentation

template<typename Object >
bool SelectionStep< Object >::select ( const edm::Event event)

apply selection

Definition at line 274 of file TopDQMHelpers.h.

References accept(), edm::Event::getByToken(), customizeTrackingMonitorSeedNumber::idx, gen::n, getGTfromDQMFile::obj, and alcazmumu_cfi::src.

Referenced by Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::find(), Vispa.Views.LineDecayView.LineDecayContainer::mousePressEvent(), Vispa.Gui.PortConnection.PointToPointConnection::mousePressEvent(), Vispa.Gui.VispaWidget.VispaWidget::mousePressEvent(), and Vispa.Views.AbstractView.AbstractView::restoreSelection().

274  {
275 
276  // fetch input collection
278  if (!event.getByToken(src_, src)) return false;
279 
280  // load electronId value map if configured such
282  if (!electronId_.isUninitialized()) {
283  if (!event.getByToken(electronId_, electronId)) return false;
284  }
285 
286  // determine multiplicity of selected objects
287  int n = 0;
288  for (typename edm::View<Object>::const_iterator obj = src->begin();
289  obj != src->end(); ++obj) {
290  // special treatment for electrons
291  if (dynamic_cast<const reco::GsfElectron*>(&*obj)) {
292  unsigned int idx = obj - src->begin();
294  ? true
295  : ((double)(*electronId)[src->refAt(idx)] >= eidCutValue_)) {
296  if (select_(*obj)) ++n;
297  }
298  }
299  // normal treatment
300  else {
301  if (select_(*obj)) ++n;
302  }
303  }
304  bool accept =
305  (min_ >= 0 ? n >= min_ : true) && (max_ >= 0 ? n <= max_ : true);
306  return (min_ < 0 && max_ < 0) ? (n > 0) : accept;
307 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
edm::EDGetTokenT< edm::ValueMap< float > > electronId_
electronId label as extra selection type
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:25
int min_
min/max for object multiplicity
double eidCutValue_
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:85
bool isUninitialized() const
Definition: EDGetToken.h:71
edm::EDGetTokenT< edm::View< Object > > src_
input collection
StringCutObjectSelector< Object > select_
string cut selector
template<typename Object >
bool SelectionStep< Object >::select ( const edm::Event event,
const std::string &  type 
)

apply selection with special treatment for PFCandidates

Definition at line 311 of file TopDQMHelpers.h.

References accept(), edm::Event::getByToken(), reco::PFCandidate::gsfElectronRef(), customizeTrackingMonitorSeedNumber::idx, edm::Ref< C, T, F >::isNonnull(), reco::PFCandidate::muonRef(), gen::n, getGTfromDQMFile::obj, and alcazmumu_cfi::src.

Referenced by Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::find(), Vispa.Views.LineDecayView.LineDecayContainer::mousePressEvent(), Vispa.Gui.PortConnection.PointToPointConnection::mousePressEvent(), Vispa.Gui.VispaWidget.VispaWidget::mousePressEvent(), and Vispa.Views.AbstractView.AbstractView::restoreSelection().

312  {
313  // fetch input collection
315  if (!event.getByToken(src_, src)) return false;
316 
317  // special for gsfElectron
319 
320  // load electronId value map if configured such
322  if (!electronId_.isUninitialized()) {
323  if (!event.getByToken(electronId_, electronId)) return false;
324  }
325 
326  // determine multiplicity of selected objects
327  int n = 0;
328  for (typename edm::View<Object>::const_iterator obj = src->begin();
329  obj != src->end(); ++obj) {
330 
331  // special treatment for PF candidates
332  if (dynamic_cast<const reco::PFCandidate*>(&*obj)) {
333  reco::PFCandidate objtmp = dynamic_cast<const reco::PFCandidate&>(*obj);
334 
335  if (objtmp.muonRef().isNonnull() && type == "muon") {
336  if (select_(*obj)) {
337  ++n;
338  }
339  } else if (objtmp.gsfElectronRef().isNonnull() && type == "electron") {
340  if (select_(*obj)) {
342  ++n;
343  } else if (((double)(*electronId)[obj->gsfElectronRef()] >=
344  eidCutValue_)) {
345  ++n;
346  }
347  }
348  // idx_gsf++;
349  }
350  }
351 
352  // special treatment for electrons
353  else if (dynamic_cast<const reco::GsfElectron*>(&*obj)) {
354  unsigned int idx = obj - src->begin();
356  ? true
357  : ((double)(*electronId)[src->refAt(idx)] >= eidCutValue_)) {
358  if (select_(*obj)) ++n;
359  }
360  }
361 
362  // normal treatment
363  else {
364  if (select_(*obj)) ++n;
365  }
366  }
367  bool accept =
368  (min_ >= 0 ? n >= min_ : true) && (max_ >= 0 ? n <= max_ : true);
369  return (min_ < 0 && max_ < 0) ? (n > 0) : accept;
370 }
type
Definition: HCALResponse.h:21
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:252
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
edm::EDGetTokenT< edm::ValueMap< float > > electronId_
electronId label as extra selection type
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:25
int min_
min/max for object multiplicity
reco::GsfElectronRef gsfElectronRef() const
return a reference to the corresponding GsfElectron if any
Definition: PFCandidate.cc:574
double eidCutValue_
reco::MuonRef muonRef() const
Definition: PFCandidate.cc:450
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
Particle reconstructed by the particle flow algorithm.
Definition: PFCandidate.h:39
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:85
bool isUninitialized() const
Definition: EDGetToken.h:71
edm::EDGetTokenT< edm::View< Object > > src_
input collection
StringCutObjectSelector< Object > select_
string cut selector
template<typename Object >
bool SelectionStep< Object >::select ( const edm::Event event,
const edm::EventSetup setup 
)

apply selection override for jets

apply selection (w/o using the template class Object), override for jets

Definition at line 398 of file TopDQMHelpers.h.

References accept(), JetCorrector::correction(), mvaPFMET_cff::corrector, edm::EventSetup::find(), edm::Event::getByToken(), JetCorrector::getJetCorrector(), customizeTrackingMonitorSeedNumber::idx, metsig::jet, edm::eventsetup::EventSetupRecordKey::makeKey(), gen::n, getGTfromDQMFile::obj, and alcazmumu_cfi::src.

Referenced by Vispa.Views.LineDecayView.LineDecayContainer::createObject(), Vispa.Plugins.Browser.BrowserTabController.BrowserTabController::find(), Vispa.Views.LineDecayView.LineDecayContainer::mousePressEvent(), Vispa.Gui.PortConnection.PointToPointConnection::mousePressEvent(), Vispa.Gui.VispaWidget.VispaWidget::mousePressEvent(), and Vispa.Views.AbstractView.AbstractView::restoreSelection().

399  {
400  // fetch input collection
402  if (!event.getByToken(src_, src)) return false;
403 
404  // load btag collection if configured such
405  // NOTE that the JetTagCollection needs an
406  // edm::View to reco::Jets; we have to add
407  // another Handle bjets for this purpose
411  if (!btagLabel_.isUninitialized()) {
412  if (!event.getByToken(src_, bjets)) return false;
413  if (!event.getByToken(btagLabel_, btagger)) return false;
414  if (!event.getByToken(pvs_, pvertex)) return false;
415  }
416 
417  // load jetID value map if configured such
419  if (jetIDSelect_) {
420  if (!event.getByToken(jetIDLabel_, jetID)) return false;
421  }
422 
423  // load jet corrector if configured such
424  const JetCorrector* corrector = 0;
425  if (!jetCorrector_.empty()) {
426  // check whether a jet correcto is in the event setup or not
428  JetCorrectionsRecord>())) {
429  corrector = JetCorrector::getJetCorrector(jetCorrector_, setup);
430  } else {
431  edm::LogVerbatim("TopDQMHelpers")
432  << "\n"
433  << "---------------------------------------------------------------\n"
434  << " No JetCorrectionsRecord available from EventSetup:\n"
435  << " - Jets will not be corrected.\n"
436  << " - If you want to change this add the following lines to your "
437  "cfg file:\n"
438  << "\n"
439  << " ## load jet corrections\n"
440  << " process.load(\""
441  "JetMETCorrections.Configuration.JetCorrectionServicesAllAlgos_cff"
442  "\")\n"
443  << " process.prefer(\"ak5CaloL2L3\")\n"
444  << "---------------------------------------------------------------"
445  "\n";
446  }
447  }
448  // determine multiplicity of selected objects
449  int n = 0;
450  for (typename edm::View<Object>::const_iterator obj = src->begin();
451  obj != src->end(); ++obj) {
452  // check for chosen btag discriminator to be above the
453  // corresponding working point if configured such
454  unsigned int idx = obj - src->begin();
455  if (btagLabel_.isUninitialized() ? true : (*btagger)[bjets->refAt(idx)] >
457  bool passedJetID = true;
458  // check jetID for calo jets
459  if (jetIDSelect_ &&
460  dynamic_cast<const reco::CaloJet*>(src->refAt(idx).get())) {
461  passedJetID = (*jetIDSelect_)((*jetID)[src->refAt(idx)]);
462  }
463  if (passedJetID) {
464  // scale jet energy if configured such
465  Object jet = *obj;
466  jet.scaleEnergy(corrector ? corrector->correction(*obj) : 1.);
467  if (select_(jet)) ++n;
468  }
469  }
470  }
471  bool accept =
472  (min_ >= 0 ? n >= min_ : true) && (max_ >= 0 ? n <= max_ : true);
473  return (min_ < 0 && max_ < 0) ? (n > 0) : accept;
474 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
virtual double correction(const LorentzVector &fJet) const =0
get correction using Jet information only
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:25
edm::EDGetTokenT< edm::View< reco::Vertex > > pvs_
const eventsetup::EventSetupRecord * find(const eventsetup::EventSetupRecordKey &) const
Definition: EventSetup.cc:90
int min_
min/max for object multiplicity
edm::EDGetTokenT< reco::JetTagCollection > btagLabel_
choice for b-tag as extra selection type
tuple corrector
Definition: mvaPFMET_cff.py:89
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
static const JetCorrector * getJetCorrector(const std::string &fName, const edm::EventSetup &fSetup)
retrieve corrector from the event setup. troughs exception if something is missing ...
Definition: JetCorrector.cc:50
double btagWorkingPoint_
choice of b-tag working point as extra selection type
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:85
static EventSetupRecordKey makeKey()
bool isUninitialized() const
Definition: EDGetToken.h:71
edm::EDGetTokenT< edm::View< Object > > src_
input collection
StringCutObjectSelector< reco::JetID > * jetIDSelect_
selection string on the jetID
std::string jetCorrector_
jet corrector as extra selection type
StringCutObjectSelector< Object > select_
string cut selector
edm::EDGetTokenT< reco::JetIDValueMap > jetIDLabel_
jetID as an extra selection type
template<typename Object >
bool SelectionStep< Object >::selectVertex ( const edm::Event event)

Definition at line 373 of file TopDQMHelpers.h.

References accept(), edm::Event::getByToken(), gen::n, getGTfromDQMFile::obj, and alcazmumu_cfi::src.

373  {
374  // fetch input collection
376  if (!event.getByToken(src_, src)) return false;
377 
378  // load electronId value map if configured such
380  if (!electronId_.isUninitialized()) {
381  if (!event.getByToken(electronId_, electronId)) return false;
382  }
383 
384  // determine multiplicity of selected objects
385  int n = 0;
386  for (typename edm::View<Object>::const_iterator obj = src->begin();
387  obj != src->end(); ++obj) {
388 
389  if (select_(*obj)) ++n;
390  }
391  bool accept =
392  (min_ >= 0 ? n >= min_ : true) && (max_ >= 0 ? n <= max_ : true);
393  return (min_ < 0 && max_ < 0) ? (n > 0) : accept;
394 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
edm::EDGetTokenT< edm::ValueMap< float > > electronId_
electronId label as extra selection type
bool accept(const edm::Event &event, const edm::TriggerResults &triggerTable, const std::string &triggerPath)
Definition: TopDQMHelpers.h:25
int min_
min/max for object multiplicity
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:85
bool isUninitialized() const
Definition: EDGetToken.h:71
edm::EDGetTokenT< edm::View< Object > > src_
input collection
StringCutObjectSelector< Object > select_
string cut selector

Member Data Documentation

template<typename Object >
edm::EDGetTokenT<reco::JetTagCollection> SelectionStep< Object >::btagLabel_
private

choice for b-tag as extra selection type

Definition at line 218 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
double SelectionStep< Object >::btagWorkingPoint_
private

choice of b-tag working point as extra selection type

Definition at line 220 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
double SelectionStep< Object >::eidCutValue_
private

electronId pattern we expect the following pattern: 0: fails 1: passes electron ID only 2: passes electron Isolation only 3: passes electron ID and Isolation only 4: passes conversion rejection 5: passes conversion rejection and ID 6: passes conversion rejection and Isolation 7: passes the whole selection As described on https://twiki.cern.ch/twiki/bin/view/CMS/SimpleCutBasedEleID

Definition at line 214 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
edm::EDGetTokenT<edm::ValueMap<float> > SelectionStep< Object >::electronId_
private

electronId label as extra selection type

Definition at line 202 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
edm::EDGetTokenT<edm::View<reco::GsfElectron> > SelectionStep< Object >::gsfEs_
private

Definition at line 225 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
std::string SelectionStep< Object >::jetCorrector_
private

jet corrector as extra selection type

Definition at line 216 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
edm::EDGetTokenT<reco::JetIDValueMap> SelectionStep< Object >::jetIDLabel_
private

jetID as an extra selection type

Definition at line 222 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
StringCutObjectSelector<reco::JetID>* SelectionStep< Object >::jetIDSelect_
private

selection string on the jetID

Definition at line 229 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
int SelectionStep< Object >::max_
private

Definition at line 200 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
int SelectionStep< Object >::min_
private

min/max for object multiplicity

Definition at line 200 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().

template<typename Object >
edm::EDGetTokenT<edm::View<reco::Vertex> > SelectionStep< Object >::pvs_
private

Definition at line 224 of file TopDQMHelpers.h.

template<typename Object >
StringCutObjectSelector<Object> SelectionStep< Object >::select_
private

string cut selector

Definition at line 227 of file TopDQMHelpers.h.

template<typename Object >
edm::EDGetTokenT<edm::View<Object> > SelectionStep< Object >::src_
private

input collection

Definition at line 198 of file TopDQMHelpers.h.

Referenced by SelectionStep< Object >::SelectionStep().