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

@ -86,39 +86,39 @@ int main(int argc, char *argv[])
argList::addBoolOption
(
"noTopology",
"skip checking the mesh topology"
"Skip checking the mesh topology"
);
argList::addBoolOption
(
"allGeometry",
"include bounding box checks"
"Include bounding box checks"
);
argList::addBoolOption
(
"allTopology",
"include extra topology checks"
"Include extra topology checks"
);
argList::addBoolOption
(
"writeAllFields",
"write volFields with mesh quality parameters"
"Write volFields with mesh quality parameters"
);
argList::addOption
(
"writeFields",
"wordList",
"write volFields with selected mesh quality parameters"
"Write volFields with selected mesh quality parameters"
);
argList::addBoolOption
(
"meshQuality",
"read user-defined mesh quality criterions from system/meshQualityDict"
"Read user-defined mesh quality criterions from system/meshQualityDict"
);
argList::addOption
(
"writeSets",
"surfaceFormat",
"reconstruct and write all faceSets and cellSets in selected format"
"Reconstruct and write all faceSets and cellSets in selected format"
);
#include "setRootCase.H"