MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / cellSet

Class cellSet

src/meshTools/sets/topoSets/cellSet.H:49–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47\*---------------------------------------------------------------------------*/
48
49class cellSet
50:
51 public topoSet
52{
53 // Private Member Functions
54
55 //- Disallow default bitwise copy construct
56 cellSet(const cellSet&);
57
58
59public:
60
61 //- Runtime type information
62 TypeName("cellSet");
63
64
65 // Constructors
66
67 //- Construct from IOobject. No checking.
68 cellSet(const IOobject& obj);
69
70 //- Construct from polyMesh and name. Checks for valid cell ids.
71 cellSet
72 (
73 const polyMesh& mesh,
74 const word& name,
75 readOption r=MUST_READ,
76 writeOption w=NO_WRITE
77 );
78
79 //- Construct empty from size of labelHashSet
80 cellSet
81 (
82 const polyMesh& mesh,
83 const word& name,
84 const label sizes,
85 writeOption w=NO_WRITE
86 );
87
88 //- Construct from existing set
89 cellSet
90 (
91 const polyMesh& mesh,
92 const word& name,
93 const topoSet&,
94 writeOption w=NO_WRITE
95 );
96
97 //- Construct from labelHashSet
98 cellSet
99 (
100 const polyMesh& mesh,
101 const word& name,
102 const labelHashSet&,
103 writeOption w=NO_WRITE
104 );
105
106

Callers 1

cellZoneSet.CFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected