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
statemachine::Run Class Reference

#include <EPStates.h>

Inheritance diagram for statemachine::Run:

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_
 

Detailed Description

Definition at line 44 of file EPStates.h.

Constructor & Destructor Documentation

Run::Run ( edm::ProcessHistoryID const &  phid,
int  runNumber 
)

Definition at line 18 of file EPStates.cc.

18  :
19  processHistoryID_(phid),
21  }
edm::ProcessHistoryID processHistoryID_
Definition: EPStates.h:61
int runNumber() const
Definition: EPStates.h:48

Member Function Documentation

bool statemachine::Run::operator!= ( Run const &  rh) const
inline

Definition at line 55 of file EPStates.h.

References processHistoryID(), processHistoryID_, runNumber(), and runNumber_.

55  {
56  return (runNumber_ != rh.runNumber()) ||
57  (processHistoryID_ != rh.processHistoryID());
58  }
edm::ProcessHistoryID processHistoryID_
Definition: EPStates.h:61
bool statemachine::Run::operator== ( Run const &  rh) const
inline

Definition at line 50 of file EPStates.h.

References processHistoryID(), processHistoryID_, runNumber(), and runNumber_.

50  {
51  return (runNumber_ == rh.runNumber()) &&
52  (processHistoryID_ == rh.processHistoryID());
53  }
edm::ProcessHistoryID processHistoryID_
Definition: EPStates.h:61
edm::ProcessHistoryID const& statemachine::Run::processHistoryID ( ) const
inline
int statemachine::Run::runNumber ( ) const
inline

Member Data Documentation

edm::ProcessHistoryID statemachine::Run::processHistoryID_
private

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().