Forward compatibility: flex
[foam-extend-3.2.git] / src / foam / fields / cloud / mapClouds.H
blobfacf8c5cec1f81664f91162896f60c49a7f33ab7
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 InNamespace
25     Foam::mapClouds
27 Description
28     Generic Geometric field mapper.  For "real" mapping, add template
29     specialisations for mapping of internal fields depending on mesh
30     type.
32 \*---------------------------------------------------------------------------*/
34 #ifndef mapClouds_H
35 #define mapClouds_H
37 #include "cloud.H"
38 #include "objectRegistry.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 //- Generic Geometric field mapper.
46 //  For "real" mapping, add template specialisations for mapping of internal
47 //  fields depending on mesh type.
48 inline void mapClouds(const objectRegistry& db, const mapPolyMesh& mapper)
50     HashTable<const cloud*> clouds(db.lookupClass<cloud>());
52     for
53     (
54         HashTable<const cloud*>::iterator iter = clouds.begin();
55         iter != clouds.end();
56         ++iter
57     )
58     {
59         cloud& c = const_cast<cloud&>(*iter());
61         if (polyMesh::debug)
62         {
63             Info<< "Mapping cloud " << c.name() << endl;
64         }
66         c.autoMap(mapper);
67     }
71 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
73 } // End namespace Foam
75 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
77 #endif
79 // ************************************************************************* //