![]() |
![]() |
#include <EventFilter/CSCRawToDigi/interface/CSCAnodeData2007.h>
Public Member Functions | |
CSCAnodeDataFrame2007 () | |
unsigned short | data () const |
bool | isHit (unsigned wireGroup) const |
given a wiregroup between 0 and 11, it tells whether this bit was on | |
Private Attributes | |
unsigned short | data_: 12 |
unsigned short | flag_: 1 |
unsigned short | reserved_: 3 |
Definition at line 8 of file CSCAnodeData2007.h.
CSCAnodeDataFrame2007::CSCAnodeDataFrame2007 | ( | ) | [inline] |
unsigned short CSCAnodeDataFrame2007::data | ( | ) | const [inline] |
Definition at line 18 of file CSCAnodeData2007.h.
References data_.
Referenced by CSCAnodeData2007::wireDigis().
00018 {return data_;}
bool CSCAnodeDataFrame2007::isHit | ( | unsigned | wireGroup | ) | const [inline] |
given a wiregroup between 0 and 11, it tells whether this bit was on
Definition at line 13 of file CSCAnodeData2007.h.
References data_.
Referenced by CSCAnodeData2007::wireDigis().
00013 { 00014 assert(wireGroup < 12); 00015 return ( (data_>>wireGroup) & 0x1 ); 00016 }
unsigned short CSCAnodeDataFrame2007::data_ [private] |
unsigned short CSCAnodeDataFrame2007::flag_ [private] |
Definition at line 23 of file CSCAnodeData2007.h.
unsigned short CSCAnodeDataFrame2007::reserved_ [private] |
Definition at line 22 of file CSCAnodeData2007.h.