Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into kbiery/integer_fil…
Browse files Browse the repository at this point in the history
…e_creation_and_closing_timestamps
  • Loading branch information
Kurt Biery committed Nov 26, 2024
2 parents ef54e36 + f33c748 commit 036adeb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
5 changes: 0 additions & 5 deletions include/hdf5libs/HDF5RawDataFile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -506,11 +506,6 @@ HDF5RawDataFile::write_attribute(HighFive::DataSet& dset, const std::string& nam
ers::warning(HDF5AttributeExists(ERS_HERE, name));
}

std::vector<std::string> HDF5RawDataFile::get_attribute_names()
{
return m_file_ptr->listAttributeNames();
}

template<typename T>
T
HDF5RawDataFile::get_attribute(const std::string& name)
Expand Down
9 changes: 9 additions & 0 deletions src/HDF5RawDataFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,15 @@ HDF5RawDataFile::~HDF5RawDataFile()
m_file_layout_ptr.reset();
}

/**
* @brief Fetch the list of all file-level Attribute names.
*/
std::vector<std::string>
HDF5RawDataFile::HDF5RawDataFile::get_attribute_names()
{
return m_file_ptr->listAttributeNames();
}

/**
* @brief Write a TriggerRecord to the file.
*/
Expand Down

0 comments on commit 036adeb

Please sign in to comment.