CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes | Friends
L1MuPseudoSignedPacking Class Reference

#include <L1MuPacking.h>

Inheritance diagram for L1MuPseudoSignedPacking:
L1MuPacking

Public Member Functions

int idxFromPacked (unsigned packed) const override
 get the value from the packed notation (+/-) More...
 
 L1MuPseudoSignedPacking ()
 
 L1MuPseudoSignedPacking (unsigned int nbits)
 
unsigned packedFromIdx (int idx) const override
 get the packed notation of a value, check range More...
 
virtual unsigned packedFromIdx (int idx, int sig) const
 get the packed notation of a value, check range; sets the sign separately, 1 is neg. sign(!) More...
 
int signFromPacked (unsigned packed) const override
 get the (pseudo-)sign from the packed notation (0=positive, 1=negative) More...
 
 ~L1MuPseudoSignedPacking () override
 
- Public Member Functions inherited from L1MuPacking
virtual ~L1MuPacking ()
 

Private Member Functions

template<class Archive >
void serialize (Archive &ar, const unsigned int version)
 

Private Attributes

unsigned int m_nbits
 

Friends

class boost::serialization::access
 
template<typename CondSerializationT , typename Enabled >
struct cond::serialization::access
 

Detailed Description

Packing of a signed int in a bit field (pseudo-sign)

There is a -0 and a +0 in the pseudo-signed scale

Definition at line 137 of file L1MuPacking.h.

Constructor & Destructor Documentation

L1MuPseudoSignedPacking::L1MuPseudoSignedPacking ( )
inline

Definition at line 139 of file L1MuPacking.h.

139 {}
L1MuPseudoSignedPacking::~L1MuPseudoSignedPacking ( )
inlineoverride

Definition at line 140 of file L1MuPacking.h.

140 {};
L1MuPseudoSignedPacking::L1MuPseudoSignedPacking ( unsigned int  nbits)
inline

Definition at line 141 of file L1MuPacking.h.

141 : m_nbits(nbits) {};

Member Function Documentation

int L1MuPseudoSignedPacking::idxFromPacked ( unsigned  packed) const
inlineoverridevirtual

get the value from the packed notation (+/-)

Implements L1MuPacking.

Definition at line 147 of file L1MuPacking.h.

References createfilelist::int, and RecoTauDiscriminantConfiguration::mask.

147  {
148  unsigned mask = (1 << (m_nbits-1)) - 1; // for lower bits
149  int absidx = (int) ( packed & mask );
150  unsigned psmask = (1 << (m_nbits-1) );
151  return absidx * ( ( (packed & psmask) == psmask ) ? -1 : 1 ); // pseudo sign==1 is negative
152  };
unsigned L1MuPseudoSignedPacking::packedFromIdx ( int  idx) const
inlineoverridevirtual

get the packed notation of a value, check range

Implements L1MuPacking.

Definition at line 154 of file L1MuPacking.h.

References funct::abs().

154  {
155  unsigned packed = std::abs(idx);
156  unsigned maxabs = (1 << (m_nbits-1)) -1;
157  if (packed > maxabs) edm::LogWarning("ScaleRangeViolation")
158  << "L1MuPseudoSignedPacking::packedFromIdx: warning value " << idx
159  << "exceeds " << m_nbits << "-bit range !!!";
160  if (idx < 0) packed |= 1 << (m_nbits-1);
161  return packed;
162  }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
virtual unsigned L1MuPseudoSignedPacking::packedFromIdx ( int  idx,
int  sig 
) const
inlinevirtual

get the packed notation of a value, check range; sets the sign separately, 1 is neg. sign(!)

Definition at line 165 of file L1MuPacking.h.

References funct::abs().

165  {
166  unsigned packed = std::abs(idx);
167  unsigned maxabs = (1 << (m_nbits-1)) -1;
168  if (packed > maxabs) edm::LogWarning("ScaleRangeViolation")
169  << "L1MuPseudoSignedPacking::packedFromIdx: warning value " << idx
170  << "exceeds " << m_nbits << "-bit range !!!";
171  if (sig==1) packed |= 1 << (m_nbits-1); // sig==1 is negative
172  return packed;
173  }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
template<class Archive >
void L1MuPseudoSignedPacking::serialize ( Archive &  ar,
const unsigned int  version 
)
private
int L1MuPseudoSignedPacking::signFromPacked ( unsigned  packed) const
inlineoverridevirtual

get the (pseudo-)sign from the packed notation (0=positive, 1=negative)

Implements L1MuPacking.

Definition at line 144 of file L1MuPacking.h.

144 { return ( packed & (1 << (m_nbits-1)) ) ? 1 : 0;};

Friends And Related Function Documentation

friend class boost::serialization::access
friend

Definition at line 178 of file L1MuPacking.h.

template<typename CondSerializationT , typename Enabled >
friend struct cond::serialization::access
friend

Definition at line 178 of file L1MuPacking.h.

Member Data Documentation

unsigned int L1MuPseudoSignedPacking::m_nbits
private

Definition at line 176 of file L1MuPacking.h.