Files
openfoam/src/meshTools/sets/topoSets/cellSet.H
2009-09-24 18:39:04 +01:00

177 lines
4.4 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM; if not, write to the Free Software Foundation,
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class
Foam::cellSet
Description
A collection of cell labels.
SourceFiles
cellSet.C
\*---------------------------------------------------------------------------*/
#ifndef cellSet_H
#define cellSet_H
#include "topoSet.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class cellSet Declaration
\*---------------------------------------------------------------------------*/
class cellSet
:
public topoSet
{
// Private Member Functions
//- Disallow default bitwise copy construct
cellSet(const cellSet&);
public:
//- Runtime type information
TypeName("cellSet");
// Constructors
//- Construct from IOobject. No checking.
cellSet(const IOobject& obj);
//- Construct from polyMesh and name. Checks for valid cell ids.
cellSet
(
const polyMesh& mesh,
const word& name,
readOption r=MUST_READ,
writeOption w=NO_WRITE
);
//- Construct empty from size of labelHashSet
cellSet
(
const polyMesh& mesh,
const word& name,
const label sizes,
writeOption w=NO_WRITE
);
//- Construct from existing set
cellSet
(
const polyMesh& mesh,
const word& name,
const topoSet&,
writeOption w=NO_WRITE
);
//- Construct from labelHashSet
cellSet
(
const polyMesh& mesh,
const word& name,
const labelHashSet&,
writeOption w=NO_WRITE
);
// Used for tetMesh cellSet only.
//- Construct from objectRegistry and name.
cellSet
(
const Time&,
const word& name,
readOption r=MUST_READ,
writeOption w=NO_WRITE
);
//- Construct empty from objectRegistry.
cellSet
(
const Time&,
const word& name,
const label size,
writeOption w=NO_WRITE
);
//- Construct from labelHashSet
cellSet
(
const Time&,
const word& name,
const labelHashSet&,
writeOption w=NO_WRITE
);
// Destructor
virtual ~cellSet();
// Member functions
//- Sync cellSet across coupled patches.
virtual void sync(const polyMesh& mesh)
{}
//- Return max index+1.
virtual label maxSize(const polyMesh& mesh) const;
//- Update any stored data for new labels
virtual void updateMesh(const mapPolyMesh& morphMap);
//- Write maxLen items with label and coordinates.
virtual void writeDebug
(
Ostream& os,
const primitiveMesh&,
const label maxLen
) const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //