Project
Loading...
Searching...
No Matches
o2::phos::RawBuffer Class Reference

Buffer for PHOS raw pages. More...

#include <RawBuffer.h>

Public Member Functions

 RawBuffer ()=default
 
 ~RawBuffer ()=default
 
void reset ()
 
void flush ()
 Flush the buffer Does not overwrite the word buffer but just resets the counter and iterator.
 
void readFromStream (std::istream &in, uint32_t payloadsize)
 Read page from stream.
 
void readFromMemoryBuffer (const gsl::span< const char > rawmemory)
 Read page from raw memory buffer.
 
int getNDataWords () const
 Get the number of data words read for the superpage.
 
const gsl::span< const uint32_t > getDataWords () const
 Get all data words from the raw buffer.
 
bool hasNext () const
 Check whether the next data word exists.
 

Detailed Description

Buffer for PHOS raw pages.

Author
Dmitri Peresunko after Markus Fasel
Since
Sept, 2020

Definition at line 29 of file RawBuffer.h.

Constructor & Destructor Documentation

◆ RawBuffer()

o2::phos::RawBuffer::RawBuffer ( )
default

◆ ~RawBuffer()

o2::phos::RawBuffer::~RawBuffer ( )
default

Member Function Documentation

◆ flush()

void RawBuffer::flush ( )

Flush the buffer Does not overwrite the word buffer but just resets the counter and iterator.

Definition at line 19 of file RawBuffer.cxx.

◆ getDataWords()

const gsl::span< const uint32_t > o2::phos::RawBuffer::getDataWords ( ) const
inline

Get all data words from the raw buffer.

Returns
Span with data words in the buffer (removing trailing null entries)

Definition at line 61 of file RawBuffer.h.

◆ getNDataWords()

int o2::phos::RawBuffer::getNDataWords ( ) const
inline

Get the number of data words read for the superpage.

Returns
Number of data words in the superpage

Definition at line 57 of file RawBuffer.h.

◆ hasNext()

bool o2::phos::RawBuffer::hasNext ( ) const
inline

Check whether the next data word exists.

Returns
True if more data words exist, false otherwise Check is done starting from the current position of the iterator

Definition at line 67 of file RawBuffer.h.

◆ readFromMemoryBuffer()

void RawBuffer::readFromMemoryBuffer ( const gsl::span< const char rawmemory)

Read page from raw memory buffer.

Parameters
rawmemoryRaw memory buffer (as char words) with size of the payload from the raw data header Converts the char word raw memory buffer of a pages into into the 32 bit word buffer

Definition at line 46 of file RawBuffer.cxx.

◆ readFromStream()

void RawBuffer::readFromStream ( std::istream &  in,
uint32_t  payloadsize 
)

Read page from stream.

Parameters
inInput file stream
payloadsizeNumber of char words in payload Read a whole superpage from the raw stream and convert the bitwise representation directly into 32 bit words

Definition at line 26 of file RawBuffer.cxx.

◆ reset()

void o2::phos::RawBuffer::reset ( )
inline

Definition at line 35 of file RawBuffer.h.


The documentation for this class was generated from the following files: