Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / meshTools / sets / pointSources / labelToPoint / labelToPoint.H
blob72b9ac5fae6f8d4ea69c65a8560f8a6d5802ce72
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::labelToPoint
27 Description
28     A topoSetSource to select points given explicitly provided labels.
30 SourceFiles
31     labelToPoint.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef labelToPoint_H
36 #define labelToPoint_H
38 #include "topoSetSource.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 /*---------------------------------------------------------------------------*\
46                            Class labelToPoint Declaration
47 \*---------------------------------------------------------------------------*/
49 class labelToPoint
51     public topoSetSource
54     // Private data
56         //- Add usage string
57         static addToUsageTable usage_;
59         //- point labels read from dictionary
60         labelList labels_;
63     // Private Member Functions
65         void combine(topoSet& set, const bool add) const;
68 public:
70     //- Runtime type information
71     TypeName("labelToPoint");
73     // Constructors
75         //- Construct from components
76         labelToPoint
77         (
78             const polyMesh& mesh,
79             const labelList& labels
80         );
82         //- Construct from dictionary
83         labelToPoint
84         (
85             const polyMesh& mesh,
86             const dictionary& dict
87         );
89         //- Construct from Istream
90         labelToPoint
91         (
92             const polyMesh& mesh,
93             Istream&
94         );
97     //- Destructor
98     virtual ~labelToPoint();
101     // Member Functions
103         virtual sourceType setType() const
104         {
105             return POINTSETSOURCE;
106         }
108         virtual void applyToSet
109         (
110             const topoSetSource::setAction action,
111             topoSet&
112         ) const;
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 } // End namespace Foam
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 #endif
125 // ************************************************************************* //