![]() |
![]() |
#include <EventFilter/DTRawToDigi/interface/DTDDUWords.h>
Public Member Functions | |
int | bunchID () const |
DTTDCHeaderWord (const uint32_t index) | |
DTTDCHeaderWord (const DTTDCHeaderWord &obj) | |
DTTDCHeaderWord () | |
Constructor. | |
int | eventID () const |
int | HU () const |
int | PAF () const |
int | PC () const |
int | tdcID () const |
<== OBSOLETE!! | |
virtual | ~DTTDCHeaderWord () |
Destructor. | |
Static Public Member Functions | |
static void | set (uint32_t &word, int pc, int paf, int hu, int tdc_id, int event_id, int bunch_id) |
Private Attributes | |
uint32_t | word_ |
It interprets the Parity Checks, FIFO occupancy, Lokeced channels (all 1 bit), the TDC_ID (2 bits), the Event ID (12 bits) and the Bunch ID (12 bits).
Definition at line 501 of file DTDDUWords.h.
DTTDCHeaderWord::DTTDCHeaderWord | ( | ) | [inline] |
DTTDCHeaderWord::DTTDCHeaderWord | ( | const DTTDCHeaderWord & | obj | ) | [inline] |
DTTDCHeaderWord::DTTDCHeaderWord | ( | const uint32_t | index | ) | [inline] |
virtual DTTDCHeaderWord::~DTTDCHeaderWord | ( | ) | [inline, virtual] |
int DTTDCHeaderWord::bunchID | ( | ) | const [inline] |
Definition at line 521 of file DTDDUWords.h.
References BUNCH_ID_MASK, and word_.
00521 { return (word_ & BUNCH_ID_MASK);}
int DTTDCHeaderWord::eventID | ( | ) | const [inline] |
Definition at line 520 of file DTDDUWords.h.
References EVENT_ID_MASK, EVENT_ID_SHIFT, and word_.
00520 { return (word_ & EVENT_ID_MASK) >> EVENT_ID_SHIFT;}
int DTTDCHeaderWord::HU | ( | ) | const [inline] |
int DTTDCHeaderWord::PAF | ( | ) | const [inline] |
int DTTDCHeaderWord::PC | ( | ) | const [inline] |
static void DTTDCHeaderWord::set | ( | uint32_t & | word, | |
int | pc, | |||
int | paf, | |||
int | hu, | |||
int | tdc_id, | |||
int | event_id, | |||
int | bunch_id | |||
) | [inline, static] |
Definition at line 523 of file DTDDUWords.h.
References EVENT_ID_SHIFT, PAF_SHIFT, PC_SHIFT, TDC_ID_SHIFT, DTROSWordType::tdcHeaderControlWord, and WORDCONTROLSHIFT.
00529 { 00530 00531 word = 00532 DTROSWordType::tdcHeaderControlWord << WORDCONTROLSHIFT | 00533 pc << PC_SHIFT | 00534 paf << PAF_SHIFT | 00535 hu << PAF_SHIFT | 00536 tdc_id << TDC_ID_SHIFT | 00537 event_id << EVENT_ID_SHIFT | 00538 bunch_id; 00539 }
int DTTDCHeaderWord::tdcID | ( | ) | const [inline] |
<== OBSOLETE!!
Definition at line 519 of file DTDDUWords.h.
References TDC_ID_MASK, TDC_ID_SHIFT, and word_.
00519 { return (word_ & TDC_ID_MASK) >> TDC_ID_SHIFT;}
uint32_t DTTDCHeaderWord::word_ [private] |