ENH: tag some options as 'advanced' (only shown with -help-full)

General:
    * -roots, -hostRoots, -fileHandler

Specific:
    * -to <coordinateSystem> -from <coordinateSystem>

- Display -help-compat when compatibility or ignored options are available

STYLE: capitalization of options text
This commit is contained in:
Mark Olesen
2018-07-31 11:54:15 +02:00
parent d40103a86f
commit cb919a6c41
98 changed files with 403 additions and 385 deletions

View File

@ -217,7 +217,7 @@ int main(int argc, char *argv[])
{
argList::addNote
(
"map volume fields from one mesh to another"
"Map volume fields from one mesh to another"
);
argList::noParallel();
argList::addArgument("sourceCase");
@ -226,57 +226,57 @@ int main(int argc, char *argv[])
(
"sourceTime",
"scalar|'latestTime'",
"specify the source time"
"Specify the source time"
);
argList::addOption
(
"sourceRegion",
"word",
"specify the source region"
"Specify the source region"
);
argList::addOption
(
"targetRegion",
"word",
"specify the target region"
"Specify the target region"
);
argList::addBoolOption
(
"parallelSource",
"the source is decomposed"
"The source is decomposed"
);
argList::addBoolOption
(
"parallelTarget",
"the target is decomposed"
"The target is decomposed"
);
argList::addBoolOption
(
"consistent",
"source and target geometry and boundary conditions identical"
"Source and target geometry and boundary conditions identical"
);
argList::addOption
(
"mapMethod",
"word",
"specify the mapping method"
"Specify the mapping method"
);
argList::addBoolOption
(
"subtract",
"subtract mapped source from target"
"Subtract mapped source from target"
);
argList::addOption
(
"sourceDecomposeParDict",
"file",
"read decomposePar dictionary from specified location"
"Read decomposePar dictionary from specified location"
);
argList::addOption
(
"targetDecomposeParDict",
"file",
"read decomposePar dictionary from specified location"
"Read decomposePar dictionary from specified location"
);