Merge branch 'upstream/OpenFOAM' into 'master'
[freefoam.git] / src / meshTools / sets / pointSources / pointToPoint / pointToPoint.C
blob9494bdf909708ab2d9e5693cd22dd25fbc604a91
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 \*---------------------------------------------------------------------------*/
27 #include "pointToPoint.H"
28 #include <OpenFOAM/polyMesh.H>
29 #include <meshTools/pointSet.H>
31 #include <OpenFOAM/addToRunTimeSelectionTable.H>
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
35 namespace Foam
38 defineTypeNameAndDebug(pointToPoint, 0);
40 addToRunTimeSelectionTable(topoSetSource, pointToPoint, word);
42 addToRunTimeSelectionTable(topoSetSource, pointToPoint, istream);
47 Foam::topoSetSource::addToUsageTable Foam::pointToPoint::usage_
49     pointToPoint::typeName,
50     "\n    Usage: pointToPoint <pointSet>\n\n"
51     "    Select all points in the pointSet\n\n"
55 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
57 // Construct from components
58 Foam::pointToPoint::pointToPoint
60     const polyMesh& mesh,
61     const word& setName
64     topoSetSource(mesh),
65     setName_(setName)
69 // Construct from dictionary
70 Foam::pointToPoint::pointToPoint
72     const polyMesh& mesh,
73     const dictionary& dict
76     topoSetSource(mesh),
77     setName_(dict.lookup("set"))
81 // Construct from Istream
82 Foam::pointToPoint::pointToPoint
84     const polyMesh& mesh,
85     Istream& is
88     topoSetSource(mesh),
89     setName_(checkIs(is))
93 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
95 Foam::pointToPoint::~pointToPoint()
99 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
101 void Foam::pointToPoint::applyToSet
103     const topoSetSource::setAction action,
104     topoSet& set
105 ) const
107     if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
108     {
109         Info<< "    Adding all from pointSet " << setName_ << " ..." << endl;
111         // Load the set
112         pointSet loadedSet(mesh_, setName_);
114         set.addSet(loadedSet);
115     }
116     else if (action == topoSetSource::DELETE)
117     {
118         Info<< "    Removing all from pointSet " << setName_ << " ..." << endl;
120         // Load the set
121         pointSet loadedSet(mesh_, setName_);
123         set.deleteSet(loadedSet);
124     }
128 // ************************ vim: set sw=4 sts=4 et: ************************ //