CMS 3D CMS Logo

GEMCoPadDigi.h
Go to the documentation of this file.
1 #ifndef GEMDigi_GEMCoPadDigi_h
2 #define GEMDigi_GEMCoPadDigi_h
3 
13 #include <cstdint>
14 #include <iosfwd>
15 
17 
18 public:
19  explicit GEMCoPadDigi(uint8_t roll, GEMPadDigi pad1, GEMPadDigi pad2);
20  GEMCoPadDigi();
21 
22  bool operator==(const GEMCoPadDigi& digi) const;
23  bool operator!=(const GEMCoPadDigi& digi) const;
24 
25  int roll() const {return roll_;}
26  int pad(int l) const;
27  int bx(int l) const;
28 
29  GEMPadDigi first() const {return first_;}
30  GEMPadDigi second() const {return second_;}
31 
32  void print() const;
33 
34 private:
35  uint8_t roll_;
38 };
39 
40 std::ostream & operator<<(std::ostream & o, const GEMCoPadDigi& digi);
41 
42 #endif
43 
GEMPadDigi second_
Definition: GEMCoPadDigi.h:37
bool operator!=(const GEMCoPadDigi &digi) const
Definition: GEMCoPadDigi.cc:26
bool operator==(const GEMCoPadDigi &digi) const
Definition: GEMCoPadDigi.cc:19
int pad(int l) const
Definition: GEMCoPadDigi.cc:32
void print() const
Definition: GEMCoPadDigi.cc:48
int bx(int l) const
Definition: GEMCoPadDigi.cc:40
uint8_t roll_
Definition: GEMCoPadDigi.h:35
GEMPadDigi first() const
Definition: GEMCoPadDigi.h:29
int roll() const
Definition: GEMCoPadDigi.h:25
GEMPadDigi first_
Definition: GEMCoPadDigi.h:36
GEMPadDigi second() const
Definition: GEMCoPadDigi.h:30
std::ostream & operator<<(std::ostream &o, const GEMCoPadDigi &digi)
Definition: GEMCoPadDigi.cc:55