mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-30 22:02:22 +02:00
Clean ImageAssembler
This commit is contained in:
@@ -24,16 +24,6 @@ void ImageAssembler::process(
|
||||
|
||||
}
|
||||
|
||||
void ImageAssembler::get_free_slot()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void ImageAssembler::get_full_slot()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void ImageAssembler::free_slot(const int slot_id)
|
||||
{
|
||||
|
||||
|
||||
@@ -13,18 +13,19 @@ class ImageAssembler {
|
||||
|
||||
public:
|
||||
ImageAssembler(const size_t n_modules);
|
||||
ImageMetadataBlock* get_metadata_buffer(const int slot_id);
|
||||
|
||||
virtual ~ImageAssembler();
|
||||
|
||||
int get_free_slot();
|
||||
void process(const int slot_id,
|
||||
const int i_module,
|
||||
const BufferBinaryBlock* block_buffer);
|
||||
int get_free_slot();
|
||||
|
||||
int get_full_slot();
|
||||
void free_slot(const int slot_id);
|
||||
|
||||
|
||||
const char* get_data_buffer(const int slot_id);
|
||||
ImageMetadataBlock* get_metadata_buffer(const int slot_id);
|
||||
char* get_data_buffer(const int slot_id);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user