diff options
-rw-r--r-- | correlations.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
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<char*>(x.data()), N * sizeof(float)); - std::cout << t << "\t" << x0.dot(x) / N << std::endl; + outfile << t << "\t" << x0.dot(x) / N << std::endl; } |