Browse Source

Reorder args for consistency

master
J.-S. Caux 4 years ago
parent
commit
421c591dd0
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/EXECS/Heis_Fourier_to_Sqt.cc

+ 2
- 2
src/EXECS/Heis_Fourier_to_Sqt.cc View File

@@ -22,7 +22,7 @@ int main(int argc, char* argv[])
22 22
   if (argc != 10) { // Print out instructions
23 23
     cout << "Usage of Heis_Fourier_to_Sqt executable: " << endl << endl;
24 24
     cout << "Provide arguments using one of the following options:" << endl << endl;
25
-    cout << "whichDSF Delta N M iKmin iKmax devmax Npts_t tmax" << endl << endl;
25
+    cout << "whichDSF Delta N M iKmin iKmax devmax tmax Npts_t" << endl << endl;
26 26
   }
27 27
 
28 28
   else {
@@ -34,8 +34,8 @@ int main(int argc, char* argv[])
34 34
     int iKmin = atoi(argv[index++]);
35 35
     int iKmax = atoi(argv[index++]);
36 36
     DP devmax = atof(argv[index++]);
37
-    int Npts_t = atoi(argv[index++]);
38 37
     DP tmax = atof(argv[index++]);
38
+    int Npts_t = atoi(argv[index++]);
39 39
 
40 40
     stringstream filenameprefix;
41 41
     Data_File_Name (filenameprefix, whichDSF, Delta, N, M, iKmin, iKmax, 0.0, 0, "");

Loading…
Cancel
Save