#include <PerDaqBlock.h>
Public Member Functions | |
| PerDaqBlock () | |
| Creates an instance of this class. | |
| PerDaqBlock (const unsigned int size) | |
| Creates an instance of this class. | |
| virtual | ~PerDaqBlock () |
| Destroys this instnace of the class. | |
| unsigned int | size () const |
| Returns the number of bytes in this block. | |
Public Attributes | |
| std::vector< unsigned int > | rawData |
| The DAQ data in this block. | |
Definition at line 15 of file PerDaqBlock.h.
| PerDaqBlock::PerDaqBlock | ( | ) |
Creates an instance of this class.
Definition at line 12 of file PerDaqBlock.cc.
00012 : 00013 rawData(0) { 00014 }
| PerDaqBlock::PerDaqBlock | ( | const unsigned int | size | ) |
| PerDaqBlock::~PerDaqBlock | ( | ) | [virtual] |
| unsigned int PerDaqBlock::size | ( | ) | const |
Returns the number of bytes in this block.
Definition at line 23 of file PerDaqBlock.cc.
00023 { 00024 return rawData.size(); 00025 }
| std::vector<unsigned int> PerDaqBlock::rawData |
1.4.7