CMS 3D CMS Logo

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

#include <EventSelector.h>

Classes

struct  BitInfo
 

Public Types

typedef std::vector< std::string > Strings
 

Public Member Functions

bool acceptEvent (TriggerResults const &)
 
bool acceptEvent (unsigned char const *, int) const
 
 EventSelector (Strings const &pathspecs, Strings const &names)
 
 EventSelector (Strings const &pathspecs)
 
 EventSelector (edm::ParameterSet const &pset, Strings const &triggernames)
 
std::shared_ptr< TriggerResultsmaskTriggerResults (TriggerResults const &inputResults)
 
bool wantAll () const
 

Static Public Member Functions

static void fillDescription (ParameterSetDescription &desc)
 
static std::vector< std::string > getEventSelectionVString (edm::ParameterSet const &pset)
 
static bool selectionIsValid (Strings const &pathspec, Strings const &fullTriggerList)
 
static evtSel::OverlapResult testSelectionOverlap (Strings const &pathspec1, Strings const &pathspec2, Strings const &fullTriggerList)
 

Private Types

typedef std::vector< BitInfoBits
 

Private Member Functions

bool acceptAllBits (Bits const &b, HLTGlobalStatus const &tr) const
 
bool acceptOneBit (Bits const &b, HLTGlobalStatus const &tr, hlt::HLTState const &s=hlt::Ready) const
 
bool acceptTriggerPath (HLTPathStatus const &, BitInfo const &) const
 
bool containsExceptions (HLTGlobalStatus const &tr) const
 
void init (Strings const &paths, Strings const &triggernames)
 
bool selectionDecision (HLTGlobalStatus const &tr) const
 

Static Private Member Functions

static std::vector< bool > combine (std::vector< bool > const &a, std::vector< bool > const &b)
 
static std::vector< bool > expandDecisionList (Bits const &b, bool PassOrFail, unsigned int n)
 
static std::string glob2reg (std::string const &s)
 
static bool identical (std::vector< bool > const &a, std::vector< bool > const &b)
 
static bool identical (EventSelector const &a, EventSelector const &b, unsigned int N)
 
static std::vector
< Strings::const_iterator > 
matching_triggers (Strings const &trigs, std::string const &s)
 
static bool overlapping (std::vector< bool > const &a, std::vector< bool > const &b)
 
static bool subset (std::vector< bool > const &a, std::vector< bool > const &b)
 

Private Attributes

Bits absolute_acceptors_
 
bool accept_all_
 
std::vector< Bitsall_must_fail_
 
std::vector< Bitsall_must_fail_noex_
 
Bits conditional_acceptors_
 
Bits exception_acceptors_
 
bool notStarPresent_
 
int nTriggerNames_
 
Strings paths_
 
ParameterSetID psetID_
 
bool psetID_initialized_
 
bool results_from_current_process_
 

Detailed Description

Definition at line 40 of file EventSelector.h.

Member Typedef Documentation

typedef std::vector<BitInfo> edm::EventSelector::Bits
private

Definition at line 88 of file EventSelector.h.

typedef std::vector<std::string> edm::EventSelector::Strings

Definition at line 44 of file EventSelector.h.

Constructor & Destructor Documentation

EventSelector::EventSelector ( Strings const &  pathspecs,
Strings const &  names 
)

Definition at line 49 of file EventSelector.cc.

References init().

50  :
51  accept_all_(false),
58  psetID_initialized_(false),
59  psetID_(),
60  paths_(),
61  nTriggerNames_(0),
62  notStarPresent_(false)
63  {
64  init(pathspecs, names);
65  }
std::vector< Bits > all_must_fail_noex_
Definition: EventSelector.h:95
static const HistoName names[]
bool results_from_current_process_
Definition: EventSelector.h:97
std::vector< Bits > all_must_fail_
Definition: EventSelector.h:94
void init(Strings const &paths, Strings const &triggernames)
ParameterSetID psetID_
Definition: EventSelector.h:99
EventSelector::EventSelector ( Strings const &  pathspecs)
explicit

Definition at line 67 of file EventSelector.cc.

67  :
68  accept_all_(false),
75  psetID_initialized_(false),
76  psetID_(),
77  paths_(pathspecs),
78  nTriggerNames_(0),
79  notStarPresent_(false)
80  {
81  }
std::vector< Bits > all_must_fail_noex_
Definition: EventSelector.h:95
bool results_from_current_process_
Definition: EventSelector.h:97
std::vector< Bits > all_must_fail_
Definition: EventSelector.h:94
ParameterSetID psetID_
Definition: EventSelector.h:99
EventSelector::EventSelector ( edm::ParameterSet const &  pset,
Strings const &  triggernames 
)

Definition at line 83 of file EventSelector.cc.

References edm::ParameterSet::empty(), edm::ParameterSet::getParameter(), init(), and mergeAndRegister::paths.

84  :
85  accept_all_(false),
92  psetID_initialized_(false),
93  psetID_(),
94  paths_(),
95  nTriggerNames_(0),
96  notStarPresent_(false)
97  {
98  Strings paths; // default is empty...
99 
100  if (!config.empty())
101  paths = config.getParameter<Strings>("SelectEvents");
102 
103  init(paths, triggernames);
104  }
std::vector< Bits > all_must_fail_noex_
Definition: EventSelector.h:95
std::vector< std::string > Strings
Definition: MsgTools.h:18
bool results_from_current_process_
Definition: EventSelector.h:97
std::vector< Bits > all_must_fail_
Definition: EventSelector.h:94
void init(Strings const &paths, Strings const &triggernames)
ParameterSetID psetID_
Definition: EventSelector.h:99

Member Function Documentation

bool EventSelector::acceptAllBits ( Bits const &  b,
HLTGlobalStatus const &  tr 
) const
private

Definition at line 433 of file EventSelector.cc.

References alignCSCRings::e, edm::hlt::Fail, i, edm::hlt::Pass, and edm::HLTGlobalStatus::state().

Referenced by selectionDecision().

435  {
436  Bits::const_iterator i(b.begin());
437  Bits::const_iterator e(b.end());
438  for(;i!=e;++i) {
439  hlt::HLTState bstate = i->accept_state_ ? hlt::Pass : hlt::Fail;
440  if (tr[i->pos_].state() != bstate) return false;
441  }
442  return true;
443  } // acceptAllBits
int i
Definition: DBlmapReader.cc:9
HLTState
status of a trigger path
Definition: HLTenums.h:18
reject
Definition: HLTenums.h:20
accept
Definition: HLTenums.h:19
double b
Definition: hdecay.h:120
bool EventSelector::acceptEvent ( TriggerResults const &  tr)

