Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / surfMesh / MeshedSurfaceAllocator / MeshedSurfaceIOAllocator.C
blob11853a370af52ca1a97247e9753c7538e72912f2
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "MeshedSurfaceIOAllocator.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 Foam::MeshedSurfaceIOAllocator::MeshedSurfaceIOAllocator
33     const IOobject& ioPoints,
34     const IOobject& ioFaces,
35     const IOobject& ioZones
38     points_(ioPoints),
39     faces_(ioFaces),
40     zones_(ioZones)
44 Foam::MeshedSurfaceIOAllocator::MeshedSurfaceIOAllocator
46     const IOobject& ioPoints,
47     const pointField& points,
48     const IOobject& ioFaces,
49     const faceList& faces,
50     const IOobject& ioZones,
51     const surfZoneList& zones
54     points_(ioPoints, points),
55     faces_(ioFaces, faces),
56     zones_(ioZones, zones)
60 Foam::MeshedSurfaceIOAllocator::MeshedSurfaceIOAllocator
62     const IOobject& ioPoints,
63     const Xfer< pointField >& points,
64     const IOobject& ioFaces,
65     const Xfer< faceList >& faces,
66     const IOobject& ioZones,
67     const Xfer< surfZoneList >& zones
70     points_(ioPoints, points),
71     faces_(ioFaces, faces),
72     zones_(ioZones, zones)
76 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
78 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
80 void Foam::MeshedSurfaceIOAllocator::clear()
82     points_.clear();
83     faces_.clear();
84     zones_.clear();
88 void Foam::MeshedSurfaceIOAllocator::resetFaces
90     const Xfer<List<face> >& faces,
91     const Xfer<surfZoneList>& zones
94     if (!faces().empty())
95     {
96         faces_.transfer(faces());
97     }
99     if (!zones().empty())
100     {
101         zones_.transfer(zones());
102     }
106 void Foam::MeshedSurfaceIOAllocator::reset
108     const Xfer< pointField >& points,
109     const Xfer< faceList >& faces,
110     const Xfer< surfZoneList >& zones
113     // Take over new primitive data.
114     // Optimized to avoid overwriting data at all
115     if (!points().empty())
116     {
117         points_.transfer(points());
118     }
120     resetFaces(faces, zones);
124 void Foam::MeshedSurfaceIOAllocator::reset
126     const Xfer< List<point> >& points,
127     const Xfer< faceList >& faces,
128     const Xfer< surfZoneList >& zones
131     // Take over new primitive data.
132     // Optimized to avoid overwriting data at all
133     if (!points().empty())
134     {
135         points_.transfer(points());
136     }
138     resetFaces(faces, zones);
142 // ************************************************************************* //