CMS 3D CMS Logo

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

#include <Path.h>

Public Types

typedef WorkersInPath::size_type size_type
 
typedef hlt::HLTState State
 
typedef boost::shared_ptr
< HLTGlobalStatus
TrigResPtr
 
typedef std::vector< WorkerInPathWorkersInPath
 

Public Member Functions

int bitPosition () const
 
void clearCounters ()
 
Worker const * getWorker (size_type i) const
 
std::string const & name () const
 
 Path (int bitpos, std::string const &path_name, WorkersInPath const &workers, TrigResPtr trptr, ExceptionToActionTable const &actions, boost::shared_ptr< ActivityRegistry > reg, StreamContext const *streamContext, PathContext::PathType pathType)
 
 Path (Path const &)
 
template<typename T >
void processOneOccurrence (typename T::MyPrincipal &, EventSetup const &, StreamID const &, typename T::Context const *)
 
void setEarlyDeleteHelpers (std::map< const Worker *, EarlyDeleteHelper * > const &)
 
size_type size () const
 
State state () const
 
std::pair< double, double > timeCpuReal () const
 
std::pair< double, double > timeCpuReal (unsigned int const i) const
 
int timesExcept () const
 
int timesExcept (size_type i) const
 
int timesFailed () const
 
int timesFailed (size_type i) const
 
int timesPassed () const
 
int timesPassed (size_type i) const
 
int timesRun () const
 
int timesVisited (size_type i) const
 
void useStopwatch ()
 

Private Member Functions

void handleEarlyFinish (EventPrincipal &)
 
void handleEarlyFinish (RunPrincipal &)
 
void handleEarlyFinish (LuminosityBlockPrincipal &)
 
bool handleWorkerFailure (cms::Exception &e, int nwrwue, bool isEvent, bool begin, BranchType branchType, ModuleDescription const &, std::string const &id)
 
Path const & operator= (Path const &)=delete
 
void recordStatus (int nwrwue, bool isEvent)
 
void updateCounters (bool succeed, bool isEvent)
 

Static Private Member Functions

static void exceptionContext (cms::Exception &ex, bool isEvent, bool begin, BranchType branchType, ModuleDescription const &, std::string const &id, PathContext const &)
 

Private Attributes

ExceptionToActionTable const * act_table_
 
boost::shared_ptr
< ActivityRegistry
actReg_
 
int bitpos_
 
std::vector< EarlyDeleteHelper * > earlyDeleteHelpers_
 
std::string name_
 
PathContext pathContext_
 
State state_
 
RunStopwatch::StopwatchPointer stopwatch_
 
int timesExcept_
 
int timesFailed_
 
int timesPassed_
 
int timesRun_
 
TrigResPtr trptr_
 
WorkersInPath workers_
 

Detailed Description

Definition at line 42 of file Path.h.

Member Typedef Documentation

typedef WorkersInPath::size_type edm::Path::size_type

Definition at line 47 of file Path.h.

Definition at line 44 of file Path.h.

typedef boost::shared_ptr<HLTGlobalStatus> edm::Path::TrigResPtr

Definition at line 48 of file Path.h.

typedef std::vector<WorkerInPath> edm::Path::WorkersInPath

Definition at line 46 of file Path.h.

Constructor & Destructor Documentation

edm::Path::Path ( int  bitpos,
std::string const &  path_name,
WorkersInPath const &  workers,
TrigResPtr  trptr,
ExceptionToActionTable const &  actions,
boost::shared_ptr< ActivityRegistry reg,
StreamContext const *  streamContext,
PathContext::PathType  pathType 
)

Definition at line 13 of file Path.cc.

References pathContext_, and workers_.

19  :
20  stopwatch_(),
21  timesRun_(),
22  timesPassed_(),
23  timesFailed_(),
24  timesExcept_(),
26  bitpos_(bitpos),
28  trptr_(trptr),
29  actReg_(areg),
31  workers_(workers),
32  pathContext_(path_name, streamContext, bitpos, pathType) {
33 
34  for (auto& workerInPath : workers_) {
35  workerInPath.setPathContext(&pathContext_);
36  }
37  }
not [yet] run
Definition: HLTenums.h:18
int timesFailed_
Definition: Path.h:106
int timesExcept_
Definition: Path.h:107
PathContext pathContext_
Definition: Path.h:120
actions
Definition: Schedule.cc:362
std::string name_
Definition: Path.h:112
TrigResPtr trptr_
Definition: Path.h:113
int bitpos_
Definition: Path.h:111
areg
Definition: Schedule.cc:362
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Path.h:114
WorkersInPath workers_
Definition: Path.h:117
RunStopwatch::StopwatchPointer stopwatch_
Definition: Path.h:103
ExceptionToActionTable const * act_table_
Definition: Path.h:115
State state_
Definition: Path.h:109
int timesPassed_
Definition: Path.h:105
int timesRun_
Definition: Path.h:104
edm::Path::Path ( Path const &  r)

