CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Attributes
DTTDCHeaderWord Class Reference

#include <DTDDUWords.h>

Public Member Functions

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

Static Public Member Functions

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

Private Attributes

uint32_t word_
 

Detailed Description

DT TDC Header 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 Bunch ID (12 bits).

Author
M. Zanetti - INFN Padova

Definition at line 405 of file DTDDUWords.h.

Constructor & Destructor Documentation

◆ DTTDCHeaderWord() [1/3]

DTTDCHeaderWord::DTTDCHeaderWord ( )
inline

Constructor.

Definition at line 408 of file DTDDUWords.h.

408 {}

◆ DTTDCHeaderWord() [2/3]

DTTDCHeaderWord::DTTDCHeaderWord ( const DTTDCHeaderWord obj)
inline

Definition at line 410 of file DTDDUWords.h.

References getGTfromDQMFile::obj.

410 { *this = obj; }

◆ DTTDCHeaderWord() [3/3]

DTTDCHeaderWord::DTTDCHeaderWord ( const uint32_t  index)
inline

Definition at line 412 of file DTDDUWords.h.

◆ ~DTTDCHeaderWord()

virtual DTTDCHeaderWord::~DTTDCHeaderWord ( )
inlinevirtual

Destructor.

Definition at line 415 of file DTDDUWords.h.

415 {}

Member Function Documentation

◆ bunchID()

int DTTDCHeaderWord::bunchID ( ) const
inline

Definition at line 422 of file DTDDUWords.h.

References BUNCH_ID_MASK, and word_.

422 { return (word_ & BUNCH_ID_MASK); }
#define BUNCH_ID_MASK
Definition: DTDDUWords.h:48
uint32_t word_
Definition: DTDDUWords.h:430

◆ eventID()

int DTTDCHeaderWord::eventID ( ) const
inline

Definition at line 421 of file DTDDUWords.h.

References EVENT_ID_MASK, EVENT_ID_SHIFT, and word_.

421 { return (word_ & EVENT_ID_MASK) >> EVENT_ID_SHIFT; }
#define EVENT_ID_MASK
Definition: DTDDUWords.h:46
#define EVENT_ID_SHIFT
Definition: DTDDUWords.h:47
uint32_t word_
Definition: DTDDUWords.h:430

◆ HU()

int DTTDCHeaderWord::HU ( ) const
inline

Definition at line 419 of file DTDDUWords.h.

References PAF_MASK, PAF_SHIFT, and word_.

419 { return (word_ & PAF_MASK) >> PAF_SHIFT; }
#define PAF_SHIFT
Definition: DTDDUWords.h:54
#define PAF_MASK
Definition: DTDDUWords.h:53
uint32_t word_
Definition: DTDDUWords.h:430

◆ PAF()

int DTTDCHeaderWord::PAF ( ) const
inline

Definition at line 418 of file DTDDUWords.h.

References PAF_MASK, PAF_SHIFT, and word_.

418 { return (word_ & PAF_MASK) >> PAF_SHIFT; }
#define PAF_SHIFT
Definition: DTDDUWords.h:54
#define PAF_MASK
Definition: DTDDUWords.h:53
uint32_t word_
Definition: DTDDUWords.h:430

◆ PC()

int DTTDCHeaderWord::PC ( ) const
inline

Definition at line 417 of file DTDDUWords.h.

References PC_MASK, PC_SHIFT, and word_.

417 { return (word_ & PC_MASK) >> PC_SHIFT; }
#define PC_SHIFT
Definition: DTDDUWords.h:52
#define PC_MASK
Definition: DTDDUWords.h:51
uint32_t word_
Definition: DTDDUWords.h:430

◆ set()

static void DTTDCHeaderWord::set ( uint32_t &  word,
int  pc,
int  paf,
int  hu,
int  tdc_id,
int  event_id,
int  bunch_id 
)
inlinestatic

Definition at line 424 of file DTDDUWords.h.

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

424  {
426  hu << PAF_SHIFT | tdc_id << TDC_ID_SHIFT | event_id << EVENT_ID_SHIFT | bunch_id;
427  }
#define WORDCONTROLSHIFT
Definition: DTDDUWords.h:11
static const uint32_t tdcHeaderControlWord
Definition: DTDDUWords.h:181
uint64_t word
#define PC_SHIFT
Definition: DTDDUWords.h:52
#define PAF_SHIFT
Definition: DTDDUWords.h:54
#define TDC_ID_SHIFT
Definition: DTDDUWords.h:56
#define EVENT_ID_SHIFT
Definition: DTDDUWords.h:47

◆ tdcID()

int DTTDCHeaderWord::tdcID ( ) const
inline

<== OBSOLETE!!

Definition at line 420 of file DTDDUWords.h.

References TDC_ID_MASK, TDC_ID_SHIFT, and word_.

420 { return (word_ & TDC_ID_MASK) >> TDC_ID_SHIFT; }
#define TDC_ID_MASK
Definition: DTDDUWords.h:55
#define TDC_ID_SHIFT
Definition: DTDDUWords.h:56
uint32_t word_
Definition: DTDDUWords.h:430

Member Data Documentation

◆ word_

uint32_t DTTDCHeaderWord::word_
private

Definition at line 430 of file DTDDUWords.h.

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