Rename SFWriter to new standard naming

This commit is contained in:
2020-05-15 10:11:08 +02:00
parent ae9a4e6857
commit 1b41dd623f
6 changed files with 14 additions and 14 deletions
@@ -15,7 +15,7 @@ struct DetectorFrame
bool is_good_frame[core_buffer::WRITER_N_FRAMES_BUFFER];
};
class SFWriter {
class WriterH5Writer {
const size_t n_frames_;
const size_t n_modules_;
@@ -30,11 +30,11 @@ class SFWriter {
H5::DataSet n_received_packets_dataset_;
public:
SFWriter(
WriterH5Writer(
const std::string& output_file,
const size_t n_frames,
const size_t n_modules);
~SFWriter();
~WriterH5Writer();
void write(const DetectorFrame* metadata, const char* data);
void close_file();
};