Definition at line 39 of file Path.cc.

References pathContext_, and workers_.

39  :
40  stopwatch_(r.stopwatch_),
41  timesRun_(r.timesRun_),
42  timesPassed_(r.timesPassed_),
43  timesFailed_(r.timesFailed_),
44  timesExcept_(r.timesExcept_),
45  state_(r.state_),
46  bitpos_(r.bitpos_),
47  name_(r.name_),
48  trptr_(r.trptr_),
49  actReg_(r.actReg_),
50  act_table_(r.act_table_),
51  workers_(r.workers_),
52  earlyDeleteHelpers_(r.earlyDeleteHelpers_),
53  pathContext_(r.pathContext_) {
54 
55  for (auto& workerInPath : workers_) {
56  workerInPath.setPathContext(&pathContext_);
57  }
58  }
std::vector< EarlyDeleteHelper * > earlyDeleteHelpers_
Definition: Path.h:118
int timesFailed_
Definition: Path.h:106
int timesExcept_
Definition: Path.h:107
PathContext pathContext_
Definition: Path.h:120
std::string name_
Definition: Path.h:112
TrigResPtr trptr_
Definition: Path.h:113
int bitpos_
Definition: Path.h:111
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Path.h:114
WorkersInPath workers_
Definition: Path.h:117
RunStopwatch::StopwatchPointer stopwatch_
Definition: Path.h:103
ExceptionToActionTable const * act_table_
Definition: Path.h:115
State state_
Definition: Path.h:109
int timesPassed_
Definition: Path.h:105
int timesRun_
Definition: Path.h:104

Member Function Documentation

int edm::Path::bitPosition ( ) const
inline

Definition at line 64 of file Path.h.

References bitpos_.

Referenced by edm::fillPathSummary(), and edm::fillPathTimingSummary().

64 { return bitpos_; }
int bitpos_
Definition: Path.h:111
void edm::Path::clearCounters ( )

Definition at line 163 of file Path.cc.

References edm::WorkerInPath::clearCounters(), edm::for_all(), timesExcept_, timesFailed_, timesPassed_, timesRun_, and workers_.

Referenced by edm::StreamSchedule::clearCounters().

163  {
165  for_all(workers_, boost::bind(&WorkerInPath::clearCounters, _1));
166  }
int timesFailed_
Definition: Path.h:106
int timesExcept_
Definition: Path.h:107
Func for_all(ForwardSequence &s, Func f)
wrapper for std::for_each
Definition: Algorithms.h:16
WorkersInPath workers_
Definition: Path.h:117
int timesPassed_
Definition: Path.h:105
int timesRun_
Definition: Path.h:104
void edm::Path::exceptionContext ( cms::Exception ex,
bool  isEvent,
bool  begin,
BranchType  branchType,
ModuleDescription const &  desc,
std::string const &  id,
PathContext const &  pathContext 
)
staticprivate

Definition at line 106 of file Path.cc.

References cms::Exception::addContext(), edm::InLumi, edm::InRun, edm::ModuleDescription::moduleLabel(), edm::ModuleDescription::moduleName(), and edm::PathContext::pathName().

Referenced by handleWorkerFailure().

