Reorder args for consistency
This commit is contained in:
parent
aec7c206da
commit
421c591dd0
|
@ -22,7 +22,7 @@ int main(int argc, char* argv[])
|
||||||
if (argc != 10) { // Print out instructions
|
if (argc != 10) { // Print out instructions
|
||||||
cout << "Usage of Heis_Fourier_to_Sqt executable: " << endl << endl;
|
cout << "Usage of Heis_Fourier_to_Sqt executable: " << endl << endl;
|
||||||
cout << "Provide arguments using one of the following options:" << 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 {
|
else {
|
||||||
|
@ -34,8 +34,8 @@ int main(int argc, char* argv[])
|
||||||
int iKmin = atoi(argv[index++]);
|
int iKmin = atoi(argv[index++]);
|
||||||
int iKmax = atoi(argv[index++]);
|
int iKmax = atoi(argv[index++]);
|
||||||
DP devmax = atof(argv[index++]);
|
DP devmax = atof(argv[index++]);
|
||||||
int Npts_t = atoi(argv[index++]);
|
|
||||||
DP tmax = atof(argv[index++]);
|
DP tmax = atof(argv[index++]);
|
||||||
|
int Npts_t = atoi(argv[index++]);
|
||||||
|
|
||||||
stringstream filenameprefix;
|
stringstream filenameprefix;
|
||||||
Data_File_Name (filenameprefix, whichDSF, Delta, N, M, iKmin, iKmax, 0.0, 0, "");
|
Data_File_Name (filenameprefix, whichDSF, Delta, N, M, iKmin, iKmax, 0.0, 0, "");
|
||||||
|
|
Loading…
Reference in New Issue