CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 160 of file FedRawDataInputSource.h.

Constructor & Destructor Documentation

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

Definition at line 170 of file FedRawDataInputSource.h.

References buf_, reset(), and size_.

170  : size_(size),index_(index) {
171  buf_ = new unsigned char[size_];
172  reset(0,0,0);
173  }
unsigned int index_
void reset(unsigned int newOffset, unsigned int toRead, unsigned int fileIndex)
unsigned char * buf_
tuple size
Write out results.
InputChunk::~InputChunk ( )
inline

Definition at line 181 of file FedRawDataInputSource.h.

References buf_.

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

Member Function Documentation

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

Definition at line 174 of file FedRawDataInputSource.h.

References fileIndex_, offset_, readComplete_, and usedSize_.

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

174  {
175  offset_=newOffset;
176  usedSize_=toRead;
177  fileIndex_=fileIndex;
178  readComplete_=false;
179  }
unsigned int offset_
unsigned int fileIndex_
std::atomic< bool > readComplete_

Member Data Documentation

unsigned char* InputChunk::buf_
unsigned int InputChunk::fileIndex_

Definition at line 167 of file FedRawDataInputSource.h.

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

unsigned int InputChunk::index_

Definition at line 165 of file FedRawDataInputSource.h.

InputChunk* InputChunk::next_ = nullptr

Definition at line 162 of file FedRawDataInputSource.h.

unsigned int InputChunk::offset_

Definition at line 166 of file FedRawDataInputSource.h.

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

std::atomic<bool> InputChunk::readComplete_
uint32_t InputChunk::size_

Definition at line 163 of file FedRawDataInputSource.h.

Referenced by InputChunk().

uint32_t InputChunk::usedSize_ = 0

Definition at line 164 of file FedRawDataInputSource.h.

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