112  {
113  std::ostringstream ost;
114  if (isEvent) {
115  ost << "Calling event method";
116  }
117  else if (begin && branchType == InRun) {
118  ost << "Calling beginRun";
119  }
120  else if (begin && branchType == InLumi) {
121  ost << "Calling beginLuminosityBlock";
122  }
123  else if (!begin && branchType == InLumi) {
124  ost << "Calling endLuminosityBlock";
125  }
126  else if (!begin && branchType == InRun) {
127  ost << "Calling endRun";
128  }
129  else {
130  // It should be impossible to get here ...
131  ost << "Calling unknown function";
132  }
133  ost << " for module " << desc.moduleName() << "/'" << desc.moduleLabel() << "'";
134  ex.addContext(ost.str());
135  ost.str("");
136  ost << "Running path '" << pathContext.pathName() << "'";
137  ex.addContext(ost.str());
138  ost.str("");
139  ost << "Processing ";
140  ost << id;
141  ex.addContext(ost.str());
142  }
void addContext(std::string const &context)
Definition: Exception.cc:227
#define begin
Definition: vmac.h:30
Worker const* edm::Path::getWorker ( size_type  i) const
inline

Definition at line 92 of file Path.h.

References workers_.

Referenced by edm::fillModuleInPathSummary(), edm::fillModuleInPathTimingSummary(), and setEarlyDeleteHelpers().

92 { return workers_.at(i).getWorker(); }
int i
Definition: DBlmapReader.cc:9
WorkersInPath workers_
Definition: Path.h:117
void edm::Path::handleEarlyFinish ( EventPrincipal iEvent)
private

Definition at line 196 of file Path.cc.

References earlyDeleteHelpers_.

Referenced by processOneOccurrence().

196  {
197  for(auto helper: earlyDeleteHelpers_) {
198  helper->pathFinished(iEvent);
199  }
200  }
std::vector< EarlyDeleteHelper * > earlyDeleteHelpers_
Definition: Path.h:118
int iEvent
Definition: GenABIO.cc:243
void edm::Path::handleEarlyFinish ( RunPrincipal )
inlineprivate

Definition at line 142 of file Path.h.

142 {}
void edm::Path::handleEarlyFinish ( LuminosityBlockPrincipal )
inlineprivate

Definition at line 143 of file Path.h.

143 {}
bool edm::Path::handleWorkerFailure ( cms::Exception e,
int  nwrwue,
bool  isEvent,
bool  begin,
BranchType  branchType,
ModuleDescription const &  desc,
std::string const &  id 
)
private

Definition at line 62 of file Path.cc.

References act_table_, alignCSCRings::action, cms::Exception::addAdditionalInfo(), cms::Exception::category(), edm::Exception::codeToString(), edm::hlt::Exception, exceptionContext(), edm::exception_actions::FailPath, edm::ExceptionToActionTable::find(), pathContext_, edm::printCmsExceptionWarning(), edm::errors::ProductNotFound, recordStatus(), edm::exception_actions::Rethrow, state_, AlCaHLTBitMon_QueryRunRegistry::string, and timesExcept_.

Referenced by processOneOccurrence().

68  {
69 
70  exceptionContext(e, isEvent, begin, branchType, desc, id, pathContext_);
71 
72  bool should_continue = true;
73 
74  // there is no support as of yet for specific paths having
75  // different exception behavior
76 
77  // If not processing an event, always rethrow.
79  switch(action) {
81  should_continue = false;
82  edm::printCmsExceptionWarning("FailPath", e);
83  break;
84  }
85  default: {
86  if (isEvent) ++timesExcept_;
88  recordStatus(nwrwue, isEvent);
89  if (action == exception_actions::Rethrow) {
91  if (e.category() == pNF) {
92  std::ostringstream ost;
93  ost << "If you wish to continue processing events after a " << pNF << " exception,\n" <<
94  "add \"SkipEvent = cms.untracked.vstring('ProductNotFound')\" to the \"options\" PSet in the configuration.\n";
95  e.addAdditionalInfo(ost.str());
96  }
97  }
98  throw;
99  }
100  }
101 
102  return should_continue;
103  }
void recordStatus(int nwrwue, bool isEvent)
Definition: Path.cc:145
std::string const & category() const
Definition: Exception.cc:183
exception_actions::ActionCodes find(const std::string &category) const
int timesExcept_
Definition: Path.h:107
PathContext pathContext_
Definition: Path.h:120
void printCmsExceptionWarning(char const *behavior, cms::Exception const &e, edm::JobReport *jobRep=0, int rc=-1)
void addAdditionalInfo(std::string const &info)
Definition: Exception.cc:235
static std::string codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:55
static void exceptionContext(cms::Exception &ex, bool isEvent, bool begin, BranchType branchType, ModuleDescription const &, std::string const &id, PathContext const &)
Definition: Path.cc:106
ExceptionToActionTable const * act_table_
Definition: Path.h:115
State state_
Definition: Path.h:109
#define begin
Definition: vmac.h:30
std::string const& edm::Path::name ( void  ) const
inline
Path const& edm::Path::operator= ( Path const &  )
privatedelete
template<typename T >
void edm::Path::processOneOccurrence ( typename T::MyPrincipal &  ep,
EventSetup const &  es,
StreamID const &  streamID,
typename T::Context const *  context 
)

Definition at line 172 of file Path.h.

References actReg_, edm::convertException::badAllocToEDM(), trackerHits::c, edm::convertException::charPtrToEDM(), alignCSCRings::e, end, cppFunctionSkipper::exception, handleEarlyFinish(), handleWorkerFailure(), i, name_, pathContext_, edm::hlt::Ready, recordStatus(), alignCSCRings::s, state_, edm::convertException::stdToEDM(), stopwatch_, AlCaHLTBitMon_QueryRunRegistry::string, edm::convertException::stringToEDM(), timesRun_, edm::convertException::unknownToEDM(), updateCounters(), and workers_.

173  {
174 
175  //Create the PathSignalSentry before the RunStopwatch so that
176  // we only record the time spent in the path not from the signal
177  int nwrwue = -1;
178  PathSignalSentry<T> signaler(actReg_.get(), name_, nwrwue, state_, &pathContext_);
179 
180  // A RunStopwatch, but only if we are processing an event.
181  RunStopwatch stopwatch(T::isEvent_ ? stopwatch_ : RunStopwatch::StopwatchPointer());
182 
183  if (T::isEvent_) {
184  ++timesRun_;
185  }
186  state_ = hlt::Ready;
187 
188  // nwrue = numWorkersRunWithoutUnhandledException
189  bool should_continue = true;
190 
191  for (WorkersInPath::iterator i = workers_.begin(), end = workers_.end();
192  i != end && should_continue;
193  ++i) {
194  ++nwrwue;
195  try {
196  try {
197  if(T::isEvent_) {
198  should_continue = i->runWorker<T>(ep, es, streamID, context);
199  } else {
200  should_continue = i->runWorker<T>(ep, es, streamID, context);
201  }
202  }
203  catch (cms::Exception& e) { throw; }
204  catch(std::bad_alloc& bda) { convertException::badAllocToEDM(); }
205  catch (std::exception& e) { convertException::stdToEDM(e); }
207  catch(char const* c) { convertException::charPtrToEDM(c); }
208  catch (...) { convertException::unknownToEDM(); }
209  }
210  catch(cms::Exception& ex) {
211  // handleWorkerFailure may throw a new exception.
212  std::ostringstream ost;
213  ost << ep.id();
214  should_continue = handleWorkerFailure(ex, nwrwue, T::isEvent_, T::begin_, T::branchType_,
215  i->getWorker()->description(), ost.str());
216  }
217  }
218  if (not should_continue) {
219  handleEarlyFinish(ep);
220  }
221  updateCounters(should_continue, T::isEvent_);
222  recordStatus(nwrwue, T::isEvent_);
223  }
int i
Definition: DBlmapReader.cc:9
void recordStatus(int nwrwue, bool isEvent)
Definition: Path.cc:145
void handleEarlyFinish(EventPrincipal &)
Definition: Path.cc:196
not [yet] run
Definition: HLTenums.h:18
PathContext pathContext_
Definition: Path.h:120
std::string name_
Definition: Path.h:112
boost::shared_ptr< CPUTimer > StopwatchPointer
Definition: RunStopwatch.h:22
void stdToEDM(std::exception const &e)
#define end
Definition: vmac.h:37
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Path.h:114
WorkersInPath workers_
Definition: Path.h:117
void charPtrToEDM(char const *c)
void stringToEDM(std::string &s)
void updateCounters(bool succeed, bool isEvent)
Definition: Path.cc:152
bool handleWorkerFailure(cms::Exception &e, int nwrwue, bool isEvent, bool begin, BranchType branchType, ModuleDescription const &, std::string const &id)
Definition: Path.cc:62
RunStopwatch::StopwatchPointer stopwatch_
Definition: Path.h:103
State state_
Definition: Path.h:109
long double T
int timesRun_
Definition: Path.h:104
void edm::Path::recordStatus ( int  nwrwue,
bool  isEvent 
)
private

