mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
- uniform use of reinterpret_cast<foo*>(0) instead of
reinterpret_cast<foo*>(NULL)
- make all static null() members inline since they are really only a cast:
"*reinterpret_cast<foo*>(0)"
140 lines
3.7 KiB
C++
140 lines
3.7 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the
|
|
Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type, class GeoMesh>
|
|
inline SubDimensionedField<Type, GeoMesh>::SubDimensionedField
|
|
(
|
|
const SubField<Type>& slist
|
|
)
|
|
:
|
|
SubField<Type>(slist)
|
|
{}
|
|
|
|
template<class Type, class GeoMesh>
|
|
inline SubDimensionedField<Type, GeoMesh>::SubDimensionedField
|
|
(
|
|
const UList<Type>& list,
|
|
const label subSize
|
|
)
|
|
:
|
|
SubField<Type>(list, subSize)
|
|
{}
|
|
|
|
|
|
template<class Type, class GeoMesh>
|
|
inline SubDimensionedField<Type, GeoMesh>::SubDimensionedField
|
|
(
|
|
const UList<Type>& list,
|
|
const label subSize,
|
|
const label startIndex
|
|
)
|
|
:
|
|
SubField<Type>(list, subSize, startIndex)
|
|
{}
|
|
|
|
|
|
template<class Type, class GeoMesh>
|
|
inline SubDimensionedField<Type, GeoMesh>::SubDimensionedField
|
|
(
|
|
const SubDimensionedField<Type, GeoMesh>& sfield
|
|
)
|
|
:
|
|
refCount(),
|
|
SubField<Type>(sfield)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
// Return a null Field
|
|
template<class Type, class GeoMesh>
|
|
inline const SubDimensionedField<Type, GeoMesh>&
|
|
SubDimensionedField<Type, GeoMesh>::null()
|
|
{
|
|
return *reinterpret_cast< SubDimensionedField<Type, GeoMesh>* >(0);
|
|
}
|
|
|
|
|
|
template<class Type, class GeoMesh>
|
|
inline tmp<Field<typename SubDimensionedField<Type, GeoMesh>::cmptType> >
|
|
SubDimensionedField<Type, GeoMesh>::component
|
|
(
|
|
const direction d
|
|
) const
|
|
{
|
|
return
|
|
(
|
|
reinterpret_cast<const DimensionedField<Type, GeoMesh>&>(*this)
|
|
).component(d);
|
|
}
|
|
|
|
|
|
template<class Type, class GeoMesh>
|
|
inline tmp<DimensionedField<Type, GeoMesh> >
|
|
SubDimensionedField<Type, GeoMesh>::T() const
|
|
{
|
|
return
|
|
(
|
|
reinterpret_cast<const DimensionedField<Type, GeoMesh>&>(*this)
|
|
).T();
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
|
|
|
|
template<class Type, class GeoMesh>
|
|
inline void SubDimensionedField<Type, GeoMesh>::operator=
|
|
(
|
|
const SubDimensionedField<Type, GeoMesh>& rhs
|
|
)
|
|
{
|
|
dimensions() = rhs.dimensions();
|
|
SubField<Type>::operator=(rhs);
|
|
}
|
|
|
|
|
|
// Allow cast to a const DimensionedField<Type, GeoMesh>&
|
|
template<class Type, class GeoMesh>
|
|
inline SubDimensionedField<Type, GeoMesh>::operator
|
|
const DimensionedField<Type, GeoMesh>&() const
|
|
{
|
|
return *(reinterpret_cast<const DimensionedField<Type, GeoMesh>*>(this));
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// ************************************************************************* //
|