#include <EventFilter/DTRawToDigi/interface/DTDDUWords.h>
Public Member Functions | |
int | bxIDError () const |
DTDDUSecondStatusWord (const uint32_t index) | |
DTDDUSecondStatusWord (const DTDDUSecondStatusWord &obj) | |
DTDDUSecondStatusWord () | |
Constructor. | |
int | fifoAlmostFull () const |
int | fifoFull () const |
int | inputFifoAlmostFull () const |
int | inputFifoFull () const |
int | l1AIDError () const |
int | outputFifoAlmostFull () const |
int | outputFifoFull () const |
int | rosList () const |
virtual | ~DTDDUSecondStatusWord () |
Destructor. | |
Private Attributes | |
uint32_t | word_ |
It interprets the (16 bits) WARNING!! : It interprets the second part of a 64 bits word!
Definition at line 897 of file DTDDUWords.h.
DTDDUSecondStatusWord::DTDDUSecondStatusWord | ( | ) | [inline] |
DTDDUSecondStatusWord::DTDDUSecondStatusWord | ( | const DTDDUSecondStatusWord & | obj | ) | [inline] |
DTDDUSecondStatusWord::DTDDUSecondStatusWord | ( | const uint32_t | index | ) | [inline] |
virtual DTDDUSecondStatusWord::~DTDDUSecondStatusWord | ( | ) | [inline, virtual] |
int DTDDUSecondStatusWord::bxIDError | ( | ) | const [inline] |
Definition at line 913 of file DTDDUWords.h.
References word_.
Referenced by DTDataIntegrityTask::processFED().
00913 { return (word_ & 0x2) >> 1; }
int DTDDUSecondStatusWord::fifoAlmostFull | ( | ) | const [inline] |
Definition at line 916 of file DTDDUWords.h.
References word_.
Referenced by DTDataIntegrityTask::processFED().
00916 { return (word_ & 0x700) >> 8; }
int DTDDUSecondStatusWord::fifoFull | ( | ) | const [inline] |
Definition at line 914 of file DTDDUWords.h.
References word_.
Referenced by DTDataIntegrityTask::processFED().
00914 { return (word_ & 0x1C ) >> 2; }
int DTDDUSecondStatusWord::inputFifoAlmostFull | ( | ) | const [inline] |
Definition at line 917 of file DTDDUWords.h.
References word_.
Referenced by DTDataIntegrityTask::processFED().
00917 { return (word_ & 0x3800) >> 11; }
int DTDDUSecondStatusWord::inputFifoFull | ( | ) | const [inline] |
Definition at line 915 of file DTDDUWords.h.
References word_.
Referenced by DTDataIntegrityTask::processFED().
00915 { return (word_ & 0xE0) >> 5; }
int DTDDUSecondStatusWord::l1AIDError | ( | ) | const [inline] |
Definition at line 912 of file DTDDUWords.h.
References word_.
Referenced by DTDataIntegrityTask::processFED().
00912 { return (word_ & 0x1); }
int DTDDUSecondStatusWord::outputFifoAlmostFull | ( | ) | const [inline] |
Definition at line 919 of file DTDDUWords.h.
References word_.
Referenced by DTDataIntegrityTask::processFED().
00919 { return (word_ & 0x8000) >> 15; }
int DTDDUSecondStatusWord::outputFifoFull | ( | ) | const [inline] |
Definition at line 918 of file DTDDUWords.h.
References word_.
Referenced by DTDataIntegrityTask::processFED().
00918 { return (word_ & 0x4000) >> 14; }
int DTDDUSecondStatusWord::rosList | ( | ) | const [inline] |
Definition at line 920 of file DTDDUWords.h.
References word_.
Referenced by DTDDUUnpacker::interpretRawData(), and DTDataIntegrityTask::processFED().
00920 {return (word_ & 0xFFF0000) >> 16; }
uint32_t DTDDUSecondStatusWord::word_ [private] |
Definition at line 930 of file DTDDUWords.h.
Referenced by bxIDError(), fifoAlmostFull(), fifoFull(), inputFifoAlmostFull(), inputFifoFull(), l1AIDError(), outputFifoAlmostFull(), outputFifoFull(), and rosList().