Definition at line 145 of file Path.cc.

References bitpos_, state_, and trptr_.

Referenced by handleWorkerFailure(), and processOneOccurrence().

145  {
146  if(isEvent && trptr_) {
147  (*trptr_)[bitpos_]=HLTPathStatus(state_, nwrwue);
148  }
149  }
TrigResPtr trptr_
Definition: Path.h:113
int bitpos_
Definition: Path.h:111
State state_
Definition: Path.h:109
void edm::Path::setEarlyDeleteHelpers ( std::map< const Worker *, EarlyDeleteHelper * > const &  iWorkerToDeleter)

Definition at line 179 of file Path.cc.

References earlyDeleteHelpers_, newFWLiteAna::found, getWorker(), getHLTprescales::index, size(), and groupFilesInBlocks::temp.

179  {
180  //we use a temp so we can overset the size but then when moving to earlyDeleteHelpers we only
181  // have to use the space necessary
182  std::vector<EarlyDeleteHelper*> temp;
183  temp.reserve(iWorkerToDeleter.size());
184  for(unsigned int index=0; index !=size();++index) {
185  auto found = iWorkerToDeleter.find(getWorker(index));
186  if(found != iWorkerToDeleter.end()) {
187  temp.push_back(found->second);
188  found->second->addedToPath();
189  }
190  }
191  std::vector<EarlyDeleteHelper*> tempCorrectSize(temp.begin(),temp.end());
192  earlyDeleteHelpers_.swap(tempCorrectSize);
193  }
std::vector< EarlyDeleteHelper * > earlyDeleteHelpers_
Definition: Path.h:118
size_type size() const
Definition: Path.h:87
Worker const * getWorker(size_type i) const
Definition: Path.h:92
size_type edm::Path::size ( void  ) const
inline

Definition at line 87 of file Path.h.

References workers_.

Referenced by edm::fillPathSummary(), edm::fillPathTimingSummary(), and setEarlyDeleteHelpers().

87 { return workers_.size(); }
WorkersInPath workers_
Definition: Path.h:117
State edm::Path::state ( ) const
inline

Definition at line 85 of file Path.h.

References state_.

85 { return state_; }
State state_
Definition: Path.h:109
std::pair<double, double> edm::Path::timeCpuReal ( ) const
inline

Definition at line 67 of file Path.h.

References stopwatch_.

Referenced by edm::fillModuleInPathTimingSummary(), and edm::fillPathTimingSummary().

67  {
68  if(stopwatch_) {
69  return std::pair<double, double>(stopwatch_->cpuTime(), stopwatch_->realTime());
70  }
71  return std::pair<double, double>(0., 0.);
72  }
RunStopwatch::StopwatchPointer stopwatch_
Definition: Path.h:103
std::pair<double, double> edm::Path::timeCpuReal ( unsigned int const  i) const
inline

Definition at line 74 of file Path.h.

References workers_.

74  {
75  return workers_.at(i).timeCpuReal();
76  }
int i
Definition: DBlmapReader.cc:9
WorkersInPath workers_
Definition: Path.h:117
int edm::Path::timesExcept ( ) const
inline

Definition at line 83 of file Path.h.

References timesExcept_.

Referenced by edm::fillModuleInPathSummary(), and edm::fillPathSummary().

83 { return timesExcept_; }
int timesExcept_
Definition: Path.h:107
int edm::Path::timesExcept ( size_type  i) const
inline

Definition at line 91 of file Path.h.

References workers_.

91 { return workers_.at(i).timesExcept() ; }
int i
Definition: DBlmapReader.cc:9
WorkersInPath workers_
Definition: Path.h:117
int edm::Path::timesFailed ( ) const
inline

Definition at line 82 of file Path.h.

References timesFailed_.

Referenced by edm::fillModuleInPathSummary(), edm::fillModuleInPathTimingSummary(), and edm::fillPathSummary().

82 { return timesFailed_; }
int timesFailed_
Definition: Path.h:106
int edm::Path::timesFailed ( size_type  i) const
inline

Definition at line 90 of file Path.h.

References workers_.

90 { return workers_.at(i).timesFailed() ; }
int i
Definition: DBlmapReader.cc:9
WorkersInPath workers_
Definition: Path.h:117
int edm::Path::timesPassed ( ) const
inline

Definition at line 81 of file Path.h.

References timesPassed_.

