#include <EPStates.h>
Public Member Functions | |
bool | operator!= (Run const &rh) const |
bool | operator== (Run const &rh) const |
edm::ProcessHistoryID const & | processHistoryID () const |
Run (edm::ProcessHistoryID const &phid, int runNumber) | |
int | runNumber () const |
Private Attributes | |
edm::ProcessHistoryID | processHistoryID_ |
int | runNumber_ |
Definition at line 44 of file EPStates.h.
Run::Run | ( | edm::ProcessHistoryID const & | phid, |
int | runNumber | ||
) |
Definition at line 19 of file EPStates.cc.
: processHistoryID_(phid), runNumber_(runNumber) { }
bool statemachine::Run::operator!= | ( | Run const & | rh | ) | const [inline] |
Definition at line 55 of file EPStates.h.
References processHistoryID(), processHistoryID_, runNumber(), and runNumber_.
{ return (runNumber_ != rh.runNumber()) || (processHistoryID_ != rh.processHistoryID()); }
bool statemachine::Run::operator== | ( | Run const & | rh | ) | const [inline] |
Definition at line 50 of file EPStates.h.
References processHistoryID(), processHistoryID_, runNumber(), and runNumber_.
{ return (runNumber_ == rh.runNumber()) && (processHistoryID_ == rh.processHistoryID()); }
edm::ProcessHistoryID const& statemachine::Run::processHistoryID | ( | ) | const [inline] |
Definition at line 47 of file EPStates.h.
References processHistoryID_.
Referenced by edm::EventProcessor::beginRun(), edm::EventProcessor::deleteRunFromCache(), edm::EventProcessor::endRun(), operator!=(), operator==(), statemachine::HandleLumis::setupCurrentLumi(), and edm::EventProcessor::writeRun().
{ return processHistoryID_; }
int statemachine::Run::runNumber | ( | ) | const [inline] |
Definition at line 48 of file EPStates.h.
References runNumber_.
Referenced by edm::EventProcessor::beginRun(), edm::EventProcessor::deleteRunFromCache(), edm::EventProcessor::endRun(), operator!=(), operator==(), statemachine::HandleLumis::setupCurrentLumi(), and edm::EventProcessor::writeRun().
{ return runNumber_; }
Definition at line 61 of file EPStates.h.
Referenced by operator!=(), operator==(), and processHistoryID().
int statemachine::Run::runNumber_ [private] |
Definition at line 62 of file EPStates.h.
Referenced by operator!=(), operator==(), and runNumber().