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)

Date:
2009/05/07 07:57:03
Revision:
1.13
Author
M. Zanetti - INFN Padova

Definition at line 309 of file DTDDUWords.h.

Constructor & Destructor Documentation

DTROSErrorWord::DTROSErrorWord ( )
inline

Constructor.

Definition at line 314 of file DTDDUWords.h.

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

Definition at line 316 of file DTDDUWords.h.

References getGTfromDQMFile::obj.

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

Definition at line 318 of file DTDDUWords.h.

318  :
319  word_(index) {}
uint32_t word_
Definition: DTDDUWords.h:342
virtual DTROSErrorWord::~DTROSErrorWord ( )
inlinevirtual

Destructor.

Definition at line 322 of file DTDDUWords.h.

322 {}

Member Function Documentation

int DTROSErrorWord::cerosID ( ) const
inline

Definition at line 326 of file DTDDUWords.h.

References ERROR_CEROS_ID_MASK, errorType(), and word_.

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

Definition at line 324 of file DTDDUWords.h.

References ERROR_TYPE_MASK, ERROR_TYPE_SHIFT, and word_.

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

324 { 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:342
int DTROSErrorWord::robID ( ) const
inline

Definition at line 325 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:342
#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 328 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().

330  {
331 
332  word =
335  error_type << ERROR_TYPE_SHIFT |
336  rob_id << ERROR_ROB_ID_SHIFT |
337  1 << ERRORSHIFT;
338  }
#define WORDCONTROLSHIFT
Definition: DTDDUWords.h:11
static const uint32_t errorControlWord
Definition: DTDDUWords.h:188
#define ERRORSHIFT
Definition: DTDDUWords.h:17
#define WORDTYPESHIFT
Definition: DTDDUWords.h:13
static const uint32_t rosTypeWord
Word Type bits definitions.
Definition: DTDDUWords.h:192
#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 342 of file DTDDUWords.h.

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