From 27634a044e06d3c512a7956340b44550e903c9fc Mon Sep 17 00:00:00 2001 From: mattijs Date: Mon, 1 Mar 2010 14:50:41 +0000 Subject: [PATCH] STYLE: Add help to command-line arguments --- .../conversion/polyDualMesh/polyDualMeshApp.C | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/applications/utilities/mesh/conversion/polyDualMesh/polyDualMeshApp.C b/applications/utilities/mesh/conversion/polyDualMesh/polyDualMeshApp.C index 0ccb7a6862..03832883cc 100644 --- a/applications/utilities/mesh/conversion/polyDualMesh/polyDualMeshApp.C +++ b/applications/utilities/mesh/conversion/polyDualMesh/polyDualMeshApp.C @@ -358,9 +358,22 @@ int main(int argc, char *argv[]) timeSelector::addOptions(true, false); argList::validArgs.append("feature angle[0-180]"); - argList::addBoolOption("splitAllFaces"); - argList::addBoolOption("concaveMultiCells"); - argList::addBoolOption("doNotPreserveFaceZones"); + argList::addBoolOption + ( + "splitAllFaces", + "have multiple faces inbetween cells" + ); + argList::addBoolOption + ( + "concaveMultiCells", + "split cells on concave boundary edges into multiple cells" + ); + argList::addBoolOption + ( + "doNotPreserveFaceZones", + "disable the default behaviour of preserving faceZones by having" + " multiple faces inbetween cells" + ); # include "setRootCase.H" # include "createTime.H"