Definition at line 270 of file EventSelector.cc.

References accept_all_, edm::hlt::Exception, init(), edm::TriggerResults::parameterSetID(), paths_, psetID_, psetID_initialized_, results_from_current_process_, selectionDecision(), and edm::errors::Unknown.

Referenced by edm::detail::NamedEventSelector::match(), and selectionIsValid().

271  {
272  if (accept_all_) return true;
273 
274  // For the current process we already initialized in the constructor,
275  // The trigger names will not change so we can skip initialization.
277 
278  // For previous processes we need to get the trigger names that
279  // correspond to the bits in TriggerResults from the ParameterSet
280  // set registry, which is stored once per file. The ParameterSetID
281  // stored in TriggerResults is the key used to find the info in the
282  // registry. We optimize using the fact the ID is unique. If the ID
283  // has not changed since the last time we initialized with new triggernames,
284  // then the names have not changed and we can skip this initialization.
285  if (!(psetID_initialized_ && psetID_ == tr.parameterSetID())) {
286 
287  Strings triggernames;
288  bool fromPSetRegistry;
289 
291  if (tns->getTrigPaths(tr, triggernames, fromPSetRegistry)) {
292 
293  init(paths_, triggernames);
294 
295  if (fromPSetRegistry) {
296  psetID_ = tr.parameterSetID();
297  psetID_initialized_ = true;
298  }
299  else {
300  psetID_initialized_ = false;
301  }
302  }
303  // This should never happen
304  else {
306  << "EventSelector::acceptEvent cannot find the trigger names for\n"
307  "a process for which the configuration has requested that the\n"
308  "OutputModule use TriggerResults to select events from. This should\n"
309  "be impossible, please send information to reproduce this problem to\n"
310  "the edm developers.\n";
311  }
312  }
313  }
314 
315  // Now make the decision, based on the supplied TriggerResults tr,
316  // which of course can be treated as an HLTGlobalStatus by inheritance
317 
318  return selectionDecision(tr);
319 
320  } // acceptEvent(TriggerResults const& tr)
std::vector< std::string > Strings
Definition: MsgTools.h:18
bool results_from_current_process_
Definition: EventSelector.h:97
void init(Strings const &paths, Strings const &triggernames)
bool selectionDecision(HLTGlobalStatus const &tr) const
ParameterSetID psetID_
Definition: EventSelector.h:99
bool EventSelector::acceptEvent ( unsigned char const *  array_of_trigger_results,
int  number_of_trigger_paths 
) const

Definition at line 323 of file EventSelector.cc.

References accept_all_, edm::errors::Configuration, edm::hlt::Exception, results_from_current_process_, and selectionDecision().

325  {
326 
327  // This should never occur unless someone uses this function in
328  // an incorrect way ...
331  << "\nEventSelector.cc::acceptEvent, you are attempting to\n"
332  << "use a bit array for trigger results instead of the\n"
333  << "TriggerResults object for a previous process. This\n"
334  << "will not work and ought to be impossible\n";
335  }
336 
337  if (accept_all_) return true;
338 
339  // Form HLTGlobalStatus object to represent the array_of_trigger_results
340  HLTGlobalStatus tr(number_of_trigger_paths);
341  int byteIndex = 0;
342  int subIndex = 0;
343  for (int pathIndex = 0; pathIndex < number_of_trigger_paths; ++pathIndex)
344  {
345  int state = array_of_trigger_results[byteIndex] >> (subIndex * 2);
346  state &= 0x3;
347  HLTPathStatus pathStatus(static_cast<hlt::HLTState>(state));
348  tr[pathIndex] = pathStatus;
349  ++subIndex;
350  if (subIndex == 4)
351  { ++byteIndex;
352  subIndex = 0;
353  }
354  }
355 
356  // Now make the decision, based on the HLTGlobalStatus tr,
357  // which we have created from the supplied array of results
358 
359  return selectionDecision(tr);
360 
361  } // acceptEvent(array_of_trigger_results, number_of_trigger_paths)
bool results_from_current_process_
Definition: EventSelector.h:97
bool selectionDecision(HLTGlobalStatus const &tr) const
bool EventSelector::acceptOneBit ( Bits const &  b,
HLTGlobalStatus const &  tr,
hlt::HLTState const &  s = hlt::Ready 
) const
private

Definition at line 413 of file EventSelector.cc.

References alignCSCRings::e, edm::hlt::Exception, edm::hlt::Fail, i, edm::hlt::Pass, and edm::HLTGlobalStatus::state().

Referenced by selectionDecision().

416  {
417  bool lookForException = (s == hlt::Exception);
418  Bits::const_iterator i(b.begin());
419  Bits::const_iterator e(b.end());
420  for(;i!=e;++i) {
421  hlt::HLTState bstate =
422  lookForException ? hlt::Exception
423  : i->accept_state_ ? hlt::Pass
424  : hlt::Fail;
425  if (tr[i->pos_].state() == bstate) return true;
426  }
427  return false;
428  } // acceptOneBit
int i
Definition: DBlmapReader.cc:9
HLTState
status of a trigger path
Definition: HLTenums.h:18
reject
Definition: HLTenums.h:20
accept
Definition: HLTenums.h:19
double b
Definition: hdecay.h:120
bool EventSelector::acceptTriggerPath ( HLTPathStatus const &  pathStatus,
BitInfo const &  pathInfo 
) const
private

Definition at line 401 of file EventSelector.cc.

References edm::EventSelector::BitInfo::accept_state_, edm::hlt::Exception, edm::hlt::Fail, edm::hlt::Pass, and edm::HLTPathStatus::state().

403  {
404  return (((pathStatus.state()==hlt::Pass) && (pathInfo.accept_state_)) ||
405  ((pathStatus.state()==hlt::Fail) && !(pathInfo.accept_state_)) ||
406  ((pathStatus.state()==hlt::Exception)));
407  }
reject
Definition: HLTenums.h:20
accept
Definition: HLTenums.h:19
std::vector< bool > EventSelector::combine ( std::vector< bool > const &  a,
std::vector< bool > const &  b 
)
staticprivate

