initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / postProcessing / functionObjects / field / fieldAverage / fieldAverageItem / fieldAverageItem.C
blob6d9bb99538454804e50601518c20122866503b37
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 "fieldAverageItem.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 template<>
32 const char* Foam::NamedEnum<Foam::fieldAverageItem::baseType, 2>::names[] =
34     "iteration",
35     "time"
38 const Foam::NamedEnum<Foam::fieldAverageItem::baseType, 2>
39     Foam::fieldAverageItem::baseTypeNames_;
42 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
44 Foam::fieldAverageItem::fieldAverageItem()
46     fieldName_("unknown"),
47     mean_(0),
48     prime2Mean_(0),
49     base_(ITER)
53 Foam::fieldAverageItem::fieldAverageItem(const fieldAverageItem& faItem)
55     fieldName_(faItem.fieldName_),
56     mean_(faItem.mean_),
57     prime2Mean_(faItem.prime2Mean_),
58     base_(faItem.base_)
62 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
64 Foam::fieldAverageItem::~fieldAverageItem()
68 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
70 void Foam::fieldAverageItem::operator=(const fieldAverageItem& rhs)
72     // Check for assignment to self
73     if (this == &rhs)
74     {
75         FatalErrorIn
76         (
77             "Foam::fieldAverageItem::operator=(const Foam::fieldAverageItem&)"
78         )   << "Attempted assignment to self" << nl
79             << abort(FatalError);
80     }
82     // Set updated values
83     fieldName_ = rhs.fieldName_;
84     mean_ = rhs.mean_;
85     prime2Mean_ = rhs.prime2Mean_;
86     base_ = rhs.base_;
90 // ************************************************************************* //