initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / OpenFOAM / meshes / meshShapes / cellModel / cellModelIO.C
blobb4e0f0cb10e22af944bd3f362620df6470df10d8
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 Description
26     Read construct cellPrimitiveModel from Istream.
27     Write cellPrimitiveModel to Ostream
29 \*---------------------------------------------------------------------------*/
31 #include "cellModel.H"
32 #include "dictionaryEntry.H"
34 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
36 namespace Foam
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 cellModel::cellModel(Istream& is)
43     dictionaryEntry entry(dictionary::null, is);
44     name_ = entry.keyword();
45     entry.lookup("index") >> index_;
46     entry.lookup("numberOfPoints") >> nPoints_;
47     entry.lookup("faces") >> faces_;
48     entry.lookup("edges") >> edges_;
52 Ostream& operator<<(Ostream& os, const cellModel& c)
54     os  << "name" << tab << c.name_ << tab
55         << "index" << tab << c.index_ << tab
56         << "numberOfPoints" << tab << c.nPoints_ << tab
57         << "faces" << tab << c.faces_ << tab
58         << "edges" << tab << c.edges_ << endl;
60     return os;
64 #if defined (__GNUC__)
65 template<>
66 #endif
67 Ostream& operator<<(Ostream& os, const InfoProxy<cellModel>& ip)
69     const cellModel& cm = ip.t_;
71     os  << "name = " << cm.name() << ", "
72         << "index = " << cm.index() << ", "
73         << "number of points = " << cm.nPoints() << ", "
74         << "number of faces = " << cm.nFaces() << ", "
75         << "number of edges = " << cm.nEdges()
76         << endl;
78     return os;
82 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
84 } // End namespace Foam
86 // ************************************************************************* //