Forward compatibility: flex
[foam-extend-3.2.git] / src / meshTools / sets / cellSources / zoneToCell / zoneToCell.H
blob0b67687c140af6c26cee976a53f833761be07477
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::zoneToCell
27 Description
28     A topoSetSource to select faces based on cellZone.
30 SourceFiles
31     zoneToCell.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef zoneToCell_H
36 #define zoneToCell_H
38 #include "topoSetSource.H"
39 #include "wordRe.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                         Class zoneToCell Declaration
48 \*---------------------------------------------------------------------------*/
50 class zoneToCell
52     public topoSetSource
55     // Private data
57         //- Add usage string
58         static addToUsageTable usage_;
60         //- Name/regular expression of cellZone
61         wordRe zoneName_;
64     // Private Member Functions
66         void combine(topoSet& set, const bool add) const;
69 public:
71     //- Runtime type information
72     TypeName("zoneToCell");
74     // Constructors
76         //- Construct from components
77         zoneToCell
78         (
79             const polyMesh& mesh,
80             const word& zoneName
81         );
83         //- Construct from dictionary
84         zoneToCell
85         (
86             const polyMesh& mesh,
87             const dictionary& dict
88         );
90         //- Construct from Istream
91         zoneToCell
92         (
93             const polyMesh& mesh,
94             Istream&
95         );
98     // Destructor
100         virtual ~zoneToCell();
103     // Member Functions
105         virtual void applyToSet
106         (
107             const topoSetSource::setAction action,
108             topoSet&
109         ) const;
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 } // End namespace Foam
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 #endif
122 // ************************************************************************* //