summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/new_model.cpp4
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();
}