CMS 3D CMS Logo

List of all members | Static Public Member Functions | Static Private Attributes
RPCTBMuon::HSBOut Class Reference

#include <RPCTBMuon.h>

Static Public Member Functions

static void fromBits (RPCTBMuon &muon, unsigned int value)
 
static unsigned int toBits (const RPCTBMuon &muon)
 

Static Private Attributes

static const int m_etaBitsCnt = 6
 
static const unsigned int m_etaBitsMask = 0x3f
 
static const int m_phiBitsCnt = 7
 
static const unsigned int m_phiBitsMask = 0x7f
 
static const int m_ptBitsCnt = 5
 
static const unsigned int m_ptBitsMask = 0x1f
 
static const int m_qualBitsCnt = 3
 
static const unsigned int m_qualBitsMask = 0x7
 
static const int m_signBitsCnt = 1
 
static const unsigned int m_signBitsMask = 0x1
 

Detailed Description

Definition at line 178 of file RPCTBMuon.h.

Member Function Documentation

void RPCTBMuon::HSBOut::fromBits ( RPCTBMuon muon,
unsigned int  value 
)
static

Definition at line 323 of file RPCTBMuon.cc.

References RPCTBMuon::m_EtaAddress, RPCTBMuon::m_PhiAddress, RPCMuon::m_PtCode, RPCMuon::m_Quality, RPCMuon::m_Sign, and edm::shift.

Referenced by RPCTBMuon::fromBits().

323  {
324  unsigned int shift = 0;
325  muon.m_Sign = (value & (m_signBitsMask<<shift)) >> shift; shift += m_signBitsCnt;
326  muon.m_PtCode = (value & (m_ptBitsMask<<shift)) >> shift; shift += m_ptBitsCnt;
327  muon.m_Quality = (value & (m_qualBitsMask<<shift)) >> shift; shift += m_qualBitsCnt;
328  muon.m_PhiAddress = (value & (m_phiBitsMask<<shift)) >> shift; shift += m_phiBitsCnt;
329  muon.m_EtaAddress = (value & (m_etaBitsMask<<shift)) >> shift; shift += m_etaBitsCnt;
330 }
static const int m_ptBitsCnt
Definition: RPCTBMuon.h:181
unsigned int m_PhiAddress
Definition: RPCTBMuon.h:119
static const int m_signBitsCnt
Definition: RPCTBMuon.h:180
unsigned int m_PtCode
5 bits, 0-31.
Definition: RPCMuon.h:87
unsigned int m_Sign
1 bit, 0 - negative, 1 - positive.
Definition: RPCMuon.h:93
Definition: value.py:1
static const int m_etaBitsCnt
Definition: RPCTBMuon.h:184
static const int m_qualBitsCnt
Definition: RPCTBMuon.h:182
static const int m_phiBitsCnt
Definition: RPCTBMuon.h:183
unsigned int m_EtaAddress
Definition: RPCTBMuon.h:117
static unsigned int const shift
unsigned int m_Quality
3 bits, 0-7.
Definition: RPCMuon.h:90
unsigned int RPCTBMuon::HSBOut::toBits ( const RPCTBMuon muon)
static

Definition at line 309 of file RPCTBMuon.cc.

References RPCTBMuon::m_EtaAddress, RPCTBMuon::m_PhiAddress, RPCMuon::m_PtCode, RPCMuon::m_Quality, RPCMuon::m_Sign, edm::shift, and relativeConstraints::value.

Referenced by RPCTBMuon::toBits().

309  {
310  unsigned int value = 0;
311 
312  unsigned int shift = 0;
313  value = value | (muon.m_Sign<<shift); shift += m_signBitsCnt;
314  // value = (muon.m_Sign<<shift); shift += m_signBitsCnt;
315  value = value | (muon.m_PtCode<<shift); shift += m_ptBitsCnt;
316  value = value | (muon.m_Quality<<shift); shift += m_qualBitsCnt;
317  value = value | (muon.m_PhiAddress<<shift); shift += m_phiBitsCnt;
318  value = value | (muon.m_EtaAddress<<shift); shift += m_etaBitsCnt;
319 
320  return value;
321 }
static const int m_ptBitsCnt
Definition: RPCTBMuon.h:181
unsigned int m_PhiAddress
Definition: RPCTBMuon.h:119
static const int m_signBitsCnt
Definition: RPCTBMuon.h:180
unsigned int m_PtCode
5 bits, 0-31.
Definition: RPCMuon.h:87
unsigned int m_Sign
1 bit, 0 - negative, 1 - positive.
Definition: RPCMuon.h:93
Definition: value.py:1
static const int m_etaBitsCnt
Definition: RPCTBMuon.h:184
static const int m_qualBitsCnt
Definition: RPCTBMuon.h:182
static const int m_phiBitsCnt
Definition: RPCTBMuon.h:183
unsigned int m_EtaAddress
Definition: RPCTBMuon.h:117
static unsigned int const shift
unsigned int m_Quality
3 bits, 0-7.
Definition: RPCMuon.h:90

Member Data Documentation

const int RPCTBMuon::HSBOut::m_etaBitsCnt = 6
staticprivate

Definition at line 184 of file RPCTBMuon.h.

const unsigned int RPCTBMuon::HSBOut::m_etaBitsMask = 0x3f
staticprivate

Definition at line 184 of file RPCTBMuon.h.

const int RPCTBMuon::HSBOut::m_phiBitsCnt = 7
staticprivate

Definition at line 183 of file RPCTBMuon.h.

const unsigned int RPCTBMuon::HSBOut::m_phiBitsMask = 0x7f
staticprivate

Definition at line 183 of file RPCTBMuon.h.

const int RPCTBMuon::HSBOut::m_ptBitsCnt = 5
staticprivate

Definition at line 181 of file RPCTBMuon.h.

const unsigned int RPCTBMuon::HSBOut::m_ptBitsMask = 0x1f
staticprivate

Definition at line 181 of file RPCTBMuon.h.

const int RPCTBMuon::HSBOut::m_qualBitsCnt = 3
staticprivate

Definition at line 182 of file RPCTBMuon.h.

const unsigned int RPCTBMuon::HSBOut::m_qualBitsMask = 0x7
staticprivate

Definition at line 182 of file RPCTBMuon.h.

const int RPCTBMuon::HSBOut::m_signBitsCnt = 1
staticprivate

Definition at line 180 of file RPCTBMuon.h.

const unsigned int RPCTBMuon::HSBOut::m_signBitsMask = 0x1
staticprivate

Definition at line 180 of file RPCTBMuon.h.