CMS 3D CMS Logo

Public Member Functions | Static Public Member Functions | Private Attributes

DTTDCTrailerWord Class Reference

#include <DTDDUWords.h>

List of all members.

Public Member Functions

 DTTDCTrailerWord ()
 Constructor.
 DTTDCTrailerWord (const DTTDCTrailerWord &obj)
 DTTDCTrailerWord (const uint32_t index)
int eventID () const
int HU () const
int PAF () const
int PC () const
int tdcID () const
 <== OBSOLETE!!
int wordCount () const
virtual ~DTTDCTrailerWord ()
 Destructor.

Static Public Member Functions

static void set (uint32_t &word, int pc, int paf, int hu, int tdc_id, int event_id, int word_count)

Private Attributes

uint32_t word_

Detailed Description

DT TDC Trailer interpreter. It interprets the Parity Checks, FIFO occupancy, Lokeced channels (all 1 bit), the TDC_ID (2 bits), the Event ID (12 bits) and the Word ID (12 bits).

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

Definition at line 570 of file DTDDUWords.h.


Constructor & Destructor Documentation

DTTDCTrailerWord::DTTDCTrailerWord ( ) [inline]

Constructor.

Definition at line 575 of file DTDDUWords.h.

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

Definition at line 577 of file DTDDUWords.h.

References getGTfromDQMFile::obj.

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

Definition at line 579 of file DTDDUWords.h.

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

Destructor.

Definition at line 583 of file DTDDUWords.h.

{}

Member Function Documentation

int DTTDCTrailerWord::eventID ( ) const [inline]

Definition at line 589 of file DTDDUWords.h.

References EVENT_ID_MASK, EVENT_ID_SHIFT, and word_.

int DTTDCTrailerWord::HU ( ) const [inline]

Definition at line 587 of file DTDDUWords.h.

References PAF_MASK, PAF_SHIFT, and word_.

{ return (word_ & PAF_MASK) >> PAF_SHIFT;} 
int DTTDCTrailerWord::PAF ( ) const [inline]

Definition at line 586 of file DTDDUWords.h.

References PAF_MASK, PAF_SHIFT, and word_.

{ return (word_ & PAF_MASK) >> PAF_SHIFT;} 
int DTTDCTrailerWord::PC ( ) const [inline]

Definition at line 585 of file DTDDUWords.h.

References PC_MASK, PC_SHIFT, and word_.

{ return (word_ & PC_MASK) >> PC_SHIFT;} 
static void DTTDCTrailerWord::set ( uint32_t &  word,
int  pc,
int  paf,
int  hu,
int  tdc_id,
int  event_id,
int  word_count 
) [inline, static]

Definition at line 592 of file DTDDUWords.h.

References EVENT_ID_SHIFT, PAF_SHIFT, PC_SHIFT, TDC_ID_SHIFT, DTROSWordType::tdcTrailerControlWord, and WORDCONTROLSHIFT.

                                  {
    
    word = 
      DTROSWordType::tdcTrailerControlWord << WORDCONTROLSHIFT |
      pc << PC_SHIFT |
      paf << PAF_SHIFT |
      hu << PAF_SHIFT |
      tdc_id << TDC_ID_SHIFT |
      event_id << EVENT_ID_SHIFT |
      word_count;
  }
int DTTDCTrailerWord::tdcID ( ) const [inline]

<== OBSOLETE!!

Definition at line 588 of file DTDDUWords.h.

References TDC_ID_MASK, TDC_ID_SHIFT, and word_.

{ return (word_ & TDC_ID_MASK) >> TDC_ID_SHIFT;} 
int DTTDCTrailerWord::wordCount ( ) const [inline]

Definition at line 590 of file DTDDUWords.h.

References word_, and WORD_COUNT_MASK.

{ return (word_ & WORD_COUNT_MASK);} 

Member Data Documentation

uint32_t DTTDCTrailerWord::word_ [private]

Definition at line 612 of file DTDDUWords.h.

Referenced by eventID(), HU(), PAF(), PC(), tdcID(), and wordCount().