Corrected assignment if no points merged. Filter out points getting unused
[OpenFOAM-1.6.x.git] / src / meshTools / sets / topoSets / pointSet.H
blobb9c8ef93aceb6a2fcd7124f6da1cb2615d1348dc
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::pointSet
28 Description
29     A set of point labels.
31 SourceFiles
32     pointSet.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef pointSet_H
37 #define pointSet_H
39 #include "topoSet.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                          Class pointSet Declaration
48 \*---------------------------------------------------------------------------*/
50 class pointSet
52     public topoSet
56 public:
58     //- Runtime type information
59     TypeName("pointSet");
62     // Constructors
65         //- Construct from IOobject
66         pointSet(const IOobject& obj);
68         //- Construct from objectRegistry and name
69         pointSet
70         (
71             const polyMesh& mesh,
72             const word& name,
73             readOption r=MUST_READ,
74             writeOption w=NO_WRITE
75         );
77         //- Construct from additional size of labelHashSet
78         pointSet
79         (
80             const polyMesh& mesh,
81             const word& name,
82             const label,
83             writeOption w=NO_WRITE
84         );
86         //- Construct from additional labelHashSet
87         pointSet
88         (
89             const polyMesh& mesh,
90             const word& name,
91             const labelHashSet&,
92             writeOption w=NO_WRITE
93         );
96     // Destructor
98         virtual ~pointSet();
101     // Member functions
103         //- Sync set across coupled patches. Adds coupled points to set.
104         virtual void sync(const polyMesh& mesh);
106         //- Return max index+1.
107         virtual label maxSize(const polyMesh& mesh) const;
109         //- Update any stored data for new labels
110         virtual void updateMesh(const mapPolyMesh& morphMap);
112         //- Update any stored data for new labels
113         //virtual void updateMesh(const polyTopoChange& meshMod);
115         //- Write maxLen items with label and coordinates. 
116         virtual void writeDebug
117         (
118             Ostream& os,
119             const primitiveMesh&,
120             const label maxLen
121         ) const;
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 } // End namespace Foam
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 #endif
134 // ************************************************************************* //