CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
ME0Digi Class Reference

#include <ME0Digi.h>

Public Member Functions

int bx () const
 
 ME0Digi (int strip, int bx)
 
 ME0Digi ()
 
bool operator!= (const ME0Digi &digi) const
 
bool operator< (const ME0Digi &digi) const
 
bool operator== (const ME0Digi &digi) const
 
int strip () const
 

Private Attributes

int16_t bx_
 
uint16_t strip_
 

Detailed Description

Digi for ME0

Author
Sven Dildick (TAMU)

Definition at line 15 of file ME0Digi.h.

Constructor & Destructor Documentation

ME0Digi::ME0Digi ( int  strip,
int  bx 
)
explicit

Definition at line 4 of file ME0Digi.cc.

4  :
5  strip_(strip),
6  bx_(bx)
7 {}
uint16_t strip_
Definition: ME0Digi.h:30
int strip() const
Definition: ME0Digi.h:26
int16_t bx_
Definition: ME0Digi.h:31
int bx() const
Definition: ME0Digi.h:27
ME0Digi::ME0Digi ( )

Definition at line 9 of file ME0Digi.cc.

9  :
10  strip_(0),
11  bx_(0)
12 {}
uint16_t strip_
Definition: ME0Digi.h:30
int16_t bx_
Definition: ME0Digi.h:31

Member Function Documentation

int ME0Digi::bx ( ) const
inline

Definition at line 27 of file ME0Digi.h.

References bx_.

Referenced by operator!=(), operator<(), operator<<(), and operator==().

27 {return bx_; }
int16_t bx_
Definition: ME0Digi.h:31
bool ME0Digi::operator!= ( const ME0Digi digi) const

Definition at line 19 of file ME0Digi.cc.

References bx(), bx_, or, strip(), and strip_.

20 {
21  return strip_ != digi.strip() or bx_ != digi.bx();
22 }
uint16_t strip_
Definition: ME0Digi.h:30
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
int strip() const
Definition: ME0Digi.h:26
int16_t bx_
Definition: ME0Digi.h:31
int bx() const
Definition: ME0Digi.h:27
bool ME0Digi::operator< ( const ME0Digi digi) const

Definition at line 24 of file ME0Digi.cc.

References bx(), bx_, strip(), and strip_.

25 {
26  if(digi.bx() == bx_)
27  return digi.strip() < strip_;
28  else
29  return digi.bx() < bx_;
30 }
uint16_t strip_
Definition: ME0Digi.h:30
int strip() const
Definition: ME0Digi.h:26
int16_t bx_
Definition: ME0Digi.h:31
int bx() const
Definition: ME0Digi.h:27
bool ME0Digi::operator== ( const ME0Digi digi) const

Definition at line 14 of file ME0Digi.cc.

References bx(), bx_, strip(), and strip_.

15 {
16  return strip_ == digi.strip() and bx_ == digi.bx();
17 }
uint16_t strip_
Definition: ME0Digi.h:30
int strip() const
Definition: ME0Digi.h:26
int16_t bx_
Definition: ME0Digi.h:31
int bx() const
Definition: ME0Digi.h:27
int ME0Digi::strip ( ) const
inline

Definition at line 26 of file ME0Digi.h.

References strip_.

Referenced by operator!=(), operator<(), operator<<(), and operator==().

26 { return strip_; }
uint16_t strip_
Definition: ME0Digi.h:30

Member Data Documentation

int16_t ME0Digi::bx_
private

Definition at line 31 of file ME0Digi.h.

Referenced by bx(), operator!=(), operator<(), and operator==().

uint16_t ME0Digi::strip_
private

Definition at line 30 of file ME0Digi.h.

Referenced by operator!=(), operator<(), operator==(), and strip().