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 49 of file MatacqProducer.cc.

Constructor & Destructor Documentation

◆ MatacqEventId() [1/2]

MatacqProducer::MatacqEventId::MatacqEventId ( )
inline

Definition at line 50 of file MatacqProducer.cc.

◆ MatacqEventId() [2/2]

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

Member Function Documentation

◆ operator<()

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

Definition at line 61 of file MatacqProducer.cc.

References a.

61  {
62  return (this->run < a.run) || ((this->run == a.run) && (this->orbit < a.orbit));
63  }
double a
Definition: hdecay.h:119

◆ operator==()

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

Definition at line 69 of file MatacqProducer.cc.

References a.

69 { return !((*this) < a || (*this) > a); }
double a
Definition: hdecay.h:119

◆ operator>()

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

Definition at line 65 of file MatacqProducer.cc.

References a.

65  {
66  return (this->run > a.run) || ((this->run == a.run) && (this->orbit > a.orbit));
67  }
double a
Definition: hdecay.h:119

Member Data Documentation

◆ orbit

uint32_t MatacqProducer::MatacqEventId::orbit

Orbit id

Definition at line 59 of file MatacqProducer.cc.

◆ run

uint32_t MatacqProducer::MatacqEventId::run