Definition at line 1114 of file EventSelector.cc.

References assert(), i, and x.

Referenced by testSelectionOverlap().

1116  {
1117  assert(a.size() == b.size());
1118  std::vector<bool> x(a.size());
1119  for (unsigned int i = 0; i != a.size(); ++i) {
1120  x[i] = a[i] || b[i];
1121  } // a really sharp compiler will optimize the hell out of this,
1122  // exploiting word-size OR operations.
1123  return x;
1124  } // combine
int i
Definition: DBlmapReader.cc:9
assert(m_qm.get())
double b
Definition: hdecay.h:120
double a
Definition: hdecay.h:121
Definition: DDAxes.h:10
bool EventSelector::containsExceptions ( HLTGlobalStatus const &  tr) const
private

Definition at line 961 of file EventSelector.cc.

References alignCSCRings::e, edm::hlt::Exception, i, and edm::HLTGlobalStatus::size().

Referenced by selectionDecision().

962  {
963  unsigned int e = tr.size();
964  for (unsigned int i = 0; i < e; ++i) {
965  if (tr[i].state() == hlt::Exception) return true;
966  }
967  return false;
968  }
int i
Definition: DBlmapReader.cc:9
std::vector< bool > EventSelector::expandDecisionList ( Bits const &  b,
bool  PassOrFail,
unsigned int  n 
)
staticprivate

Definition at line 1051 of file EventSelector.cc.

References i, and x.

Referenced by identical(), maskTriggerResults(), and testSelectionOverlap().

1054  {
1055  std::vector<bool> x(n, false);
1056  for (unsigned int i = 0; i != b.size(); ++i) {
1057  if (b[i].accept_state_ == PassOrFail) x[b[i].pos_] = true;
1058  }
1059  return x;
1060  } // expandDecisionList
int i
Definition: DBlmapReader.cc:9
double b
Definition: hdecay.h:120
Definition: DDAxes.h:10
void EventSelector::fillDescription ( ParameterSetDescription desc)
static

Definition at line 1127 of file EventSelector.cc.

References edm::ParameterSetDescription::addOptional(), and edm::ParameterSetDescription::addUntracked().

Referenced by edm::OutputModule::fillDescription(), and edm::one::OutputModuleBase::fillDescription().

1127  {
1128  ParameterSetDescription selector;
1129  selector.addOptional<std::vector<std::string> >("SelectEvents");
1130  desc.addUntracked<ParameterSetDescription>("SelectEvents", selector);
1131  }
std::vector< std::string > EventSelector::getEventSelectionVString ( edm::ParameterSet const &  pset)
static

Returns the list of strings that correspond to the trigger selection request in the specified parameter set (the list of strings contained in the "SelectEvents" parameter).

Parameters
psetThe ParameterSet that contains the trigger selection.
Returns
the trigger selection list (vector of string).

Definition at line 937 of file EventSelector.cc.

References edm::ParameterSet::empty(), edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), and corrVsCorr::selection.

Referenced by dqmservices::TriggerSelector::getEventSelectionVString(), and edm::StreamerOutputModuleBase::StreamerOutputModuleBase().

938  {
939  // default the selection to everything (wildcard)
941  selection.push_back("*");
942  selection.push_back("!*");
943  selection.push_back("exception@*");
944 
945  // the SelectEvents parameter is a ParameterSet within
946  // a ParameterSet, so we have to pull it out twice
947  ParameterSet selectEventsParamSet =
948  pset.getUntrackedParameter("SelectEvents", ParameterSet());
949  if (!selectEventsParamSet.empty()) {
950  Strings path_specs =
951  selectEventsParamSet.getParameter<Strings>("SelectEvents");
952  if (!path_specs.empty()) {
953  selection = path_specs;
954  }
955  }
956 
957  // return the result
958  return selection;
959  }
std::vector< std::string > Strings
Definition: MsgTools.h:18
selection
main part
Definition: corrVsCorr.py:98
static std::string edm::EventSelector::glob2reg ( std::string const &  s)
staticprivate
bool EventSelector::identical ( std::vector< bool > const &  a,
std::vector< bool > const &  b 
)
staticprivate

Definition at line 973 of file EventSelector.cc.

References i, and gen::n.

Referenced by identical(), and testSelectionOverlap().

974  {
975  unsigned int n = a.size();
976  if (n != b.size()) return false;
977  for (unsigned int i=0; i!=n; ++i) {
978  if (a[i] != b[i]) return false;
979  }
980  return true;
981  }
int i
Definition: DBlmapReader.cc:9
double b
Definition: hdecay.h:120
double a
Definition: hdecay.h:121
bool EventSelector::identical ( EventSelector const &  a,
EventSelector const &  b,
unsigned int  N 
)
staticprivate

Definition at line 984 of file EventSelector.cc.

References absolute_acceptors_, all_must_fail_, all_must_fail_noex_, conditional_acceptors_, exception_acceptors_, expandDecisionList(), identical(), relval_steps::k, contentValuesFiles::m, and edm::match().

987  {
988  // create the expanded masks for the various decision lists in a and b
989  if (!identical(expandDecisionList(a.absolute_acceptors_,true,N),
990  expandDecisionList(b.absolute_acceptors_,true,N)))
991  return false;
992  if (!identical(expandDecisionList(a.conditional_acceptors_,true,N),
993  expandDecisionList(b.conditional_acceptors_,true,N)))
994  return false;
995  if (!identical(expandDecisionList(a.absolute_acceptors_,false,N),
996  expandDecisionList(b.absolute_acceptors_,false,N)))
997  return false;
998  if (!identical(expandDecisionList(a.conditional_acceptors_,false,N),
999  expandDecisionList(b.conditional_acceptors_,false,N)))
1000  return false;
1001  if (!identical(expandDecisionList(a.exception_acceptors_,true,N),
1002  expandDecisionList(b.exception_acceptors_,true,N)))
1003  return false;
1004  if (a.all_must_fail_.size() != b.all_must_fail_.size()) return false;
1005 
1006  std::vector< std::vector<bool> > aMustFail;
1007  for (unsigned int m = 0; m != a.all_must_fail_.size(); ++m) {
1008  aMustFail.push_back(expandDecisionList(a.all_must_fail_[m],false,N));
1009  }
1010  std::vector< std::vector<bool> > aMustFailNoex;
1011  for (unsigned int m = 0; m != a.all_must_fail_noex_.size(); ++m) {
1012  aMustFailNoex.push_back
1013  (expandDecisionList(a.all_must_fail_noex_[m],false,N));
1014  }
1015  std::vector< std::vector<bool> > bMustFail;
1016  for (unsigned int m = 0; m != b.all_must_fail_.size(); ++m) {
1017  bMustFail.push_back(expandDecisionList(b.all_must_fail_[m],false,N));
1018  }
1019  std::vector< std::vector<bool> > bMustFailNoex;
1020  for (unsigned int m = 0; m != b.all_must_fail_noex_.size(); ++m) {
1021  bMustFailNoex.push_back
1022  (expandDecisionList(b.all_must_fail_noex_[m],false,N));
1023  }
1024 
1025  for (unsigned int m = 0; m != aMustFail.size(); ++m) {
1026  bool match = false;
1027  for (unsigned int k = 0; k != bMustFail.size(); ++k) {
1028  if (identical(aMustFail[m],bMustFail[k])) {
1029  match = true;
1030  break;
1031  }
1032  }
1033  if (!match) return false;
1034  }
1035  for (unsigned int m = 0; m != aMustFailNoex.size(); ++m) {
1036  bool match = false;
1037  for (unsigned int k = 0; k != bMustFailNoex.size(); ++k) {
1038  if (identical(aMustFailNoex[m],bMustFailNoex[k])) {
1039  match = true;
1040  break;
1041  }
1042  }
1043  if (!match) return false;
1044  }
1045 
1046  return true;
1047 
1048  } // identical (EventSelector, EventSelector, N);
#define N
Definition: blowfish.cc:9
double b
Definition: hdecay.h:120
static bool identical(std::vector< bool > const &a, std::vector< bool > const &b)
double a
Definition: hdecay.h:121
static std::vector< bool > expandDecisionList(Bits const &b, bool PassOrFail, unsigned int n)
std::string match(BranchDescription const &a, BranchDescription const &b, std::string const &fileName)
void EventSelector::init ( Strings const &  paths,
Strings const &  triggernames 
)
private

Definition at line 107 of file EventSelector.cc.

References absolute_acceptors_, accept_all_, all_must_fail_, all_must_fail_noex_, conditional_acceptors_, edm::errors::Configuration, HLT_25ns14e33_v1_cff::distance, end, edm::hlt::Exception, exception_acceptors_, i, edm::is_glob(), notStarPresent_, nTriggerNames_, edm::regexMatch(), AlCaHLTBitMon_QueryRunRegistry::string, and edmStreamStallGrapher::t.

Referenced by acceptEvent(), and EventSelector().

109  {
110  // std::cerr << "### init entered\n";
111  accept_all_ = false;
112  absolute_acceptors_.clear(),
113  conditional_acceptors_.clear(),
114  exception_acceptors_.clear(),
115  all_must_fail_.clear();
116  all_must_fail_noex_.clear();
117  nTriggerNames_ = triggernames.size();
118  notStarPresent_ = false;
119 
120  if (paths.empty())
121  {
122  accept_all_ = true;
123  return;
124  }
125 
126  // The following are for the purpose of establishing accept_all_ by
127  // virtue of an inclusive set of paths:
128  bool unrestricted_star = false;
129  bool negated_star = false;
130  bool exception_star = false;
131 
132  for (Strings::const_iterator i(paths.begin()), end(paths.end());
133  i!=end; ++i)
134  {
135  std::string pathSpecifier(*i);
136  boost::erase_all(pathSpecifier, " \t"); // whitespace eliminated
137  if (pathSpecifier == "*") unrestricted_star = true;
138  if (pathSpecifier == "!*") negated_star = true;
139  if (pathSpecifier == "exception@*") exception_star = true;
140 
141  std::string basePathSpec(pathSpecifier);
142  bool noex_demanded = false;
144  and_noexception = pathSpecifier.find("&noexception");
145  if (and_noexception != std::string::npos) {
146  basePathSpec = pathSpecifier.substr(0,and_noexception);
147  noex_demanded = true;
148  }
149  std::string::size_type and_noex = pathSpecifier.find("&noex");
150  if (and_noex != std::string::npos) {
151  basePathSpec = pathSpecifier.substr(0,and_noexception);
152  noex_demanded = true;
153  }
154  and_noexception = basePathSpec.find("&noexception");
155  and_noex = basePathSpec.find("&noex");
156  if (and_noexception != std::string::npos ||
157  and_noex != std::string::npos)
159  << "EventSelector::init, An OutputModule is using SelectEvents\n"
160  "to request a trigger name, but specifying &noexceptions twice\n"
161  << "The improper trigger name is: " << pathSpecifier << "\n";
162 
163  std::string realname(basePathSpec);
164  bool negative_criterion = false;
165  if (basePathSpec[0] == '!') {
166  negative_criterion = true;
167  realname = basePathSpec.substr(1,std::string::npos);
168  }
169  bool exception_spec = false;
170  if (realname.find("exception@") == 0) {
171  exception_spec = true;
172  realname = realname.substr(10, std::string::npos);
173  // strip off 10 chars, which is length of "exception@"
174  }
175  if (negative_criterion && exception_spec)
177  << "EventSelector::init, An OutputModule is using SelectEvents\n"
178  "to request a trigger name starting with !exception@.\n"
179  "This is not supported.\n"
180  << "The improper trigger name is: " << pathSpecifier << "\n";
181  if (noex_demanded && exception_spec)
183  << "EventSelector::init, An OutputModule is using SelectEvents\n"
184  "to request a trigger name starting with exception@ "
185  "and also demanding no &exceptions.\n"
186  << "The improper trigger name is: " << pathSpecifier << "\n";
187 
188 
189  // instead of "see if the name can be found in the full list of paths"
190  // we want to find all paths that match this name.
191  std::vector<Strings::const_iterator> matches =
192  regexMatch(triggernames, realname);
193 
194  if (matches.empty() && !is_glob(realname))
195  {
197  << "EventSelector::init, An OutputModule is using SelectEvents\n"
198  "to request a trigger name that does not exist\n"
199  << "The unknown trigger name is: " << realname << "\n";
200  }
201  if (matches.empty() && is_glob(realname))
202  {
203  LogWarning("Configuration")
204  << "EventSelector::init, An OutputModule is using SelectEvents\n"
205  "to request a wildcarded trigger name that does not match any trigger \n"
206  << "The wildcarded trigger name is: " << realname << "\n";
207  }
208 
209  if (!negative_criterion && !noex_demanded && !exception_spec) {
210  for (unsigned int t = 0; t != matches.size(); ++t) {
211  BitInfo bi(distance(triggernames.begin(),matches[t]), true);
212  absolute_acceptors_.push_back(bi);
213  }
214  } else if (!negative_criterion && noex_demanded) {
215  for (unsigned int t = 0; t != matches.size(); ++t) {
216  BitInfo bi(distance(triggernames.begin(),matches[t]), true);
217  conditional_acceptors_.push_back(bi);
218  }
219  } else if (exception_spec) {
220  for (unsigned int t = 0; t != matches.size(); ++t) {
221  BitInfo bi(distance(triggernames.begin(),matches[t]), true);
222  exception_acceptors_.push_back(bi);
223  }
224  } else if (negative_criterion && !noex_demanded) {
225  if (matches.empty()) {
227  << "EventSelector::init, An OutputModule is using SelectEvents\n"
228  "to request all fails on a set of trigger names that do not exist\n"
229  << "The problematic name is: " << pathSpecifier << "\n";
230 
231  } else if (matches.size() == 1) {
232  BitInfo bi(distance(triggernames.begin(),matches[0]), false);
233  absolute_acceptors_.push_back(bi);
234  } else {
235  Bits mustfail;
236  for (unsigned int t = 0; t != matches.size(); ++t) {
237  BitInfo bi(distance(triggernames.begin(),matches[t]), false);
238  // We set this to false because that will demand bits are Fail.
239  mustfail.push_back(bi);
240  }
241  all_must_fail_.push_back(mustfail);
242  }
243  } else if (negative_criterion && noex_demanded) {
244  if (matches.empty()) {
246  << "EventSelector::init, An OutputModule is using SelectEvents\n"
247  "to request all fails on a set of trigger names that do not exist\n"
248  << "The problematic name is: " << pathSpecifier << "\n";
249 
250  } else if (matches.size() == 1) {
251  BitInfo bi(distance(triggernames.begin(),matches[0]), false);
252  conditional_acceptors_.push_back(bi);
253  } else {
254  Bits mustfail;
255  for (unsigned int t = 0; t != matches.size(); ++t) {
256  BitInfo bi(distance(triggernames.begin(),matches[t]), false);
257  mustfail.push_back(bi);
258  }
259  all_must_fail_noex_.push_back(mustfail);
260  }
261  }
262  } // end of the for loop on i(paths.begin()), end(paths.end())
263 
264  if (unrestricted_star && negated_star && exception_star) accept_all_ = true;
265 
266  // std::cerr << "### init exited\n";
267 
268  } // EventSelector::init
std::vector< Bits > all_must_fail_noex_
Definition: EventSelector.h:95
int i
Definition: DBlmapReader.cc:9
bool is_glob(std::string const &pattern)
Definition: RegexMatch.cc:18
std::vector< BitInfo > Bits
Definition: EventSelector.h:88
uint16_t size_type
std::vector< Bits > all_must_fail_
Definition: EventSelector.h:94
#define end
Definition: vmac.h:37
std::vector< std::vector< std::string >::const_iterator > regexMatch(std::vector< std::string > const &strings, boost::regex const &regexp)
Definition: RegexMatch.cc:30
std::shared_ptr< TriggerResults > EventSelector::maskTriggerResults ( TriggerResults const &  inputResults)

