BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / applications / test / router / Gather / GatherBase.H
blob6a90aef845f9bf675c13d9fbf0b822ab0cdc9a8c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::GatherBase
27 Description
29 SourceFiles
30     GatherBase.C
32 \*---------------------------------------------------------------------------*/
34 #ifndef GatherBase_H
35 #define GatherBase_H
37 #include "List.H"
38 #include "labelList.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 /*---------------------------------------------------------------------------*\
46                            Class GatherBase Declaration
47 \*---------------------------------------------------------------------------*/
49 class GatherBase
52 public:
54         //- Flatten: appends all elements of list into one single list.
55         //  Used to collapse 'Gathered' data.
56         template <class T>
57         static T flatten(const List<T>);
59         //- Flatten and offset 'Gathered' indices (into value) so they
60         //  remain valid with respect to values (after they have been flattened)
61         template <class DataType, class IndexType, class AddOp>
62         static IndexType offset
63         (
64             const List<DataType>& values,
65             const List<IndexType>& indices,
66             AddOp aop
67         );
71 template <class T>
72 class AddOp
75 public:
77     T operator()
78     (
79         const T& x,
80         const label offset
81     ) const
82     {
83         return x + offset;
84     }
88 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
90 } // End namespace Foam
92 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
94 #ifdef NoRepository
95 #   include "GatherBase.C"
96 #endif
98 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
100 #endif
102 // ************************************************************************* //