timeSelector: Rename option zeroTime -> withZero for consistency with the noZero option

This commit is contained in:
Henry
2015-04-25 15:12:08 +01:00
parent dcdc7a2265
commit 82c0cc5312
5 changed files with 21 additions and 21 deletions

View File

@ -72,8 +72,8 @@ int main(int argc, char *argv[])
"Reconstruct fields of a parallel case"
);
// enable -constant ... if someone really wants it
// enable -zeroTime to prevent accidentally trashing the initial fields
// Enable -constant ... if someone really wants it
// Enable -withZero to prevent accidentally trashing the initial fields
timeSelector::addOptions(true, true);
argList::noParallel();
#include "addRegionOption.H"
@ -190,7 +190,7 @@ int main(int argc, char *argv[])
);
}
// use the times list from the master processor
// Use the times list from the master processor
// and select a subset based on the command-line options
instantList timeDirs = timeSelector::select
(
@ -308,7 +308,7 @@ int main(int argc, char *argv[])
processorMeshes procMeshes(databases, regionName);
// check face addressing for meshes that have been decomposed
// Check face addressing for meshes that have been decomposed
// with a very old foam version
#include "checkFaceAddressingComp.H"
@ -882,7 +882,7 @@ int main(int argc, char *argv[])
}
}
Info<< "\nEnd\n" << endl;
Info<< "End.\n" << endl;
return 0;
}