HDF5 file writer - per file analysis
This commit is contained in:
@@ -101,14 +101,14 @@ void HDF5DataFile::Write(const DataMessage &msg, uint64_t image_number) {
|
||||
timestamp[image_number] = msg.timestamp;
|
||||
}
|
||||
|
||||
size_t HDF5DataFile::GetMaxImageNumber() const {
|
||||
return max_image_number;
|
||||
HDF5DataFileStatistics HDF5DataFile::GetStatistics() const {
|
||||
HDF5DataFileStatistics ret;
|
||||
ret.max_image_number = max_image_number;
|
||||
ret.total_images = nimages;
|
||||
ret.filename = filename;
|
||||
return ret;
|
||||
}
|
||||
|
||||
size_t HDF5DataFile::GetNumImages() const {
|
||||
return nimages;
|
||||
}
|
||||
|
||||
std::string HDF5DataFile::GetFilename() const {
|
||||
return filename;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user