diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-09-04 15:38:07 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2019-09-04 15:38:07 -0400 |
commit | 1ae73c04dca1b7dd445ebba59f0423ab71563d55 (patch) | |
tree | f0e0be02a888ec9005012bbe39e974b25ccf3808 | |
parent | a8294276104a33604fc17f796e6b0c66221f2993 (diff) | |
download | code-1ae73c04dca1b7dd445ebba59f0423ab71563d55.tar.gz code-1ae73c04dca1b7dd445ebba59f0423ab71563d55.tar.bz2 code-1ae73c04dca1b7dd445ebba59f0423ab71563d55.zip |
fixed column headers in output file
-rw-r--r-- | src/new_model.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/new_model.cpp b/src/new_model.cpp index 4af1422..a1dce92 100644 --- a/src/new_model.cpp +++ b/src/new_model.cpp @@ -494,7 +494,7 @@ int main (int argc, char *argv[]) { std::ofstream outfile; outfile.open("out.dat", std::ios::app); if (!already_exists) { - outfile << "N L T J K1 K2 \\[Alpha] M \\[Rho] \\[Sigma]\n"; + outfile << "N L T J K1 K2 \\[Alpha] M \\[Delta]M \\[Rho] \\[Delta]\\[Rho]\n"; } outfile << N << " " << L << " " << T << " " << J << " " << K1 << " " << K2 << " " << α << " " << mi.A2.avg() / pow(si.nv, 2) << " " << mi.A2.serr() / pow(si.nv, 2) << " " << stiffness.avg() / sxy.ne << " " << stiffness.serr() / sxy.ne << "\n"; outfile.close(); |