From 421c591dd07abb77b72e15bc70d10177b2f9242a Mon Sep 17 00:00:00 2001 From: "J.-S. Caux" Date: Fri, 6 Dec 2019 16:38:57 +0100 Subject: [PATCH] Reorder args for consistency --- src/EXECS/Heis_Fourier_to_Sqt.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EXECS/Heis_Fourier_to_Sqt.cc b/src/EXECS/Heis_Fourier_to_Sqt.cc index 05ef5ea..bf09ece 100644 --- a/src/EXECS/Heis_Fourier_to_Sqt.cc +++ b/src/EXECS/Heis_Fourier_to_Sqt.cc @@ -22,7 +22,7 @@ int main(int argc, char* argv[]) if (argc != 10) { // Print out instructions cout << "Usage of Heis_Fourier_to_Sqt executable: " << endl << endl; cout << "Provide arguments using one of the following options:" << endl << endl; - cout << "whichDSF Delta N M iKmin iKmax devmax Npts_t tmax" << endl << endl; + cout << "whichDSF Delta N M iKmin iKmax devmax tmax Npts_t" << endl << endl; } else { @@ -34,8 +34,8 @@ int main(int argc, char* argv[]) int iKmin = atoi(argv[index++]); int iKmax = atoi(argv[index++]); DP devmax = atof(argv[index++]); - int Npts_t = atoi(argv[index++]); DP tmax = atof(argv[index++]); + int Npts_t = atoi(argv[index++]); stringstream filenameprefix; Data_File_Name (filenameprefix, whichDSF, Delta, N, M, iKmin, iKmax, 0.0, 0, "");