Applies a trigger selection mask to a specified trigger result object. Within the trigger result object, each path status is left unchanged if it satisfies the trigger selection (path specs) or cleared if it does not satisfy the trigger selection. In this way, the resulting trigger result object contains only path status values that "pass" the selection criteria.

Parameters
inputResultsThe raw trigger results object that will be masked.
Returns
a copy of the input trigger results object with only the path status results that match the trigger selection.
Exceptions
edm::Exceptionif the number of paths in the TriggerResults object does not match the specified full trigger list, or if the trigger selection is invalid in the context of the full trigger list.

Definition at line 772 of file EventSelector.cc.

References absolute_acceptors_, all_must_fail_, all_must_fail_noex_, conditional_acceptors_, edm::errors::EventCorruption, edm::hlt::Exception, exception_acceptors_, expandDecisionList(), f, edm::hlt::Fail, contentValuesFiles::m, N, nTriggerNames_, edm::TriggerResults::parameterSetID(), edm::hlt::Pass, alignCSCRings::s, edm::HLTGlobalStatus::size(), and edm::HLTGlobalStatus::state().

773  {
774  // fetch and validate the total number of paths
775  unsigned int fullTriggerCount = nTriggerNames_;
776  unsigned int N = fullTriggerCount;
777  if (fullTriggerCount != inputResults.size())
778  {
780  << "EventSelector::maskTriggerResults, the TriggerResults\n"
781  << "size (" << inputResults.size()
782  << ") does not match the number of paths in the\n"
783  << "full trigger list (" << fullTriggerCount << ").\n";
784  }
785 
786  // create a suitable global status object to work with, all in Ready state
787  HLTGlobalStatus mask(fullTriggerCount);
788 
789  // Deal with must_fail acceptors that would cause selection
790  for (unsigned int m = 0; m < this->all_must_fail_.size(); ++m) {
791  std::vector<bool>
792  f = expandDecisionList(this->all_must_fail_[m],false,N);
793  bool all_fail = true;
794  for (unsigned int ipath = 0; ipath < N; ++ipath) {
795  if ((f[ipath]) && (inputResults [ipath].state() != hlt::Fail)) {
796  all_fail = false;
797  break;
798  }
799  }
800  if (all_fail) {
801  for (unsigned int ipath = 0; ipath < N; ++ipath) {
802  if (f[ipath]) {
803  mask[ipath] = hlt::Fail;
804  }
805  }
806  }
807  }
808  for (unsigned int m = 0; m < this->all_must_fail_noex_.size(); ++m) {
809  std::vector<bool>
810  f = expandDecisionList(this->all_must_fail_noex_[m],false,N);
811  bool all_fail = true;
812  for (unsigned int ipath = 0; ipath < N; ++ipath) {
813  if ((f[ipath]) && (inputResults [ipath].state() != hlt::Fail)) {
814  all_fail = false;
815  break;
816  }
817  }
818  if (all_fail) {
819  for (unsigned int ipath = 0; ipath < N; ++ipath) {
820  if (f[ipath]) {
821  mask[ipath] = hlt::Fail;
822  }
823  }
824  }
825  } // factoring opportunity - work done for fail_noex_ is same as for fail_
826 
827  // Deal with normal acceptors that would cause selection
828  std::vector<bool>
829  aPassAbs = expandDecisionList(this->absolute_acceptors_,true,N);
830  std::vector<bool>
831  aPassCon = expandDecisionList(this->conditional_acceptors_,true,N);
832  std::vector<bool>
833  aFailAbs = expandDecisionList(this->absolute_acceptors_,false,N);
834  std::vector<bool>
835  aFailCon = expandDecisionList(this->conditional_acceptors_,false,N);
836  std::vector<bool>
837  aExc = expandDecisionList(this->exception_acceptors_,true,N);
838  for (unsigned int ipath = 0; ipath < N; ++ipath) {
839  hlt::HLTState s = inputResults [ipath].state();
840  if (((aPassAbs[ipath]) && (s == hlt::Pass))
841  ||
842  ((aPassCon[ipath]) && (s == hlt::Pass))
843  ||
844  ((aFailAbs[ipath]) && (s == hlt::Fail))
845  ||
846  ((aFailCon[ipath]) && (s == hlt::Fail))
847  ||
848  ((aExc[ipath]) && (s == hlt::Exception)))
849  {
850  mask[ipath] = s;
851  }
852  }
853 
854  // Based on the global status for the mask, create and return a
855  // TriggerResults
856  auto maskedResults = std::make_shared<TriggerResults>(mask, inputResults.parameterSetID());
857  return maskedResults;
858  } // maskTriggerResults
std::vector< Bits > all_must_fail_noex_
Definition: EventSelector.h:95
HLTState
status of a trigger path
Definition: HLTenums.h:18
reject
Definition: HLTenums.h:20
std::vector< Bits > all_must_fail_
Definition: EventSelector.h:94
accept
Definition: HLTenums.h:19
double f[11][100]
#define N
Definition: blowfish.cc:9
static std::vector< bool > expandDecisionList(Bits const &b, bool PassOrFail, unsigned int n)
static std::vector< Strings::const_iterator > edm::EventSelector::matching_triggers ( Strings const &  trigs,
std::string const &  s 
)
staticprivate
bool EventSelector::overlapping ( std::vector< bool > const &  a,
std::vector< bool > const &  b 
)
staticprivate

