CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ME0Digi.cc
Go to the documentation of this file.
2 #include <iostream>
3 
4 ME0Digi::ME0Digi(int strip, int bx) : strip_(strip), bx_(bx) {}
5 
6 ME0Digi::ME0Digi() : strip_(0), bx_(0) {}
7 
8 bool ME0Digi::operator==(const ME0Digi& digi) const { return strip_ == digi.strip() and bx_ == digi.bx(); }
9 
10 bool ME0Digi::operator!=(const ME0Digi& digi) const { return strip_ != digi.strip() or bx_ != digi.bx(); }
11 
12 bool ME0Digi::operator<(const ME0Digi& digi) const {
13  if (digi.bx() == bx_)
14  return digi.strip() < strip_;
15  else
16  return digi.bx() < bx_;
17 }
18 
19 std::ostream& operator<<(std::ostream& o, const ME0Digi& digi) {
20  return o << " strip: " << digi.strip() << " bx: " << digi.bx();
21 }
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::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
bool operator!=(const ME0Digi &digi) const
Definition: ME0Digi.cc:10
ME0Digi()
Definition: ME0Digi.cc:6
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:167
uint16_t strip_
Definition: ME0Digi.h:29
int strip() const
Definition: ME0Digi.h:25
bool operator==(const ME0Digi &digi) const
Definition: ME0Digi.cc:8
int16_t bx_
Definition: ME0Digi.h:30
int bx() const
Definition: ME0Digi.h:26
bool operator<(const ME0Digi &digi) const
Definition: ME0Digi.cc:12