CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
L1MuUnsignedPacking< Bits > Class Template Reference

#include <L1MuPacking.h>

Inheritance diagram for L1MuUnsignedPacking< Bits >:
L1MuPacking

Public Member Functions

virtual int idxFromPacked (unsigned packed) const
 get the value from the packed notation (always positive) More...
 
virtual unsigned packedFromIdx (int idx) const
 get the packed notation of a value, check the range More...
 
virtual int signFromPacked (unsigned packed) const
 get the sign from the packed notation. always psitive (0) More...
 
- Public Member Functions inherited from L1MuPacking
virtual ~L1MuPacking ()
 

Additional Inherited Members

- Public Attributes inherited from L1MuPacking
 COND_SERIALIZABLE
 

Detailed Description

template<unsigned int Bits>
class L1MuUnsignedPacking< Bits >

Packing of an unsigned int in a bit field

Definition at line 55 of file L1MuPacking.h.

Member Function Documentation

template<unsigned int Bits>
virtual int L1MuUnsignedPacking< Bits >::idxFromPacked ( unsigned  packed) const
inlinevirtual

get the value from the packed notation (always positive)

Implements L1MuPacking.

Definition at line 60 of file L1MuPacking.h.

60 { return (int) packed;};
template<unsigned int Bits>
virtual unsigned L1MuUnsignedPacking< Bits >::packedFromIdx ( int  idx) const
inlinevirtual

get the packed notation of a value, check the range

Implements L1MuPacking.

Definition at line 62 of file L1MuPacking.h.

References customizeTrackingMonitorSeedNumber::idx.

62  {
63  if (idx >= (1 << Bits) ) edm::LogWarning("ScaleRangeViolation")
64  << "L1MuUnignedPacking::packedFromIdx: warning value " << idx
65  << "exceeds " << Bits << "-bit range !!!";
66  return (unsigned) idx;
67  };
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
template<unsigned int Bits>
virtual int L1MuUnsignedPacking< Bits >::signFromPacked ( unsigned  packed) const
inlinevirtual

get the sign from the packed notation. always psitive (0)

Implements L1MuPacking.

Definition at line 58 of file L1MuPacking.h.

58 { return 0;};