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
sistrip::SpyEventMatcher::EventKey Class Reference

Public Member Functions

uint8_t apvAddress () const
 
uint32_t eventId () const
 
 EventKey (const uint32_t eventId, const uint8_t apvAddress)
 
bool operator< (const EventKey &rhs) const
 

Private Attributes

uint8_t apvAddress_
 
uint32_t eventId_
 

Detailed Description

Definition at line 90 of file SiStripSpyEventMatcher.h.

Constructor & Destructor Documentation

sistrip::SpyEventMatcher::EventKey::EventKey ( const uint32_t  eventId,
const uint8_t  apvAddress 
)

Member Function Documentation

uint8_t sistrip::SpyEventMatcher::EventKey::apvAddress ( ) const
inline

Definition at line 95 of file SiStripSpyEventMatcher.h.

References apvAddress_.

uint32_t sistrip::SpyEventMatcher::EventKey::eventId ( ) const
inline

Definition at line 94 of file SiStripSpyEventMatcher.h.

References eventId_.

bool sistrip::SpyEventMatcher::EventKey::operator< ( const EventKey rhs) const
inline

Definition at line 186 of file SiStripSpyEventMatcher.h.

References apvAddress_, and eventId_.

187  {
188  return ( (this->eventId_<rhs.eventId_) ? true : ( ((this->eventId_==rhs.eventId_) && (this->apvAddress_<rhs.apvAddress_)) ? true : false) );
189  }

Member Data Documentation

uint8_t sistrip::SpyEventMatcher::EventKey::apvAddress_
private

Definition at line 99 of file SiStripSpyEventMatcher.h.

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

uint32_t sistrip::SpyEventMatcher::EventKey::eventId_
private

Definition at line 98 of file SiStripSpyEventMatcher.h.

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