Skip to content

Commit

Permalink
metadata table xport: increase precision to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHal committed Jul 8, 2022
1 parent e43268a commit e193664
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hekatoolslib/DatFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include "DatFile.h"
#include "machineinfo.h"
#include "PMparameters.h"
#include <iomanip>

void DatFile::InitFromStream(std::istream& infile)
{
Expand Down Expand Up @@ -119,6 +120,7 @@ void DatFile::formatStimMetadataAsTableExport(std::ostream& os, int max_level)
if (max_level > hkTreeNode::LevelTrace) {
throw std::runtime_error("max_level exceeds LevelTrace(=4)");
}
os << std::setprecision(10);
auto& rootnode = GetPulTree().GetRootNode();
metadataCreateTableHeader(os);
for (const auto& grp : rootnode.Children) {
Expand Down

0 comments on commit e193664

Please sign in to comment.