initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / meshTools / sets / cellSources / cellToCell / cellToCell.H
blobd36b0c8ed383414426687a504ebea1efc6089678
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::cellToCell
28 Description
29     A topoSetSource to select the cells from another cellSet.
31 SourceFiles
32     cellToCell.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef cellToCell_H
37 #define cellToCell_H
39 #include "topoSetSource.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                            Class cellToCell Declaration
48 \*---------------------------------------------------------------------------*/
50 class cellToCell
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("cellToCell");
67     // Constructors
69         //- Construct from components
70         cellToCell
71         (
72             const polyMesh& mesh,
73             const word& setName
74         );
76         //- Construct from dictionary
77         cellToCell
78         (
79             const polyMesh& mesh,
80             const dictionary& dict
81         );
83         //- Construct from Istream
84         cellToCell
85         (
86             const polyMesh& mesh,
87             Istream&
88         );
91     // Destructor
93         virtual ~cellToCell();
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 // ************************************************************************* //