CMS 3D CMS Logo

EcalPseudoStripInputSample.h
Go to the documentation of this file.
1 #ifndef ECALPSEUDOSTRIPINPUTSAMPLE_H
2 #define ECALPSEUDOSTRIPINPUTSAMPLE_H
3 
4 #include <boost/cstdint.hpp>
5 #include <ostream>
6 
7 
8 
15  public:
18  EcalPseudoStripInputSample(int pseudoStripInput, bool finegrain);
19 
21  void setValue(uint16_t data){ theSample = data;}
23  uint16_t raw() const { return theSample; }
25  int pseudoStripInput() const { return theSample&0xFFF; }
27  bool fineGrain() const { return (theSample&0x1000)!=0; }
28 
30  uint16_t operator()() { return theSample; }
31 
32  private:
33  uint16_t theSample;
34 };
35 
36 std::ostream& operator<<(std::ostream& s, const EcalPseudoStripInputSample& samp);
37 
38 #endif
uint16_t operator()()
for streaming
bool fineGrain() const
get the fine-grain bit (1 bit, the 13-th)
int pseudoStripInput() const
get the pseudoStrip Input amplitude (12 bits)
uint16_t raw() const
get the raw word
std::ostream & operator<<(std::ostream &s, const EcalPseudoStripInputSample &samp)
void setValue(uint16_t data)
Set data.
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:82