initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / surfMesh / MeshedSurfaceAllocator / MeshedSurfaceIOAllocator.C
blob37a40ebaae65c6e756b93a729c5c4009e13a6917
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 "MeshedSurfaceIOAllocator.H"
30 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
32 Foam::MeshedSurfaceIOAllocator::MeshedSurfaceIOAllocator
34     const IOobject& ioPoints,
35     const IOobject& ioFaces,
36     const IOobject& ioZones
39     points_(ioPoints),
40     faces_(ioFaces),
41     zones_(ioZones)
45 Foam::MeshedSurfaceIOAllocator::MeshedSurfaceIOAllocator
47     const IOobject& ioPoints,
48     const pointField& points,
49     const IOobject& ioFaces,
50     const faceList& faces,
51     const IOobject& ioZones,
52     const surfZoneList& zones
55     points_(ioPoints, points),
56     faces_(ioFaces, faces),
57     zones_(ioZones, zones)
61 Foam::MeshedSurfaceIOAllocator::MeshedSurfaceIOAllocator
63     const IOobject& ioPoints,
64     const Xfer< pointField >& points,
65     const IOobject& ioFaces,
66     const Xfer< faceList >& faces,
67     const IOobject& ioZones,
68     const Xfer< surfZoneList >& zones
71     points_(ioPoints, points),
72     faces_(ioFaces, faces),
73     zones_(ioZones, zones)
77 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
79 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
81 void Foam::MeshedSurfaceIOAllocator::clear()
83     points_.clear();
84     faces_.clear();
85     zones_.clear();
89 void Foam::MeshedSurfaceIOAllocator::resetFaces
91     const Xfer< List<face> >& faces,
92     const Xfer< surfZoneList >& zones
95     if (&faces)
96     {
97         faces_.transfer(faces());
98     }
100     if (&zones)
101     {
102         zones_.transfer(zones());
103     }
107 void Foam::MeshedSurfaceIOAllocator::reset
109     const Xfer< pointField >& points,
110     const Xfer< faceList >& faces,
111     const Xfer< surfZoneList >& zones
114     // Take over new primitive data.
115     // Optimized to avoid overwriting data at all
116     if (&points)
117     {
118         points_.transfer(points());
119     }
121     resetFaces(faces, zones);
125 void Foam::MeshedSurfaceIOAllocator::reset
127     const Xfer< List<point> >& points,
128     const Xfer< faceList >& faces,
129     const Xfer< surfZoneList >& zones
132     // Take over new primitive data.
133     // Optimized to avoid overwriting data at all
134     if (&points)
135     {
136         points_.transfer(points());
137     }
139     resetFaces(faces, zones);
143 // ************************************************************************* //