Definition at line 1063 of file EventSelector.cc.

References i.

Referenced by testSelectionOverlap().

1065  {
1066  if (a.size() != b.size()) return false;
1067  for (unsigned int i = 0; i != a.size(); ++i) {
1068  if (a[i] && b[i]) return true;
1069  }
1070  return false;
1071  } // overlapping
int i
Definition: DBlmapReader.cc:9
double b
Definition: hdecay.h:120
double a
Definition: hdecay.h:121
bool EventSelector::selectionDecision ( HLTGlobalStatus const &  tr) const
private

Definition at line 364 of file EventSelector.cc.

References absolute_acceptors_, accept_all_, acceptAllBits(), acceptOneBit(), all_must_fail_, all_must_fail_noex_, conditional_acceptors_, containsExceptions(), edm::hlt::Exception, exception_acceptors_, and f.

Referenced by acceptEvent().

365  {
366  if (accept_all_) return true;
367 
368  bool exceptionPresent = false;
369  bool exceptionsLookedFor = false;
370 
371  if (acceptOneBit(absolute_acceptors_, tr)) return true;
373  exceptionPresent = containsExceptions(tr);
374  if (!exceptionPresent) return true;
375  exceptionsLookedFor = true;
376  }
377  if (acceptOneBit(exception_acceptors_, tr, hlt::Exception)) return true;
378 
379  for (std::vector<Bits>::const_iterator f = all_must_fail_.begin();
380  f != all_must_fail_.end(); ++f)
381  {
382  if (acceptAllBits(*f, tr)) return true;
383  }
384  for (std::vector<Bits>::const_iterator fn = all_must_fail_noex_.begin();
385  fn != all_must_fail_noex_.end(); ++fn)
386  {
387  if (acceptAllBits(*fn, tr)) {
388  if (!exceptionsLookedFor) exceptionPresent = containsExceptions(tr);
389  return (!exceptionPresent);
390  }
391  }
392 
393  // If we have not accepted based on any of the acceptors, nor on any one of
394  // the all_must_fail_ collections, then we reject this event.
395 
396  return false;
397 
398  } // selectionDecision()
std::vector< Bits > all_must_fail_noex_
Definition: EventSelector.h:95
bool acceptAllBits(Bits const &b, HLTGlobalStatus const &tr) const
std::vector< Bits > all_must_fail_
Definition: EventSelector.h:94
bool acceptOneBit(Bits const &b, HLTGlobalStatus const &tr, hlt::HLTState const &s=hlt::Ready) const
double f[11][100]
bool containsExceptions(HLTGlobalStatus const &tr) const
bool EventSelector::selectionIsValid ( Strings const &  pathspec,
Strings const &  fullTriggerList 
)
static

Tests if the specified trigger selection list (path spec) is valid in the context of the specified full trigger list. Each element in the selection list is tested to see if it possible for some combination of trigger results to satisfy the selection. If all selection elements can be satisfied one way or another, then this method returns true. If one or more selection elements could never be satisfied given the input full trigger list, then this method returns false. At some level, this method tests whether the selection list is a "subset" of the full trigger list.

Parameters
pathspecThe trigger selection list (vector of string).
fullTriggerListThe full list of trigger names (vector of string).
Returns
true if the selection list is valid, false otherwise.

Definition at line 460 of file EventSelector.cc.

References acceptEvent(), edm::hlt::Exception, edm::hlt::Fail, customizeTrackingMonitorSeedNumber::idx, edm::hlt::Pass, edm::HLTGlobalStatus::reset(), and wantAll().

Referenced by testSelectionOverlap().

