initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / edgeMesh / featureEdgeMesh.C
blobdab3c2cbb5ff836dd598c3d244d07b30929e3e6f
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 "featureEdgeMesh.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 namespace Foam
34 defineTypeNameAndDebug(featureEdgeMesh, 0);
39 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
42 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
45 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
48 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
50 Foam::featureEdgeMesh::featureEdgeMesh(const IOobject& io)
52     regIOobject(io),
53     edgeMesh(pointField(0), edgeList(0))
55     if
56     (
57         io.readOpt() == IOobject::MUST_READ
58      || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
59     )
60     {
61         readStream(typeName) >> *this;
62         close();
63     }
65     if (debug)
66     {
67         Pout<< "featureEdgeMesh::featureEdgeMesh :"
68             << " constructed from IOobject :"
69             << " points:" << points().size()
70             << " edges:" << edges().size()
71             << endl;
72     }
76 //- Construct from components
77 Foam::featureEdgeMesh::featureEdgeMesh
79     const IOobject& io,
80     const pointField& points,
81     const edgeList& edges
84     regIOobject(io),
85     edgeMesh(points, edges)
89 // Construct as copy
90 Foam::featureEdgeMesh::featureEdgeMesh
92     const IOobject& io,
93     const featureEdgeMesh& em
96     regIOobject(io),
97     edgeMesh(em)
101 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
103 bool Foam::featureEdgeMesh::readData(Istream& is)
105     is >> *this;
106     return !is.bad();
110 bool Foam::featureEdgeMesh::writeData(Ostream& os) const
112     os << *this;
114     return os.good();
118 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
121 // ************************************************************************* //