From f3d34a2572426a4f149cc8b926d3b1102bb5a897 Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Sun, 23 Mar 2025 09:17:03 -0300 Subject: Write to file instead of std out --- correlations.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/correlations.cpp b/correlations.cpp index 0d48844..930698a 100644 --- a/correlations.cpp +++ b/correlations.cpp @@ -60,6 +60,8 @@ int main(int argc, char* argv[]) { file.seekg((i0 + 1) * sizeof(float) * N); + std::ofstream outfile("correlations/" + filebase + "_" + std::to_string(T0) + ".dat"); + for (Real t = 0; t <= T; t += Δw) { if (file.peek() == EOF) { break; @@ -68,7 +70,7 @@ int main(int argc, char* argv[]) { Vector x(N); file.read(reinterpret_cast(x.data()), N * sizeof(float)); - std::cout << t << "\t" << x0.dot(x) / N << std::endl; + outfile << t << "\t" << x0.dot(x) / N << std::endl; } -- cgit v1.2.3-70-g09d2