mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: Minor code formatting
This commit is contained in:
@ -42,7 +42,7 @@ namespace Foam
|
|||||||
{
|
{
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
/*---------------------------------------------------------------------------*\
|
||||||
Class CuthillMcKeeRenumber Declaration
|
Class CuthillMcKeeRenumber Declaration
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
class CuthillMcKeeRenumber
|
class CuthillMcKeeRenumber
|
||||||
@ -72,6 +72,7 @@ public:
|
|||||||
//- Construct given the renumber dictionary
|
//- Construct given the renumber dictionary
|
||||||
CuthillMcKeeRenumber(const dictionary& renumberDict);
|
CuthillMcKeeRenumber(const dictionary& renumberDict);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~CuthillMcKeeRenumber()
|
virtual ~CuthillMcKeeRenumber()
|
||||||
{}
|
{}
|
||||||
@ -103,7 +104,6 @@ public:
|
|||||||
const labelListList& cellCells,
|
const labelListList& cellCells,
|
||||||
const pointField& cc
|
const pointField& cc
|
||||||
);
|
);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -41,7 +41,7 @@ namespace Foam
|
|||||||
{
|
{
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
/*---------------------------------------------------------------------------*\
|
||||||
Class manualRenumber Declaration
|
Class manualRenumber Declaration
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
class manualRenumber
|
class manualRenumber
|
||||||
@ -71,6 +71,7 @@ public:
|
|||||||
//- Construct given the renumber dictionary
|
//- Construct given the renumber dictionary
|
||||||
manualRenumber(const dictionary& renumberDict);
|
manualRenumber(const dictionary& renumberDict);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~manualRenumber()
|
virtual ~manualRenumber()
|
||||||
{}
|
{}
|
||||||
@ -110,7 +111,6 @@ public:
|
|||||||
);
|
);
|
||||||
return labelList(0);
|
return labelList(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -41,7 +41,7 @@ namespace Foam
|
|||||||
{
|
{
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
/*---------------------------------------------------------------------------*\
|
||||||
Class randomRenumber Declaration
|
Class randomRenumber Declaration
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
class randomRenumber
|
class randomRenumber
|
||||||
@ -66,6 +66,7 @@ public:
|
|||||||
//- Construct given the renumber dictionary
|
//- Construct given the renumber dictionary
|
||||||
randomRenumber(const dictionary& renumberDict);
|
randomRenumber(const dictionary& renumberDict);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~randomRenumber()
|
virtual ~randomRenumber()
|
||||||
{}
|
{}
|
||||||
|
|||||||
@ -52,7 +52,7 @@ namespace Foam
|
|||||||
{
|
{
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
/*---------------------------------------------------------------------------*\
|
||||||
Class springRenumber Declaration
|
Class springRenumber Declaration
|
||||||
\*---------------------------------------------------------------------------*/
|
\*---------------------------------------------------------------------------*/
|
||||||
|
|
||||||
class springRenumber
|
class springRenumber
|
||||||
@ -87,6 +87,7 @@ public:
|
|||||||
//- Construct given the renumber dictionary
|
//- Construct given the renumber dictionary
|
||||||
springRenumber(const dictionary& renumberDict);
|
springRenumber(const dictionary& renumberDict);
|
||||||
|
|
||||||
|
|
||||||
//- Destructor
|
//- Destructor
|
||||||
virtual ~springRenumber()
|
virtual ~springRenumber()
|
||||||
{}
|
{}
|
||||||
@ -117,7 +118,6 @@ public:
|
|||||||
const labelListList& cellCells,
|
const labelListList& cellCells,
|
||||||
const pointField& cc
|
const pointField& cc
|
||||||
);
|
);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -63,14 +63,16 @@ class cuttingPlane
|
|||||||
public plane,
|
public plane,
|
||||||
public MeshedSurface<face>
|
public MeshedSurface<face>
|
||||||
{
|
{
|
||||||
//- Private typedefs for convenience
|
//- Private typedef for convenience
|
||||||
typedef MeshedSurface<face> MeshStorage;
|
typedef MeshedSurface<face> MeshStorage;
|
||||||
|
|
||||||
|
|
||||||
// Private data
|
// Private data
|
||||||
|
|
||||||
//- List of cells cut by the plane
|
//- List of cells cut by the plane
|
||||||
labelList cutCells_;
|
labelList cutCells_;
|
||||||
|
|
||||||
|
|
||||||
// Private Member Functions
|
// Private Member Functions
|
||||||
|
|
||||||
//- Determine cut cells, possibly restricted to a list of cells
|
//- Determine cut cells, possibly restricted to a list of cells
|
||||||
@ -129,6 +131,7 @@ protected:
|
|||||||
//- remap action on triangulation or cleanup
|
//- remap action on triangulation or cleanup
|
||||||
virtual void remapFaces(const labelUList& faceMap);
|
virtual void remapFaces(const labelUList& faceMap);
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
// Constructors
|
// Constructors
|
||||||
|
|||||||
Reference in New Issue
Block a user