Skip to content
Snippets Groups Projects
Commit 0bdd1dc4 authored by franjo_j@hotmail.com's avatar franjo_j@hotmail.com
Browse files

Renamed the group marking operator for checking of cell connections

git-svn-id: https://pl5.projectlocker.com/igui/meshGeneration/svn@32 fdcce57e-7e00-11e2-b579-49867b4cea03
parent a6019d2b
No related branches found
No related tags found
No related merge requests found
......@@ -48,13 +48,13 @@ namespace Foam
// * * * * * * * * * * Private member functions * * * * * * * * * * * * * * * //
class meshNeighbourOperator
class meshConnectionsNeighbourOperator
{
const polyMeshGen& mesh_;
public:
meshNeighbourOperator(const polyMeshGen& mesh)
meshConnectionsNeighbourOperator(const polyMeshGen& mesh)
:
mesh_(mesh)
{}
......@@ -161,12 +161,12 @@ public:
}
};
class meshSelectorOperator
class meshConnectionsSelectorOperator
{
public:
meshSelectorOperator()
meshConnectionsSelectorOperator()
{}
bool operator()(const label cellI) const
......@@ -183,8 +183,8 @@ void checkCellConnectionsOverFaces::findCellGroups()
help::groupMarking
(
cellGroup_,
meshNeighbourOperator(mesh_),
meshSelectorOperator()
meshConnectionsNeighbourOperator(mesh_),
meshConnectionsSelectorOperator()
);
Info << "Finished checking cell connections" << endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment