Pack a set of values bitwise into a stream. More...
#include <BitPacker.h>
Public Member Functions | |
| BitPacker16 (STREAM &stream) | |
| Constructor. | |
| BitPacker16 (uint8_t nbits, STREAM &stream) | |
| Constructor. | |
| ~BitPacker16 () | |
| Destructor. | |
| void | pack (uint32_t x) |
| Pack one value to the stream. | |
Pack a set of values bitwise into a stream.
This helper can be used to pack a set of values into 32-bit words and write them to a stream. This is a special case for 16-bit values.
STREAM should support output (operator<<) with uint32_t (satisfied by a ROOT TBuffer).
| CxxUtils::BitPacker16< STREAM >::BitPacker16 | ( | STREAM & | stream | ) | [inline] |
Constructor.
| nbits | Number of bits per item to use in the packed representation. | |
| stream | Output stream object. | |
| stream | Output stream object. |
| CxxUtils::BitPacker16< STREAM >::BitPacker16 | ( | uint8_t | nbits, | |
| STREAM & | stream | |||
| ) | [inline] |
Constructor.
| nbits | Must be 16. | |
| stream | Output stream object. |
| CxxUtils::BitPacker16< STREAM >::~BitPacker16 | ( | ) | [inline] |
Destructor.
This may flush buffered data to the output stream.
| void CxxUtils::BitPacker16< STREAM >::pack | ( | uint32_t | dat | ) | [inline] |
Pack one value to the stream.
| x | The value to pack. The upper bits should all be clear. |
1.6.1