Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / meshTools / sets / cellSources / zoneToCell / zoneToCell.H
blob1ccd864ae3d4b96ac9b1b4b710fa4c24f181a829
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, 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
99     virtual ~zoneToCell();
102     // Member Functions
104         virtual sourceType setType() const
105         {
106             return CELLSETSOURCE;
107         }
109         virtual void applyToSet
110         (
111             const topoSetSource::setAction action,
112             topoSet&
113         ) const;
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 } // End namespace Foam
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 #endif
126 // ************************************************************************* //