CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
DTROSErrorWord Class Reference

#include <DTDDUWords.h>

Public Member Functions

int cerosID () const
 
 DTROSErrorWord ()
 Constructor. More...
 
 DTROSErrorWord (const DTROSErrorWord &obj)
 
 DTROSErrorWord (const uint32_t index)
 
int errorType () const
 
int robID () const
 
virtual ~DTROSErrorWord ()
 Destructor. More...
 

Static Public Member Functions

static void set (uint32_t &word, int error_type, int rob_id)
 

Private Attributes

uint32_t word_
 

Detailed Description

DT ROS Error interpreter. It interprets the Error type, the ROB_ID (2 bits) and the CEROS ID (6 bits)

Author
M. Zanetti - INFN Padova

Definition at line 301 of file DTDDUWords.h.

Constructor & Destructor Documentation

DTROSErrorWord::DTROSErrorWord ( )
inline

Constructor.

Definition at line 306 of file DTDDUWords.h.

306 {}
DTROSErrorWord::DTROSErrorWord ( const DTROSErrorWord obj)
inline

Definition at line 308 of file DTDDUWords.h.

References getGTfromDQMFile::obj.

308 { *this = obj; }
DTROSErrorWord::DTROSErrorWord ( const uint32_t  index)
inline

Definition at line 310 of file DTDDUWords.h.

310  :
311  word_(index) {}
uint32_t word_
Definition: DTDDUWords.h:334
virtual DTROSErrorWord::~DTROSErrorWord ( )
inlinevirtual

Destructor.

Definition at line 314 of file DTDDUWords.h.

314 {}

Member Function Documentation

int DTROSErrorWord::cerosID ( ) const
inline

Definition at line 318 of file DTDDUWords.h.

References ERROR_CEROS_ID_MASK, errorType(), and word_.

318 {return errorType()==4 ? (word_ & ERROR_CEROS_ID_MASK) : 0;}
#define ERROR_CEROS_ID_MASK
Definition: DTDDUWords.h:44
int errorType() const
Definition: DTDDUWords.h:316
uint32_t word_
Definition: DTDDUWords.h:334
int DTROSErrorWord::errorType ( ) const
inline

Definition at line 316 of file DTDDUWords.h.

References ERROR_TYPE_MASK, ERROR_TYPE_SHIFT, and word_.

Referenced by cerosID(), DTROS25Unpacker::interpretRawData(), and DTROSErrorNotifier::print().

316 { return (word_ & ERROR_TYPE_MASK) >> ERROR_TYPE_SHIFT;}
#define ERROR_TYPE_MASK
Definition: DTDDUWords.h:40
#define ERROR_TYPE_SHIFT
Definition: DTDDUWords.h:41
uint32_t word_
Definition: DTDDUWords.h:334
int DTROSErrorWord::robID ( ) const
inline

Definition at line 317 of file DTDDUWords.h.

References ERROR_ROB_ID_MASK, ERROR_ROB_ID_SHIFT, and word_.

Referenced by DTROS25Unpacker::interpretRawData(), and DTROSErrorNotifier::print().

#define ERROR_ROB_ID_MASK
Definition: DTDDUWords.h:42
uint32_t word_
Definition: DTDDUWords.h:334
#define ERROR_ROB_ID_SHIFT
Definition: DTDDUWords.h:43
static void DTROSErrorWord::set ( uint32_t &  word,
int  error_type,
int  rob_id 
)
inlinestatic

Definition at line 320 of file DTDDUWords.h.

References ERROR_ROB_ID_SHIFT, ERROR_TYPE_SHIFT, DTROSWordType::errorControlWord, ERRORSHIFT, DTROSWordType::rosTypeWord, WORDCONTROLSHIFT, and WORDTYPESHIFT.

Referenced by betterConfigParser.BetterConfigParser::getGeneral().

322  {
323 
324  word =
327  error_type << ERROR_TYPE_SHIFT |
328  rob_id << ERROR_ROB_ID_SHIFT |
329  1 << ERRORSHIFT;
330  }
#define WORDCONTROLSHIFT
Definition: DTDDUWords.h:11
static const uint32_t errorControlWord
Definition: DTDDUWords.h:186
#define ERRORSHIFT
Definition: DTDDUWords.h:17
#define WORDTYPESHIFT
Definition: DTDDUWords.h:13
static const uint32_t rosTypeWord
Word Type bits definitions.
Definition: DTDDUWords.h:190
#define ERROR_TYPE_SHIFT
Definition: DTDDUWords.h:41
#define ERROR_ROB_ID_SHIFT
Definition: DTDDUWords.h:43

Member Data Documentation

uint32_t DTROSErrorWord::word_
private

Definition at line 334 of file DTDDUWords.h.

Referenced by cerosID(), errorType(), and robID().