diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-01-29 15:19:57 -0500 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-01-29 15:19:57 -0500 |
commit | 8bb0a289a7bf8390b482dfd6099bcf5659090e2c (patch) | |
tree | 6fa68f7c1409274f95c2bd3f64575c50c4a16564 /src | |
parent | a46a187b188cdafc6dc22916dd4c8b10fc356af1 (diff) | |
download | code-8bb0a289a7bf8390b482dfd6099bcf5659090e2c.tar.gz code-8bb0a289a7bf8390b482dfd6099bcf5659090e2c.tar.bz2 code-8bb0a289a7bf8390b482dfd6099bcf5659090e2c.zip |
forgot to record T
Diffstat (limited to 'src')
-rw-r--r-- | src/new_model.cpp | 4 |
1 files 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(); } |