462  {
463  // an empty selection list is not valid
464  // (we default an empty "SelectEvents" parameter to {"*","!*"} in
465  // the getEventSelectionVString method below to help avoid this)
466  if (pathspec.size() == 0)
467  {
468  return false;
469  }
470 
471  // loop over each element in the selection list
472  for (unsigned int idx = 0; idx < pathspec.size(); idx++)
473  {
474  Strings workingList;
475  workingList.push_back(pathspec[idx]);
476 
477  // catch exceptions from the EventSelector constructor
478  // (and anywhere else) and mark those as failures.
479  // The EventSelector constructor seems to do the work of
480  // checking if the selection is outside the full trigger list.
481  try
482  {
483  // create an EventSelector instance for this selection
484  EventSelector evtSelector(workingList, fullTriggerList);
485 
486  // create the TriggerResults instance that we'll use for testing
487  unsigned int fullTriggerCount = fullTriggerList.size();
488  HLTGlobalStatus hltGS(fullTriggerCount);
489  TriggerResults sampleResults(hltGS, fullTriggerList);
490 
491  // loop over each path
492  bool oneResultMatched = false;
493  for (unsigned int iPath = 0; iPath < fullTriggerCount; iPath++)
494  {
495  // loop over the possible values for the path status
496  for (int iState = static_cast<int>(hlt::Pass);
497  iState <= static_cast<int>(hlt::Exception);
498  iState++)
499  {
500  sampleResults[iPath] = HLTPathStatus(static_cast<hlt::HLTState>(iState), 0);
501  if (evtSelector.wantAll() || evtSelector.acceptEvent(sampleResults))
502  {
503  oneResultMatched = true;
504  break;
505  }
506 
507  sampleResults.reset(iPath);
508  }
509 
510  if (oneResultMatched) break;
511  }
512 
513  // Finally, check in case the selection element was a wildcarded
514  // negative such as "!*":
515 
516  if (!oneResultMatched) {
517  for (unsigned int iPath = 0; iPath < fullTriggerCount; iPath++) {
518  sampleResults[iPath] = HLTPathStatus(hlt::Fail, 0);
519  }
520  if (evtSelector.acceptEvent(sampleResults)) {
521  oneResultMatched = true;
522  }
523  }
524 
525  // if none of the possible trigger results matched the
526  // selection element, then we declare the whole selection
527  // list invalid
528  if (!oneResultMatched)
529  {
530  return false;
531  }
532  }
533  catch (edm::Exception const&)
534  {
535  return false;
536  }
537  }
538 
539  // if we made it to this point, then it must have been possible
540  // to satisfy every selection element one way or another
541  return true;
542  }
std::vector< std::string > Strings
Definition: MsgTools.h:18
reject
Definition: HLTenums.h:20
tuple TriggerResults
Definition: old-fu_pass.py:28
accept
Definition: HLTenums.h:19
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
A selector of events.
Definition: EventSelector.h:16
bool EventSelector::subset ( std::vector< bool > const &  a,
std::vector< bool > const &  b 
)
staticprivate

Definition at line 1075 of file EventSelector.cc.

References i.

Referenced by testSelectionOverlap().

1077  {
1078  if (a.size() != b.size()) return false;
1079  // First test whether a is a non-empty subset of b
1080  bool aPresent = false;
1081  bool aSubset = true;
1082  for (unsigned int i = 0; i != a.size(); ++i) {
1083  if (a[i]) {
1084  aPresent = true;
1085  if (!b[i]) {
1086  aSubset = false;
1087  break;
1088  }
1089  }
1090  }
1091  if (!aPresent) return false;
1092  if (aSubset) return true;
1093 
1094  // Now test whether b is a non-empty subset of a
1095  bool bPresent = false;
1096  bool bSubset = true;
1097  for (unsigned int i = 0; i != b.size(); ++i) {
1098  if (b[i]) {
1099  bPresent = true;
1100  if (!a[i]) {
1101  bSubset = false;
1102  break;
1103  }
1104  }
1105  }
1106  if (!bPresent) return false;
1107  if (bSubset) return true;
1108 
1109  return false;
1110  } // subset
int i
Definition: DBlmapReader.cc:9
double b
Definition: hdecay.h:120
double a
Definition: hdecay.h:121
evtSel::OverlapResult EventSelector::testSelectionOverlap ( Strings const &  pathspec1,
Strings const &  pathspec2,
Strings const &  fullTriggerList 
)
static

Tests if the specified trigger selection lists (path specs) overlap, where "overlap" means that a valid trigger result (given the full trigger list) could satisfy both selections.

Parameters
pathspec1The first trigger selection list (vector of string).
pathspec2The second trigger selection list (vector of string).
fullTriggerListThe full list of trigger names (vector of string).
Returns
OverlapResult which indicates the degree of overlap.

Definition at line 556 of file EventSelector.cc.

References a, absolute_acceptors_, all_must_fail_, all_must_fail_noex_, b, combine(), conditional_acceptors_, edm::evtSel::ExactMatch, exception_acceptors_, expandDecisionList(), f, g, identical(), edm::evtSel::InvalidSelection, contentValuesFiles::m, N, edm::evtSel::NoOverlap, muon::overlap(), overlapping(), edm::evtSel::PartialOverlap, selectionIsValid(), and subset().

