CMS 3D CMS Logo

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 62 of file MatacqProducer.h.

Constructor & Destructor Documentation

MatacqProducer::MatacqEventId::MatacqEventId ( )
inline

Definition at line 63 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 75 of file MatacqProducer.h.

References orbit, and run.

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

Definition at line 87 of file MatacqProducer.h.

References a.

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

Definition at line 81 of file MatacqProducer.h.

References orbit, and run.

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

Member Data Documentation

uint32_t MatacqProducer::MatacqEventId::orbit

Orbit id

Definition at line 72 of file MatacqProducer.h.

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

uint32_t MatacqProducer::MatacqEventId::run