Reorder args for consistency

This commit is contained in:
J.-S. Caux 2019-12-06 16:38:57 +01:00
bovenliggende aec7c206da
commit 421c591dd0
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen

Bestand weergeven

@ -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, "");