initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / meshTools / sets / pointSources / pointToPoint / pointToPoint.H
blobdfc34b951bf34d5a58467c8c2303b583dcc715e7
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 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::pointToPoint
28 Description
29     A topoSetSource to select points based on usage in pointSet.
31 SourceFiles
32     pointToPoint.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef pointToPoint_H
37 #define pointToPoint_H
39 #include "topoSetSource.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                        Class pointToPoint Declaration
48 \*---------------------------------------------------------------------------*/
50 class pointToPoint
52     public topoSetSource
54     // Private data
56         //- Add usage string
57         static addToUsageTable usage_;
59         //- Name of set to use
60         word setName_;
62 public:
64     //- Runtime type information
65     TypeName("pointToPoint");
67     // Constructors
69         //- Construct from components
70         pointToPoint
71         (
72             const polyMesh& mesh,
73             const word& setName
74         );
76         //- Construct from dictionary
77         pointToPoint
78         (
79             const polyMesh& mesh,
80             const dictionary& dict
81         );
83         //- Construct from Istream
84         pointToPoint
85         (
86             const polyMesh& mesh,
87             Istream&
88         );
91     // Destructor
93         virtual ~pointToPoint();
96     // Member Functions
98         virtual void applyToSet
99         (
100             const topoSetSource::setAction action,
101             topoSet&
102         ) const;
107 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
109 } // End namespace Foam
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 #endif
115 // ************************************************************************* //