CMS 3D CMS Logo

ME0PadDigi.cc
Go to the documentation of this file.
2 #include <iostream>
3 
4 ME0PadDigi::ME0PadDigi (int pad, int bx) :
5  pad_(pad),
6  bx_(bx)
7 {}
8 
10  pad_(0),
11  bx_(0)
12 {}
13 
14 bool ME0PadDigi::operator == (const ME0PadDigi& digi) const
15 {
16  return pad_ == digi.pad() and bx_ == digi.bx();
17 }
18 
19 bool ME0PadDigi::operator != (const ME0PadDigi& digi) const
20 {
21  return pad_ != digi.pad() or bx_ != digi.bx();
22 }
23 
24 bool ME0PadDigi::operator<(const ME0PadDigi& digi) const
25 {
26  if(digi.bx() == bx_)
27  return digi.pad() < pad_;
28  else
29  return digi.bx() < bx_;
30 }
31 
32 std::ostream & operator<<(std::ostream & o, const ME0PadDigi& digi)
33 {
34  return o << " pad: " << digi.pad() << " bx: " << digi.bx();
35 }
bool operator==(const ME0PadDigi &digi) const
Definition: ME0PadDigi.cc:14
bool operator<(const ME0PadDigi &digi) const
Definition: ME0PadDigi.cc:24
int16_t bx_
Definition: ME0PadDigi.h:31
int pad() const
Definition: ME0PadDigi.h:26
bool operator!=(const ME0PadDigi &digi) const
Definition: ME0PadDigi.cc:19
int bx() const
Definition: ME0PadDigi.h:27
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
uint16_t pad_
Definition: ME0PadDigi.h:30
std::ostream & operator<<(std::ostream &o, const ME0PadDigi &digi)
Definition: ME0PadDigi.cc:32