initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / meshTools / sets / cellSources / regionToCell / regionToCell.H
blob9e864dcbbadc18813d8e8a0f2db238880155339d
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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::regionToCell
28 Description
29     TopoSetSource. Select cells belonging to topological connected region
30     (that contains given point)
32 SourceFiles
33     regionToCell.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef regionToCell_H
38 #define regionToCell_H
40 #include "topoSetSource.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 /*---------------------------------------------------------------------------*\
48                            Class regionToCell Declaration
49 \*---------------------------------------------------------------------------*/
51 class regionToCell
53     public topoSetSource
56     // Private data
58         //- Add usage string
59         static addToUsageTable usage_;
61         //- Name of cellSet to keep to
62         word setName_;
64         //- Coordinate that is inside connected region
65         point insidePoint_;
68     // Private Member Functions
70         void combine(topoSet& set, const bool add) const;
73 public:
75     //- Runtime type information
76     TypeName("regionToCell");
78     // Constructors
80         //- Construct from components
81         regionToCell
82         (
83             const polyMesh& mesh,
84             const word& setName,
85             const point& insidePoint
86         );
88         //- Construct from dictionary
89         regionToCell
90         (
91             const polyMesh& mesh,
92             const dictionary& dict
93         );
95         //- Construct from Istream
96         regionToCell
97         (
98             const polyMesh& mesh,
99             Istream&
100         );
103     // Destructor
105         virtual ~regionToCell();
108     // Member Functions
110         virtual void applyToSet(const topoSetSource::setAction action, topoSet&)
111          const;
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 } // End namespace Foam
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 #endif
124 // ************************************************************************* //