559  {
560  bool overlap = false;
561 
562  // first, test that the selection lists are valid
563  if (!selectionIsValid(pathspec1, fullTriggerList) ||
564  !selectionIsValid(pathspec2, fullTriggerList))
565  {
567  }
568 
569  // catch exceptions from the EventSelector constructor
570  // (and anywhere else) and mark those as failures
571  try
572  {
573  // create an EventSelector instance for each selection list
574  EventSelector a(pathspec1, fullTriggerList);
575  EventSelector b(pathspec2, fullTriggerList);
576 
577  unsigned int N = fullTriggerList.size();
578 
579  // create the expanded masks for the various decision lists in a and b
580  std::vector<bool>
581  aPassAbs = expandDecisionList(a.absolute_acceptors_,true,N);
582  std::vector<bool>
583  aPassCon = expandDecisionList(a.conditional_acceptors_,true,N);
584  std::vector<bool>
585  aFailAbs = expandDecisionList(a.absolute_acceptors_,false,N);
586  std::vector<bool>
587  aFailCon = expandDecisionList(a.conditional_acceptors_,false,N);
588  std::vector<bool>
589  aExc = expandDecisionList(a.exception_acceptors_,true,N);
590  std::vector< std::vector<bool> > aMustFail;
591  for (unsigned int m = 0; m != a.all_must_fail_.size(); ++m) {
592  aMustFail.push_back(expandDecisionList(a.all_must_fail_[m],false,N));
593  }
594  std::vector< std::vector<bool> > aMustFailNoex;
595  for (unsigned int m = 0; m != a.all_must_fail_noex_.size(); ++m) {
596  aMustFailNoex.push_back
597  (expandDecisionList(a.all_must_fail_noex_[m],false,N));
598  }
599 
600  std::vector<bool>
601  bPassAbs = expandDecisionList(b.absolute_acceptors_,true,N);
602  std::vector<bool>
603  bPassCon = expandDecisionList(b.conditional_acceptors_,true,N);
604  std::vector<bool>
605  bFailAbs = expandDecisionList(b.absolute_acceptors_,false,N);
606  std::vector<bool>
607  bFailCon = expandDecisionList(b.conditional_acceptors_,false,N);
608  std::vector<bool>
609  bExc = expandDecisionList(b.exception_acceptors_,true,N);
610  std::vector< std::vector<bool> > bMustFail;
611  for (unsigned int m = 0; m != b.all_must_fail_.size(); ++m) {
612  bMustFail.push_back(expandDecisionList(b.all_must_fail_[m],false,N));
613  }
614  std::vector< std::vector<bool> > bMustFailNoex;
615  for (unsigned int m = 0; m != b.all_must_fail_noex_.size(); ++m) {
616  bMustFailNoex.push_back
617  (expandDecisionList(b.all_must_fail_noex_[m],false,N));
618  }
619 
620  std::vector<bool> aPass = combine(aPassAbs, aPassCon);
621  std::vector<bool> bPass = combine(bPassAbs, bPassCon);
622  std::vector<bool> aFail = combine(aFailAbs, aFailCon);
623  std::vector<bool> bFail = combine(bFailAbs, bFailCon);
624 
625  // Check for overlap in the primary masks
626  overlap = overlapping(aPass, bPass) ||
627  overlapping(aFail, bFail) ||
628  overlapping(aExc, bExc);
629  if (overlap) return identical(a,b,N) ? evtSel::ExactMatch
631 
632  // Check for overlap of a primary fail mask with a must fail mask
633  for (unsigned int f = 0; f != aMustFail.size(); ++f) {
634  overlap = overlapping(aMustFail[f], bFail);
635  if (overlap) return evtSel::PartialOverlap;
636  for (unsigned int g = 0; g != bMustFail.size(); ++g) {
637  overlap = subset(aMustFail[f], bMustFail[g]);
638  if (overlap) return evtSel::PartialOverlap;
639  }
640  for (unsigned int g = 0; g != bMustFailNoex.size(); ++g) {
641  overlap = subset(aMustFail[f], bMustFailNoex[g]);
642  if (overlap) return evtSel::PartialOverlap;
643  }
644  }
645  for (unsigned int f = 0; f != aMustFailNoex.size(); ++f) {
646  overlap = overlapping(aMustFailNoex[f], bFail);
647  if (overlap) return evtSel::PartialOverlap;
648  for (unsigned int g = 0; g != bMustFail.size(); ++g) {
649  overlap = subset(aMustFailNoex[f], bMustFail[g]);
650  if (overlap) return evtSel::PartialOverlap;
651  }
652  for (unsigned int g = 0; g != bMustFailNoex.size(); ++g) {
653  overlap = subset(aMustFailNoex[f], bMustFailNoex[g]);
654  if (overlap) return evtSel::PartialOverlap;
655  }
656  }
657  for (unsigned int g = 0; g != bMustFail.size(); ++g) {
658  overlap = overlapping(bMustFail[g], aFail);
659  if (overlap) return evtSel::PartialOverlap;
660  }
661  for (unsigned int g = 0; g != bMustFailNoex.size(); ++g) {
662  overlap = overlapping(bMustFail[g], aFail);
663  if (overlap) return evtSel::PartialOverlap;
664  }
665 
666  }
667  catch (edm::Exception const&)
668  {
670  }
671 
672  // If we get to here without overlap becoming true, there is no overlap
673 
674  return evtSel::NoOverlap;
675 
676  } // testSelectionOverlap
static std::vector< bool > combine(std::vector< bool > const &a, std::vector< bool > const &b)
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e g
Definition: Activities.doc:4
bool overlap(const reco::Muon &muon1, const reco::Muon &muon2, double pullX=1.0, double pullY=1.0, bool checkAdjacentChambers=false)
double f[11][100]
static bool selectionIsValid(Strings const &pathspec, Strings const &fullTriggerList)
static bool overlapping(std::vector< bool > const &a, std::vector< bool > const &b)
static bool subset(std::vector< bool > const &a, std::vector< bool > const &b)
#define N
Definition: blowfish.cc:9
double b
Definition: hdecay.h:120
A selector of events.
Definition: EventSelector.h:16
static bool identical(std::vector< bool > const &a, std::vector< bool > const &b)
double a
Definition: hdecay.h:121
static std::vector< bool > expandDecisionList(Bits const &b, bool PassOrFail, unsigned int n)
bool edm::EventSelector::wantAll ( ) const
inline

Definition at line 55 of file EventSelector.h.

References accept_all_.

Referenced by selectionIsValid().

55 { return accept_all_; }

Member Data Documentation

Bits edm::EventSelector::absolute_acceptors_
private
bool edm::EventSelector::accept_all_
private

Definition at line 90 of file EventSelector.h.

Referenced by acceptEvent(), init(), selectionDecision(), and wantAll().

std::vector<Bits> edm::EventSelector::all_must_fail_
private
std::vector<Bits> edm::EventSelector::all_must_fail_noex_
private
Bits edm::EventSelector::conditional_acceptors_
private
Bits edm::EventSelector::exception_acceptors_
private
bool edm::EventSelector::notStarPresent_
private

Definition at line 104 of file EventSelector.h.

Referenced by init().

int edm::EventSelector::nTriggerNames_
private

Definition at line 103 of file EventSelector.h.

Referenced by init(), and maskTriggerResults().

Strings edm::EventSelector::paths_
private
ParameterSetID edm::EventSelector::psetID_
private

Definition at line 99 of file EventSelector.h.

Referenced by acceptEvent().

bool edm::EventSelector::psetID_initialized_
private

Definition at line 98 of file EventSelector.h.

Referenced by acceptEvent().

bool edm::EventSelector::results_from_current_process_
private

Definition at line 97 of file EventSelector.h.

Referenced by acceptEvent().