CMS 3D CMS Logo

Public Member Functions | Static Public Member Functions | Private Attributes

DTLocalTriggerSectorCollectorHeaderWord Class Reference

#include <DTDDUWords.h>

List of all members.

Public Member Functions

 DTLocalTriggerSectorCollectorHeaderWord ()
 Constructor.
 DTLocalTriggerSectorCollectorHeaderWord (const DTLocalTriggerSectorCollectorHeaderWord &obj)
 DTLocalTriggerSectorCollectorHeaderWord (const uint32_t index)
int Latency () const
int NumberOf16bitWords () const
virtual ~DTLocalTriggerSectorCollectorHeaderWord ()
 Destructor.

Static Public Member Functions

static void set (uint32_t &word, int lat, int nw)

Private Attributes

uint32_t word_

Detailed Description

DT Sector Collector private header interpreter. It interprets Latency measured by SC-Latency Timer Unit (still testing!) and the number of 16-bit words following this header sent by the Sector Collector

Date:
2009/05/07 07:57:03
Revision:
1.13
Author:
R. Travaglini - INFN Bologna

Definition at line 960 of file DTDDUWords.h.


Constructor & Destructor Documentation

DTLocalTriggerSectorCollectorHeaderWord::DTLocalTriggerSectorCollectorHeaderWord ( ) [inline]

Constructor.

Definition at line 965 of file DTDDUWords.h.

{}
DTLocalTriggerSectorCollectorHeaderWord::DTLocalTriggerSectorCollectorHeaderWord ( const DTLocalTriggerSectorCollectorHeaderWord obj) [inline]

Definition at line 967 of file DTDDUWords.h.

References getGTfromDQMFile::obj.

{ *this = obj; }
DTLocalTriggerSectorCollectorHeaderWord::DTLocalTriggerSectorCollectorHeaderWord ( const uint32_t  index) [inline]

Definition at line 969 of file DTDDUWords.h.

                                                                : 
    word_(index) {}
virtual DTLocalTriggerSectorCollectorHeaderWord::~DTLocalTriggerSectorCollectorHeaderWord ( ) [inline, virtual]

Destructor.

Definition at line 973 of file DTDDUWords.h.

{}

Member Function Documentation

int DTLocalTriggerSectorCollectorHeaderWord::Latency ( ) const [inline]

Definition at line 975 of file DTDDUWords.h.

References SC_LAT_MASK, SC_LAT_SHIFT, and word_.

{ return ((word_  >> SC_LAT_SHIFT) &  SC_LAT_MASK);}
int DTLocalTriggerSectorCollectorHeaderWord::NumberOf16bitWords ( ) const [inline]

Definition at line 976 of file DTDDUWords.h.

References SC_NW_MASK, and word_.

Referenced by DTROS25Unpacker::interpretRawData(), and DTDataIntegrityTask::processROS25().

{ return (word_ & SC_NW_MASK);}
static void DTLocalTriggerSectorCollectorHeaderWord::set ( uint32_t &  word,
int  lat,
int  nw 
) [inline, static]

Member Data Documentation

Definition at line 992 of file DTDDUWords.h.

Referenced by Latency(), and NumberOf16bitWords().