mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-22 04:34:35 +02:00
Improve interface of ImageAssembler
This commit is contained in:
@@ -4,16 +4,19 @@
|
||||
|
||||
class ImageAssembler {
|
||||
public:
|
||||
ImageAssembler();
|
||||
ImageMetadataBlock* get_metadata_buffer(const int slot_id);
|
||||
virtual ~ImageAssembler();
|
||||
|
||||
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(int slot_id);
|
||||
void free_slot(const int slot_id);
|
||||
|
||||
const ImageMetadataBlock* get_metadata_buffer(int slot_id);
|
||||
const char* get_data_buffer(int slot_id);
|
||||
|
||||
const char* get_data_buffer(const int slot_id);
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user