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_ |
Definition at line 89 of file SiStripSpyEventMatcher.h.
sistrip::SpyEventMatcher::EventKey::EventKey | ( | const uint32_t | eventId, |
const uint8_t | apvAddress | ||
) |
uint8_t sistrip::SpyEventMatcher::EventKey::apvAddress | ( | ) | const [inline] |
Definition at line 94 of file SiStripSpyEventMatcher.h.
References apvAddress_.
{ return apvAddress_; }
uint32_t sistrip::SpyEventMatcher::EventKey::eventId | ( | ) | const [inline] |
bool sistrip::SpyEventMatcher::EventKey::operator< | ( | const EventKey & | rhs | ) | const [inline] |
Definition at line 181 of file SiStripSpyEventMatcher.h.
References apvAddress_, and eventId_.
{ return ( (this->eventId_<rhs.eventId_) ? true : ( ((this->eventId_==rhs.eventId_) && (this->apvAddress_<rhs.apvAddress_)) ? true : false) ); }
uint8_t sistrip::SpyEventMatcher::EventKey::apvAddress_ [private] |
Definition at line 98 of file SiStripSpyEventMatcher.h.
Referenced by apvAddress(), and operator<().
uint32_t sistrip::SpyEventMatcher::EventKey::eventId_ [private] |
Definition at line 97 of file SiStripSpyEventMatcher.h.
Referenced by eventId(), and operator<().