summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2019-09-04 15:45:57 -0400
committerJaron Kent-Dobias <jaron@kent-dobias.com>2019-09-04 15:45:57 -0400
commit657f7bae3d837a03ce999ea0f5d83f5d18d81b57 (patch)
treee5e51d0000b7e7718b7277b0f5b780bbc12d412a
parente990445264d1417c228af33be238a245b08396cb (diff)
downloadcode-657f7bae3d837a03ce999ea0f5d83f5d18d81b57.tar.gz
code-657f7bae3d837a03ce999ea0f5d83f5d18d81b57.tar.bz2
code-657f7bae3d837a03ce999ea0f5d83f5d18d81b57.zip
finally got the right n for the output...HEADmaster
-rw-r--r--src/new_model.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/new_model.cpp b/src/new_model.cpp
index a922a8f..8d0f4f1 100644
--- a/src/new_model.cpp
+++ b/src/new_model.cpp
@@ -499,7 +499,7 @@ int main (int argc, char *argv[]) {
if (!already_exists) {
outfile << "N L T J K1 K2 \\[Alpha] M \\[Delta]M \\[Rho] \\[Delta]\\[Rho]\n";
}
- outfile << nn << " " << 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 << mi.A2.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();
}