CMS 3D CMS Logo

List of all members | Public Member Functions | Public Attributes
InputChunk Struct Reference

#include <FedRawDataInputSource.h>

Public Member Functions

 InputChunk (unsigned int index, uint32_t size)
 
void reset (unsigned int newOffset, unsigned int toRead, unsigned int fileIndex)
 
 ~InputChunk ()
 

Public Attributes

unsigned char * buf_
 
unsigned int fileIndex_
 
unsigned int index_
 
InputChunknext_ = nullptr
 
unsigned int offset_
 
std::atomic< bool > readComplete_
 
uint32_t size_
 
uint32_t usedSize_ = 0
 

Detailed Description

Definition at line 186 of file FedRawDataInputSource.h.

Constructor & Destructor Documentation

◆ InputChunk()

InputChunk::InputChunk ( unsigned int  index,
uint32_t  size 
)
inline

Definition at line 196 of file FedRawDataInputSource.h.

References buf_, reset(), and size_.

196  : size_(size), index_(index) {
197  buf_ = new unsigned char[size_];
198  reset(0, 0, 0);
199  }
size
Write out results.
unsigned int index_
void reset(unsigned int newOffset, unsigned int toRead, unsigned int fileIndex)
unsigned char * buf_

◆ ~InputChunk()

InputChunk::~InputChunk ( )
inline

Definition at line 207 of file FedRawDataInputSource.h.

References buf_.

207 { delete[] buf_; }
unsigned char * buf_

Member Function Documentation

◆ reset()

void InputChunk::reset ( unsigned int  newOffset,
unsigned int  toRead,
unsigned int  fileIndex 
)
inline

Definition at line 200 of file FedRawDataInputSource.h.

References fileIndex_, offset_, readComplete_, and usedSize_.

Referenced by InputChunk(), and FedRawDataInputSource::readSupervisor().

200  {
201  offset_ = newOffset;
202  usedSize_ = toRead;
203  fileIndex_ = fileIndex;
204  readComplete_ = false;
205  }
unsigned int offset_
unsigned int fileIndex_
std::atomic< bool > readComplete_

Member Data Documentation

◆ buf_

unsigned char* InputChunk::buf_

◆ fileIndex_

unsigned int InputChunk::fileIndex_

Definition at line 193 of file FedRawDataInputSource.h.

Referenced by FedRawDataInputSource::readWorker(), and reset().

◆ index_

unsigned int InputChunk::index_

Definition at line 191 of file FedRawDataInputSource.h.

◆ next_

InputChunk* InputChunk::next_ = nullptr

Definition at line 188 of file FedRawDataInputSource.h.

◆ offset_

unsigned int InputChunk::offset_

Definition at line 192 of file FedRawDataInputSource.h.

Referenced by FedRawDataInputSource::readWorker(), and reset().

◆ readComplete_

std::atomic<bool> InputChunk::readComplete_

◆ size_

uint32_t InputChunk::size_

Definition at line 189 of file FedRawDataInputSource.h.

Referenced by InputChunk().

◆ usedSize_

uint32_t InputChunk::usedSize_ = 0

Definition at line 190 of file FedRawDataInputSource.h.

Referenced by FedRawDataInputSource::readWorker(), and reset().