Report patch name instead of index in debug
[foam-extend-3.2.git] / src / foam / meshes / polyMesh / zones / ZoneID / ZoneID.H
blobc6415a72ebd216b6789477f9ece134a9a884a3b2
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 Class
25     Foam::ZoneID
27 Description
28     A class that holds the data needed to identify a zone in a dynamic mesh.
30     The zone is identified by name.
31     Its index in the zoneMesh is updated if the mesh has changed.
33 \*---------------------------------------------------------------------------*/
35 #ifndef ZoneID_H
36 #define ZoneID_H
38 #include "label.H"
39 #include "word.H"
40 #include "polyMesh.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
47 template<class ZoneType, class MeshType> class ZoneMesh;
49 // Forward declaration of friend functions and operators
51 template<class ZoneType> class ZoneID;
53 template<class ZoneType>
54 Ostream& operator<<(Ostream&, const ZoneID<ZoneType>&);
56 /*---------------------------------------------------------------------------*\
57                            Class ZoneID Declaration
58 \*---------------------------------------------------------------------------*/
60 template<class ZoneType>
61 class ZoneID
63     // Private data
65         //- Zone name
66         word name_;
68         //- Zone index
69         label index_;
72 public:
74     // Constructors
76         //- Construct from name
77         ZoneID(const word& name, const ZoneMesh<ZoneType, polyMesh>& zm)
78         :
79             name_(name),
80             index_(zm.findZoneID(name))
81         {}
83         //- Construct from Istream
84         ZoneID(Istream& is, const ZoneMesh<ZoneType, polyMesh>& zm)
85         :
86             name_(is),
87             index_(zm.findZoneID(name_))
88         {}
91     // Destructor - default
94     // Member Functions
96         // Access
98             //- Return name
99             const word& name() const
100             {
101                 return name_;
102             }
104             //- Return index
105             label index() const
106             {
107                 return index_;
108             }
110             //- Has the zone been found
111             bool active() const
112             {
113                 return index_ > -1;
114             }
116         // Edit
118             //- Update
119             void update(const ZoneMesh<ZoneType, polyMesh>& zm)
120             {
121                 index_ = zm.findZoneID(name_);
122             }
125     // IOstream Operators
127         friend Ostream& operator<< <ZoneType>
128         (
129             Ostream& os, const ZoneID<ZoneType>& p
130         );
134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
136 template<class ZoneType>
137 Ostream& operator<<
139     Ostream& os, const ZoneID<ZoneType>& p
142     os  << token::BEGIN_LIST
143         << p.name_ << token::SPACE
144         << p.index_
145         << token::END_LIST;
147     // Check state of Ostream
148     os.check("Ostream& operator<<(Ostream&, const ZoneID<ZoneType>&)");
150     return os;
154 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
156 } // End namespace Foam
158 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
160 #endif
162 // ************************************************************************* //