Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / meshTools / sets / faceSources / pointToFace / pointToFace.H
blob916a16a3e8de0d777d2dc308770473a9c42002ff
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::pointToFace
27 Description
28     A topoSetSource to select faces based on use of points.
30 SourceFiles
31     pointToFace.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef pointToFace_H
36 #define pointToFace_H
38 #include "topoSetSource.H"
39 #include "NamedEnum.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                         Class pointToFace Declaration
48 \*---------------------------------------------------------------------------*/
50 class pointToFace
52     public topoSetSource
55 public:
57         //- Enumeration defining the valid options
58         enum pointAction
59         {
60             ANY,
61             ALL
62         };
65 private:
67         //- Add usage string
68         static addToUsageTable usage_;
70         static const NamedEnum<pointAction, 2> pointActionNames_;
72         //- Name of set to use
73         word setName_;
75         //- Option
76         pointAction option_;
79     // Private Member Functions
81         //- Depending on face to cell option add to or delete from cellSet.
82         void combine(topoSet& set, const bool add) const;
85 public:
87     //- Runtime type information
88     TypeName("pointToFace");
90     // Constructors
92         //- Construct from components
93         pointToFace
94         (
95             const polyMesh& mesh,
96             const word& setName,
97             const pointAction option
98         );
100         //- Construct from dictionary
101         pointToFace
102         (
103             const polyMesh& mesh,
104             const dictionary& dict
105         );
107         //- Construct from Istream
108         pointToFace
109         (
110             const polyMesh& mesh,
111             Istream&
112         );
115     //- Destructor
116     virtual ~pointToFace();
119     // Member Functions
121         virtual sourceType setType() const
122         {
123             return FACESETSOURCE;
124         }
126         virtual void applyToSet
127         (
128             const topoSetSource::setAction action,
129             topoSet&
130         ) const;
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 } // End namespace Foam
139 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
141 #endif
143 // ************************************************************************* //