diff --git a/src/OpenFOAM/include/OSspecific.H b/src/OpenFOAM/include/OSspecific.H index c690a7ef12..ed28623410 100644 --- a/src/OpenFOAM/include/OSspecific.H +++ b/src/OpenFOAM/include/OSspecific.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -90,7 +90,8 @@ fileName cwd(); // else return false bool chDir(const fileName& dir); -//- Search for @em name in the following hierarchy: +//- Search for @em name +// in the following hierarchy: // -# personal settings: // - ~/.OpenFOAM/\/ // for version-specific files diff --git a/src/OpenFOAM/meshes/meshShapes/edge/edge.H b/src/OpenFOAM/meshes/meshShapes/edge/edge.H index c04a33774c..24f19e4a9d 100644 --- a/src/OpenFOAM/meshes/meshShapes/edge/edge.H +++ b/src/OpenFOAM/meshes/meshShapes/edge/edge.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -122,6 +122,7 @@ public: inline linePointRef line(const pointField&) const; //- compare edges + // Returns: // - 0: different // - +1: identical // - -1: same edge, but different orientation diff --git a/src/OpenFOAM/meshes/meshShapes/face/face.H b/src/OpenFOAM/meshes/meshShapes/face/face.H index 90e0b1e4d5..34a66b8524 100644 --- a/src/OpenFOAM/meshes/meshShapes/face/face.H +++ b/src/OpenFOAM/meshes/meshShapes/face/face.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -307,6 +307,7 @@ public: inline edge faceEdge(const label n) const; //- Return the edge direction on the face + // Returns: // - 0: edge not found on the face // - +1: forward (counter-clockwise) on the face // - -1: reverse (clockwise) on the face diff --git a/src/OpenFOAM/meshes/meshShapes/triFace/triFace.H b/src/OpenFOAM/meshes/meshShapes/triFace/triFace.H index 34e2dcc40f..03e992575f 100644 --- a/src/OpenFOAM/meshes/meshShapes/triFace/triFace.H +++ b/src/OpenFOAM/meshes/meshShapes/triFace/triFace.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -201,12 +201,14 @@ public: inline edge faceEdge(const label n) const; //- Return the edge direction on the face + // Returns: // - +1: forward (counter-clockwise) on the face // - -1: reverse (clockwise) on the face // - 0: edge not found on the face inline int edgeDirection(const edge&) const; //- compare triFaces + // Returns: // - 0: different // - +1: identical // - -1: same face, but different orientation diff --git a/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.H b/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.H index 94d0cf5715..1885baf762 100644 --- a/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.H +++ b/src/OpenFOAM/meshes/polyMesh/globalMeshData/globalMeshData.H @@ -509,7 +509,8 @@ public: // Other - //- Helper for merging mesh point data. Determines + //- Helper for merging mesh point data. + // Determines: // - my unique indices // - global numbering over all unique indices // - the global number for all local points (so this will @@ -520,7 +521,8 @@ public: labelList& uniquePoints ) const; - //- Helper for merging patch point data. Takes maps from + //- Helper for merging patch point data. + // Takes maps from: // local points to/from mesh. Determines // - my unique points. These are mesh points, not patch points // since the master might not be on the patch. diff --git a/src/OpenFOAM/meshes/primitiveMesh/PrimitivePatch/PrimitivePatch.H b/src/OpenFOAM/meshes/primitiveMesh/PrimitivePatch/PrimitivePatch.H index 7d138178d3..fa03770085 100644 --- a/src/OpenFOAM/meshes/primitiveMesh/PrimitivePatch/PrimitivePatch.H +++ b/src/OpenFOAM/meshes/primitiveMesh/PrimitivePatch/PrimitivePatch.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -415,6 +415,7 @@ public: // Check //- Calculate surface type formed by patch. + // Types: // - all edges have two neighbours (manifold) // - some edges have more than two neighbours (illegal) // - other (open) diff --git a/src/OpenFOAM/primitives/Pair/Pair.H b/src/OpenFOAM/primitives/Pair/Pair.H index ba889470b3..71b11c0f7a 100644 --- a/src/OpenFOAM/primitives/Pair/Pair.H +++ b/src/OpenFOAM/primitives/Pair/Pair.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -134,7 +134,8 @@ public: } - //- compare Pairs + //- Compare Pairs + // Returning: // - 0: different // - +1: identical // - -1: same pair, but reversed order diff --git a/src/OpenFOAM/primitives/globalIndexAndTransform/globalIndexAndTransform.H b/src/OpenFOAM/primitives/globalIndexAndTransform/globalIndexAndTransform.H index 5b7d2fc238..d9919309fe 100644 --- a/src/OpenFOAM/primitives/globalIndexAndTransform/globalIndexAndTransform.H +++ b/src/OpenFOAM/primitives/globalIndexAndTransform/globalIndexAndTransform.H @@ -65,9 +65,10 @@ public: // Public classes //- Less function class used in sorting encoded transforms and indices - // - minimum processor - // - minimum local index - // - minimum transform + // Minimum of: + // - processor + // - local index + // - transform class less { public: diff --git a/src/dynamicMesh/polyMeshAdder/polyMeshAdder.H b/src/dynamicMesh/polyMeshAdder/polyMeshAdder.H index 56f6ff2c52..eb5d52c153 100644 --- a/src/dynamicMesh/polyMeshAdder/polyMeshAdder.H +++ b/src/dynamicMesh/polyMeshAdder/polyMeshAdder.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -281,7 +281,8 @@ public: // Point merging - //- Find topologically&geometrically shared points. + //- Find topologically and geometrically shared points. + // // - should only be called for parallel correct mesh // (since uses mesh.globalData) // - returns Map from point to master point (all in mesh point @@ -293,6 +294,7 @@ public: ); //- Helper: Merge points. + // // - Gets map from point to destination point // - Removes all points that don't map to themselves // - Modifies all faces that use the points to be removed. diff --git a/src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8.H b/src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8.H index 6e91e89c0a..240e8ace42 100644 --- a/src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8.H +++ b/src/dynamicMesh/polyTopoChange/polyTopoChange/hexRef8.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -382,6 +382,7 @@ public: ) const; //- Like consistentRefinement but slower: + // // - specify number of cells between consecutive refinement levels // (consistentRefinement equivalent to 1) // - specify max level difference between point-connected cells. diff --git a/src/dynamicMesh/polyTopoChange/polyTopoChange/removeCells.C b/src/dynamicMesh/polyTopoChange/polyTopoChange/removeCells.C index 4b76acb0c7..e4f0c3377d 100644 --- a/src/dynamicMesh/polyTopoChange/polyTopoChange/removeCells.C +++ b/src/dynamicMesh/polyTopoChange/polyTopoChange/removeCells.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -36,14 +36,11 @@ License namespace Foam { - -defineTypeNameAndDebug(removeCells, 0); - + defineTypeNameAndDebug(removeCells, 0); } // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // -// Remove count of elements of f. void Foam::removeCells::uncount ( const labelList& f, @@ -59,7 +56,6 @@ void Foam::removeCells::uncount // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // -// Construct from mesh Foam::removeCells::removeCells ( const polyMesh& mesh, @@ -73,10 +69,6 @@ Foam::removeCells::removeCells // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // -//- Get labels of exposed faces. These are -// - internal faces that become boundary faces -// - coupled faces that become uncoupled (since on of the sides -// gets deleted) Foam::labelList Foam::removeCells::getExposedFaces ( const labelList& cellLabels diff --git a/src/dynamicMesh/polyTopoChange/polyTopoChange/removeCells.H b/src/dynamicMesh/polyTopoChange/polyTopoChange/removeCells.H index a276c966f8..d2b46868ca 100644 --- a/src/dynamicMesh/polyTopoChange/polyTopoChange/removeCells.H +++ b/src/dynamicMesh/polyTopoChange/polyTopoChange/removeCells.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -94,7 +94,8 @@ public: // Topology changes - //- Get labels of exposed faces. These are + //- Get labels of exposed faces. + // These are // - internal faces that become boundary faces // - coupled faces that become uncoupled (since one of the sides // gets deleted) @@ -114,7 +115,6 @@ public: //- Force recalculation of locally stored data on topological change void updateMesh(const mapPolyMesh&) {} - }; diff --git a/src/dynamicMesh/polyTopoChange/polyTopoChange/removeFaces.H b/src/dynamicMesh/polyTopoChange/polyTopoChange/removeFaces.H index 4852d008ee..ed389cca3f 100644 --- a/src/dynamicMesh/polyTopoChange/polyTopoChange/removeFaces.H +++ b/src/dynamicMesh/polyTopoChange/polyTopoChange/removeFaces.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -178,7 +178,8 @@ public: // Member Functions - //- Given set of faces to pierce calculates: + //- Find faces including those with cells which have the same mastercell + // Given set of faces to pierce calculates: // - region for connected cells // - mastercell for each region. This is the lowest numbered cell // of all cells that get merged. diff --git a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeInjection/ConeInjection.H b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeInjection/ConeInjection.H index 278b2a1bdd..1400108700 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeInjection/ConeInjection.H +++ b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeInjection/ConeInjection.H @@ -26,7 +26,6 @@ Class Description Cone injection - - User specifies - time of start of injection - injector position diff --git a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeInjectionMP/ConeInjectionMP.H b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeInjectionMP/ConeInjectionMP.H index 806799bb7e..2707e9cbc6 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeInjectionMP/ConeInjectionMP.H +++ b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ConeInjectionMP/ConeInjectionMP.H @@ -26,7 +26,6 @@ Class Description Cone injection multi-point - - User specifies - time of start of injection - injector positions diff --git a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ManualInjection/ManualInjection.H b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ManualInjection/ManualInjection.H index 972995a458..5421098cd8 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ManualInjection/ManualInjection.H +++ b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/ManualInjection/ManualInjection.H @@ -26,7 +26,6 @@ Class Description Manual injection - - User specifies - Total mass to inject - Parcel positions in file @c positionsFile diff --git a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/PatchInjection/PatchInjection.H b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/PatchInjection/PatchInjection.H index 4ee540c7bf..2c1092bc21 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/PatchInjection/PatchInjection.H +++ b/src/lagrangian/intermediate/submodels/Kinematic/InjectionModel/PatchInjection/PatchInjection.H @@ -26,7 +26,6 @@ Class Description Patch injection - - User specifies - Total mass to inject - Name of patch diff --git a/src/mesh/blockMesh/curvedEdges/curvedEdge.H b/src/mesh/blockMesh/curvedEdges/curvedEdge.H index 3a9e3bdfde..ecd08433f6 100644 --- a/src/mesh/blockMesh/curvedEdges/curvedEdge.H +++ b/src/mesh/blockMesh/curvedEdges/curvedEdge.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -130,18 +130,21 @@ public: inline label end() const; //- Compare the given start and end points with this curve + // Return: // - 0: different // - +1: identical // - -1: same edge, but different orientation inline int compare(const curvedEdge&) const; //- Compare the given start and end points with this curve + // Return: // - 0: different // - +1: identical // - -1: same edge, but different orientation inline int compare(const edge&) const; //- Compare the given start and end points with this curve + // Return: // - 0: different // - +1: identical // - -1: same edge, but different orientation @@ -159,6 +162,7 @@ public: void operator=(const curvedEdge&); + // Ostream operator friend Ostream& operator<<(Ostream&, const curvedEdge&); diff --git a/src/meshTools/directMapped/directMappedPolyPatch/directMappedPatchBase.H b/src/meshTools/directMapped/directMappedPolyPatch/directMappedPatchBase.H index 8222454aa5..285f5c1f86 100644 --- a/src/meshTools/directMapped/directMappedPolyPatch/directMappedPatchBase.H +++ b/src/meshTools/directMapped/directMappedPolyPatch/directMappedPatchBase.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -107,6 +107,7 @@ public: //- Helper class for finding nearest + // Nearest: // - point+local index // - sqr(distance) // - processor diff --git a/src/meshTools/indexedOctree/indexedOctree.H b/src/meshTools/indexedOctree/indexedOctree.H index 8061c67c26..eaed305371 100644 --- a/src/meshTools/indexedOctree/indexedOctree.H +++ b/src/meshTools/indexedOctree/indexedOctree.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -511,7 +511,8 @@ public: // Queries - //- Calculate nearest point on nearest shape. Returns + //- Calculate nearest point on nearest shape. + // Returns // - bool : any point found nearer than nearestDistSqr // - label: index in shapes // - point: actual nearest point found @@ -532,7 +533,8 @@ public: point& nearestPoint ) const; - //- Find nearest to line. Returns + //- Find nearest to line. + // Returns // - bool : any point found? // - label: index in shapes // - point: actual nearest point found @@ -621,10 +623,10 @@ public: bool write(Ostream& os) const; + // IOstream Operators friend Ostream& operator<< (Ostream&, const indexedOctree&); - }; diff --git a/src/meshTools/meshSearch/meshSearch.H b/src/meshTools/meshSearch/meshSearch.H index ab146ba5ad..60bd550e8f 100644 --- a/src/meshTools/meshSearch/meshSearch.H +++ b/src/meshTools/meshSearch/meshSearch.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -195,10 +195,11 @@ public: bool pointInCell(const point& p, const label celli) const; //- Find nearest cell in terms of cell centre. - // - use octree - // - use linear search - // - if seed is provided walk. (uses findNearestCellWalk; - // does not handle holes in domain) + // Options: + // - use octree + // - use linear search + // - if seed is provided walk. (uses findNearestCellWalk; + // does not handle holes in domain) label findNearestCell ( const point& location, diff --git a/src/meshTools/searchableSurface/searchableBox.H b/src/meshTools/searchableSurface/searchableBox.H index 9bc5135f63..cfd47d060c 100644 --- a/src/meshTools/searchableSurface/searchableBox.H +++ b/src/meshTools/searchableSurface/searchableBox.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -131,7 +131,8 @@ public: // Single point queries. - //- Calculate nearest point on surface. Returns + //- Calculate nearest point on surface. + // Returns // - bool : any point found nearer than nearestDistSqr // - label: relevant index in surface (=face 0..5) // - point: actual nearest point found @@ -141,7 +142,8 @@ public: const scalar nearestDistSqr ) const; - //- Calculate nearest point on edge. Returns + //- Calculate nearest point on edge. + // Returns // - bool : any point found nearer than nearestDistSqr // - label: relevant index in surface(=?) // - point: actual nearest point found @@ -151,7 +153,8 @@ public: const scalar nearestDistSqr ) const; - //- Find nearest to segment. Returns + //- Find nearest to segment. + // Returns // - bool : any point found? // - label: relevant index in shapes (=face 0..5) // - point: actual nearest point found @@ -241,7 +244,6 @@ public: notImplemented("searchableBox::writeData(Ostream&) const"); return false; } - }; diff --git a/src/meshTools/triSurface/surfaceLocation/surfaceLocation.H b/src/meshTools/triSurface/surfaceLocation/surfaceLocation.H index 9a6d8d65c0..c621ed164a 100644 --- a/src/meshTools/triSurface/surfaceLocation/surfaceLocation.H +++ b/src/meshTools/triSurface/surfaceLocation/surfaceLocation.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -26,7 +26,6 @@ Class Description Contains information about location on a triSurface: - - pointIndexHit: - location - bool: hit/miss diff --git a/src/meshTools/triSurface/triSurfaceTools/triSurfaceTools.H b/src/meshTools/triSurface/triSurfaceTools/triSurfaceTools.H index 0feb0900c6..28dd7a4c43 100644 --- a/src/meshTools/triSurface/triSurfaceTools/triSurfaceTools.H +++ b/src/meshTools/triSurface/triSurfaceTools/triSurfaceTools.H @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. + \\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd. \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -518,8 +518,7 @@ public: // Tracking - //- Test point on plane of triangle to see if on edge or point - // or inside. + //- Test point on plane of triangle to see if on edge or point or inside static surfaceLocation classify ( const triSurface&, @@ -527,7 +526,8 @@ public: const point& trianglePoint ); - //- Track on surface to get closer to point. Possible situations: + //- Track on surface to get closer to point. + // Possible situations: // - 1. reached endpoint // - 2. reached edge (normal situation) // - 3. reached end of surface (edge on single face) diff --git a/src/sampling/sampledSurface/sampledTriSurfaceMesh/sampledTriSurfaceMesh.C b/src/sampling/sampledSurface/sampledTriSurfaceMesh/sampledTriSurfaceMesh.C index 3e3d56c6ed..d14b0872ae 100644 --- a/src/sampling/sampledSurface/sampledTriSurfaceMesh/sampledTriSurfaceMesh.C +++ b/src/sampling/sampledSurface/sampledTriSurfaceMesh/sampledTriSurfaceMesh.C @@ -56,6 +56,7 @@ namespace Foam //- Private class for finding nearest + // Comprising: // - global index // - sqr(distance) typedef Tuple2 nearInfo;