#include <ErrorRDDM.h>
Public Member Functions | |
ErrorRDDM (const DataRecord r) | |
unsigned int | link () const |
std::string | print () const |
unsigned int | rmb () const |
Static Public Member Functions | |
static bool | matchType (const DataRecord &record) |
Static Private Attributes | |
static const unsigned int | LNK_MASK = 0x1F |
static const unsigned int | RDDM_TYPE_FLAG = 0x1E |
static const unsigned int | RDDM_TYPE_SHIFT = 11 |
static const unsigned int | RMB_MASK = 0x3F |
static const unsigned int | RMB_SHIFT = 5 |
Definition at line 10 of file ErrorRDDM.h.
rpcrawtodigi::ErrorRDDM::ErrorRDDM | ( | const DataRecord | r | ) | [inline] |
Definition at line 13 of file ErrorRDDM.h.
: DataRecord(r) {}
unsigned int ErrorRDDM::link | ( | ) | const |
Definition at line 15 of file ErrorRDDM.cc.
References LNK_MASK, and rpcrawtodigi::DataRecord::theData.
Referenced by print().
bool ErrorRDDM::matchType | ( | const DataRecord & | record | ) | [static] |
Definition at line 5 of file ErrorRDDM.cc.
References rpcrawtodigi::DataRecord::data(), RDDM_TYPE_FLAG, and RDDM_TYPE_SHIFT.
Referenced by rpcrawtodigi::DataRecord::print(), and rpcrawtodigi::DataRecord::type().
{ return ( RDDM_TYPE_FLAG == static_cast<unsigned int>(record.data() >> RDDM_TYPE_SHIFT) ); }
std::string ErrorRDDM::print | ( | void | ) | const |
Reimplemented from rpcrawtodigi::DataRecord.
Definition at line 21 of file ErrorRDDM.cc.
Referenced by rpcrawtodigi::EventRecords::print(), and rpcrawtodigi::DataRecord::print().
unsigned int ErrorRDDM::rmb | ( | ) | const |
Definition at line 10 of file ErrorRDDM.cc.
References RMB_MASK, RMB_SHIFT, and rpcrawtodigi::DataRecord::theData.
Referenced by print().
const unsigned int rpcrawtodigi::ErrorRDDM::LNK_MASK = 0x1F [static, private] |
Definition at line 28 of file ErrorRDDM.h.
Referenced by link().
const unsigned int rpcrawtodigi::ErrorRDDM::RDDM_TYPE_FLAG = 0x1E [static, private] |
Definition at line 22 of file ErrorRDDM.h.
Referenced by matchType().
const unsigned int rpcrawtodigi::ErrorRDDM::RDDM_TYPE_SHIFT = 11 [static, private] |
Definition at line 23 of file ErrorRDDM.h.
Referenced by matchType().
const unsigned int rpcrawtodigi::ErrorRDDM::RMB_MASK = 0x3F [static, private] |
Definition at line 25 of file ErrorRDDM.h.
Referenced by rmb().
const unsigned int rpcrawtodigi::ErrorRDDM::RMB_SHIFT = 5 [static, private] |
Definition at line 26 of file ErrorRDDM.h.
Referenced by rmb().