Increased number of digits in output.

This commit is contained in:
Atgeirr Flø Rasmussen 2012-10-29 08:27:59 +01:00
parent 29b2bcad45
commit 43162d7d99

View File

@ -168,6 +168,7 @@ main(int argc, char** argv)
if (output) {
std::string tof_filename = output_dir + "/tof.txt";
std::ofstream tof_stream(tof_filename.c_str());
tof_stream.precision(16);
std::copy(tof.begin(), tof.end(), std::ostream_iterator<double>(tof_stream, "\n"));
}
}