Referenced by edm::fillModuleInPathSummary(), and edm::fillPathSummary().

81 { return timesPassed_; }
int timesPassed_
Definition: Path.h:105
int edm::Path::timesPassed ( size_type  i) const
inline

Definition at line 89 of file Path.h.

References workers_.

89 { return workers_.at(i).timesPassed() ; }
int i
Definition: DBlmapReader.cc:9
WorkersInPath workers_
Definition: Path.h:117
int edm::Path::timesRun ( ) const
inline

Definition at line 80 of file Path.h.

References timesRun_.

Referenced by edm::fillPathSummary(), and edm::fillPathTimingSummary().

80 { return timesRun_; }
int timesRun_
Definition: Path.h:104
int edm::Path::timesVisited ( size_type  i) const
inline

Definition at line 88 of file Path.h.

References workers_.

Referenced by edm::fillModuleInPathSummary(), and edm::fillModuleInPathTimingSummary().

88 { return workers_.at(i).timesVisited(); }
int i
Definition: DBlmapReader.cc:9
WorkersInPath workers_
Definition: Path.h:117
void edm::Path::updateCounters ( bool  succeed,
bool  isEvent 
)
private

Definition at line 152 of file Path.cc.

References edm::hlt::Fail, edm::hlt::Pass, state_, timesFailed_, and timesPassed_.

Referenced by processOneOccurrence().

152  {
153  if (success) {
154  if (isEvent) ++timesPassed_;
155  state_ = hlt::Pass;
156  } else {
157  if(isEvent) ++timesFailed_;
158  state_ = hlt::Fail;
159  }
160  }
int timesFailed_
Definition: Path.h:106
reject
Definition: HLTenums.h:20
accept
Definition: HLTenums.h:19
State state_
Definition: Path.h:109
int timesPassed_
Definition: Path.h:105
void edm::Path::useStopwatch ( )

Definition at line 169 of file Path.cc.

References stopwatch_, and workers_.

169  {
170  stopwatch_.reset(new RunStopwatch::StopwatchPointer::element_type);
171  for(WorkersInPath::iterator it=workers_.begin(), itEnd = workers_.end();
172  it != itEnd;
173  ++it) {
174  it->useStopwatch();
175  }
176  }
WorkersInPath workers_
Definition: Path.h:117
RunStopwatch::StopwatchPointer stopwatch_
Definition: Path.h:103

Member Data Documentation

ExceptionToActionTable const* edm::Path::act_table_
private

Definition at line 115 of file Path.h.

Referenced by handleWorkerFailure().

boost::shared_ptr<ActivityRegistry> edm::Path::actReg_
private

Definition at line 114 of file Path.h.

Referenced by processOneOccurrence().

int edm::Path::bitpos_
private

Definition at line 111 of file Path.h.

Referenced by bitPosition(), and recordStatus().

std::vector<EarlyDeleteHelper*> edm::Path::earlyDeleteHelpers_
private

Definition at line 118 of file Path.h.

Referenced by handleEarlyFinish(), and setEarlyDeleteHelpers().

std::string edm::Path::name_
private

Definition at line 112 of file Path.h.

Referenced by name(), and processOneOccurrence().

PathContext edm::Path::pathContext_
private

Definition at line 120 of file Path.h.

Referenced by handleWorkerFailure(), Path(), and processOneOccurrence().

State edm::Path::state_
private
RunStopwatch::StopwatchPointer edm::Path::stopwatch_
private

Definition at line 103 of file Path.h.

Referenced by processOneOccurrence(), timeCpuReal(), and useStopwatch().

int edm::Path::timesExcept_
private

Definition at line 107 of file Path.h.

Referenced by clearCounters(), handleWorkerFailure(), and timesExcept().

int edm::Path::timesFailed_
private

Definition at line 106 of file Path.h.

Referenced by clearCounters(), timesFailed(), and updateCounters().

int edm::Path::timesPassed_
private

Definition at line 105 of file Path.h.

Referenced by clearCounters(), timesPassed(), and updateCounters().

int edm::Path::timesRun_
private

Definition at line 104 of file Path.h.

Referenced by clearCounters(), processOneOccurrence(), and timesRun().

TrigResPtr edm::Path::trptr_
private

Definition at line 113 of file Path.h.

Referenced by recordStatus().

WorkersInPath edm::Path::workers_
private