/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2016 OpenFOAM Foundation \\/ 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 3 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, see . \*---------------------------------------------------------------------------*/ #include "regionFunctionObject.H" #include "objectRegistry.H" // * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * // template bool Foam::functionObjects::regionFunctionObject::foundObject ( const word& fieldName ) const { return obr_.foundObject(fieldName); } template const ObjectType& Foam::functionObjects::regionFunctionObject::lookupObject ( const word& fieldName ) const { return obr_.lookupObject(fieldName); } template bool Foam::functionObjects::regionFunctionObject::store ( word& fieldName, const tmp& tfield, bool cacheable ) { if (cacheable && fieldName == tfield().name()) { WarningInFunction << "Cannot store cache-able field with the named used in the cache." << nl << " Either choose a different name or cache the field" << " and use the 'writeRegisteredObject' functionObject." << endl; return false; } if ( fieldName.size() && obr_.foundObject(fieldName) ) { const ObjectType& field = ( obr_.lookupObject(fieldName) ); // If there is a result field already registered assign to the new // result field otherwise transfer ownership of the new result field to // the object registry if (&field != &tfield()) { const_cast(field) = tfield; } else { obr_.objectRegistry::store(tfield.ptr()); } } else { if (fieldName.size() && fieldName != tfield().name()) { tfield.ref().rename(fieldName); } else { fieldName = tfield().name(); } obr_.objectRegistry::store(tfield.ptr()); } return true; } // ************************************************************************* //