From 8bb0a289a7bf8390b482dfd6099bcf5659090e2c Mon Sep 17 00:00:00 2001 From: Jaron Kent-Dobias Date: Tue, 29 Jan 2019 15:19:57 -0500 Subject: forgot to record T --- src/new_model.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/new_model.cpp b/src/new_model.cpp index 326d530..31e7b5a 100644 --- a/src/new_model.cpp +++ b/src/new_model.cpp @@ -356,9 +356,9 @@ int main (int argc, char *argv[]) { std::ofstream outfile; outfile.open("out.dat", std::ios::app); if (!already_exists) { - outfile << "N L J K1 K2 \\[Alpha] M \\[Rho] \\[Sigma]\n"; + outfile << "N L T J K1 K2 \\[Alpha] M \\[Rho] \\[Sigma]\n"; } - outfile << N << " " << L << " " << J << " " << K1 << " " << K2 << " " << α << " " << mi.totalA2 / N / pow(si.nv, 2) << " " << (total_cos - total_sin2 / T) / N / sxy.ne << " " <<(total_cos + total_sin2 / T) / N / sxy.ne << "\n"; + outfile << N << " " << L << " " << T << " " << J << " " << K1 << " " << K2 << " " << α << " " << mi.totalA2 / N / pow(si.nv, 2) << " " << (total_cos - total_sin2) / N / sxy.ne << " " <<(total_cos + total_sin2) / N / sxy.ne << "\n"; outfile.close(); } -- cgit v1.2.3-54-g00ecf