CMS 3D CMS Logo

Public Member Functions | Private Attributes

sistrip::SpyEventMatcher::EventKey Class Reference

List of all members.

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 89 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 94 of file SiStripSpyEventMatcher.h.

References apvAddress_.

{ return apvAddress_; }
uint32_t sistrip::SpyEventMatcher::EventKey::eventId ( ) const [inline]

Definition at line 93 of file SiStripSpyEventMatcher.h.

References eventId_.

{ return eventId_; }
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) );
  }

Member Data Documentation

Definition at line 98 of file SiStripSpyEventMatcher.h.

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

Definition at line 97 of file SiStripSpyEventMatcher.h.

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