Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
barakr committed Oct 30, 2023
1 parent b5f95f7 commit 235aa22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Statistics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -671,8 +671,8 @@ void Statistics::update
<< std::endl,
IMP::IOException);
std::string hdf5_file_name = output_file_name_
+ (sd->get_is_multiple_hdf5s() ? "."+std::to_string(update_number) : "")
+ ".hdf5");
+ (get_sd()->get_is_multiple_hdf5s() ? "."+std::to_string(update_number) : "")
+ ".hdf5";
RMF::HDF5::File hdf5_file= RMF::HDF5::create_file(hdf5_file_name);
RMF::HDF5::Group hdf5_floater_xyz_hist_group;
static const std::string FLOATER_XYZ_GROUP("floater_xyz_hist");
Expand Down

0 comments on commit 235aa22

Please sign in to comment.