CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Public Attributes
MatacqProducer::MatacqEventId Struct Reference

Public Member Functions

 MatacqEventId ()
 
 MatacqEventId (uint32_t r, uint32_t o)
 
bool operator< (const MatacqEventId &a)
 
bool operator== (const MatacqEventId &a)
 
bool operator> (const MatacqEventId &a)
 

Public Attributes

uint32_t orbit
 
uint32_t run
 

Detailed Description

Definition at line 60 of file MatacqProducer.h.

Constructor & Destructor Documentation

MatacqProducer::MatacqEventId::MatacqEventId ( )
inline

Definition at line 61 of file MatacqProducer.h.

MatacqProducer::MatacqEventId::MatacqEventId ( uint32_t  r,
uint32_t  o 
)
inline

Member Function Documentation

bool MatacqProducer::MatacqEventId::operator< ( const MatacqEventId a)
inline

Definition at line 73 of file MatacqProducer.h.

References orbit, and run.

73  {
74  return (this->run < a.run)
75  || ((this->run == a.run) && (this->orbit < a.orbit));
76  }
double a
Definition: hdecay.h:121
bool MatacqProducer::MatacqEventId::operator== ( const MatacqEventId a)
inline

Definition at line 85 of file MatacqProducer.h.

References a.

85  {
86  return !((*this) < a || (*this) > a);
87  }
double a
Definition: hdecay.h:121
bool MatacqProducer::MatacqEventId::operator> ( const MatacqEventId a)
inline

Definition at line 79 of file MatacqProducer.h.

References orbit, and run.

79  {
80  return (this->run > a.run)
81  || ((this->run == a.run) && (this->orbit > a.orbit));
82  }
double a
Definition: hdecay.h:121

Member Data Documentation

uint32_t MatacqProducer::MatacqEventId::orbit

Orbit id

Definition at line 70 of file MatacqProducer.h.

Referenced by operator<(), and operator>().

uint32_t MatacqProducer::MatacqEventId::run