CMS 3D CMS Logo

SiStripDigi.h
Go to the documentation of this file.
1 #ifndef DataFormats_SiStripDigi_SiStripDigi_H
2 #define DataFormats_SiStripDigi_SiStripDigi_H
3 
4 #include "boost/cstdint.hpp"
5 #include <iosfwd>
6 
12 class SiStripDigi {
13 public:
14  SiStripDigi(const uint16_t& strip, const uint16_t& adc) : strip_(strip), adc_(adc) { ; }
15 
16  SiStripDigi() : strip_(0), adc_(0) { ; }
17  ~SiStripDigi() { ; }
18 
19  inline const uint16_t& strip() const;
20  inline const uint16_t& adc() const;
21  inline const uint16_t& channel() const;
22 
23  inline bool operator<(const SiStripDigi& other) const;
24 
25 private:
26  uint16_t strip_;
27  uint16_t adc_;
28 };
29 
30 std::ostream& operator<<(std::ostream& o, const SiStripDigi& digi);
31 
32 // inline methods
33 const uint16_t& SiStripDigi::strip() const { return strip_; }
34 const uint16_t& SiStripDigi::adc() const { return adc_; }
35 const uint16_t& SiStripDigi::channel() const { return strip(); }
36 bool SiStripDigi::operator<(const SiStripDigi& other) const { return strip() < other.strip(); }
37 
38 #endif // DataFormats_SiStripDigi_SiStripDigi_H
std::ostream & operator<<(std::ostream &o, const SiStripDigi &digi)
Definition: SiStripDigi.cc:3
const uint16_t & strip() const
Definition: SiStripDigi.h:33
bool operator<(const SiStripDigi &other) const
Definition: SiStripDigi.h:36
A Digi for the silicon strip detector, containing both strip and adc information, and suitable for st...
Definition: SiStripDigi.h:12
uint16_t strip_
Definition: SiStripDigi.h:26
uint16_t adc_
Definition: SiStripDigi.h:27
SiStripDigi(const uint16_t &strip, const uint16_t &adc)
Definition: SiStripDigi.h:14
const uint16_t & adc() const
Definition: SiStripDigi.h:34
const uint16_t & channel() const
Definition: SiStripDigi.h:35