CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GEMCSCPadDigi.cc
Go to the documentation of this file.
1 
9 #include <iostream>
10 
11 GEMCSCPadDigi::GEMCSCPadDigi (int pad, int bx) :
12  pad_(pad),
13  bx_(bx)
14 {}
15 
17  pad_(0),
18  bx_(0)
19 {}
20 
21 
22 // Comparison
24 {
25  if ( pad_ != digi.pad() ||
26  bx_ != digi.bx() ) return false;
27  return true;
28 }
29 
30 
32 bool GEMCSCPadDigi::operator<(const GEMCSCPadDigi& digi) const
33 {
34  if(digi.bx() == bx_)
35  return digi.pad() < pad_;
36  else
37  return digi.bx() < bx_;
38 }
39 
40 
41 std::ostream & operator<<(std::ostream & o, const GEMCSCPadDigi& digi)
42 {
43  return o << " " << digi.pad() << " " << digi.bx();
44 }
45 
46 
48 {
49  std::cout << "Pad " << pad() << " bx " << bx() <<std::endl;
50 }
51 
std::ostream & operator<<(std::ostream &out, const ALILine &li)
Definition: ALILine.cc:187
bool operator==(const GEMCSCPadDigi &digi) const
int bx() const
Definition: GEMCSCPadDigi.h:26
tuple cout
Definition: gather_cfg.py:121
void print() const
bool operator<(const GEMCSCPadDigi &digi) const
Precedence operator.
uint16_t pad_
Definition: GEMCSCPadDigi.h:31
int pad() const
Definition: GEMCSCPadDigi.h:25