Merge branch 'upstream/OpenFOAM' into master
[freefoam.git] / src / meshTools / sets / topoSets / faceSet.H
blobf705831904d9b4a5234aeeefcc2e61162d416488
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::faceSet
28 Description
29     A list of face labels.
31 SourceFiles
32     faceSet.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef faceSet_H
37 #define faceSet_H
39 #include <meshTools/topoSet.H>
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                            Class faceSet Declaration
48 \*---------------------------------------------------------------------------*/
50 class faceSet
52     public topoSet
56 public:
58     //- Runtime type information
59     TypeName("faceSet");
62     // Constructors
65         //- Construct from IOobject
66         faceSet(const IOobject& obj);
68         //- Construct from objectRegistry and name
69         faceSet
70         (
71             const polyMesh& mesh,
72             const word& name,
73             readOption r=MUST_READ,
74             writeOption w=NO_WRITE
75         );
77         //- Construct from additional size of labelHashSet
78         faceSet
79         (
80             const polyMesh& mesh,
81             const word& name,
82             const label,
83             writeOption w=NO_WRITE
84         );
86         //- Construct from additional labelHashSet
87         faceSet
88         (
89             const polyMesh& mesh,
90             const word& name,
91             const labelHashSet&,
92             writeOption w=NO_WRITE
93         );
96     // Destructor
98         virtual ~faceSet();
101     // Member functions
103         //- Sync faceSet across coupled patches.
104         virtual void sync(const polyMesh& mesh);
106         //- Return max index+1.
107         virtual label maxSize(const polyMesh& mesh) const;
109         //- Update any stored data for new labels
110         virtual void updateMesh(const mapPolyMesh& morphMap);
112         //- Write maxLen items with label and coordinates. 
113         virtual void writeDebug
114         (
115             Ostream& os,
116             const primitiveMesh&,
117             const label maxLen
118         ) const;
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
125 } // End namespace Foam
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
129 #endif
131 // ************************ vim: set sw=4 sts=4 et: ************************ //