mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
interpolationWeights: Info messages now switched by debug
This commit is contained in:
@ -57,8 +57,12 @@ autoPtr<interpolationWeights> interpolationWeights::New
|
||||
const scalarField& samples
|
||||
)
|
||||
{
|
||||
Info<< nl << "Selecting interpolationWeights "
|
||||
<< type << endl;
|
||||
if (debug)
|
||||
{
|
||||
InfoIn("interpolationWeights::New")
|
||||
<< "Selecting interpolationWeights "
|
||||
<< type << endl;
|
||||
}
|
||||
|
||||
wordConstructorTable::iterator cstrIter =
|
||||
wordConstructorTablePtr_->find(type);
|
||||
@ -87,33 +91,6 @@ interpolationWeights::~interpolationWeights()
|
||||
{}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||
|
||||
//objectRegistry& interpolationWeights::registry
|
||||
//(
|
||||
// const objectRegistry& obr,
|
||||
// const word& name
|
||||
//)
|
||||
//{
|
||||
// if (!obr.foundObject<objectRegistry>(name))
|
||||
// {
|
||||
// objectRegistry* fieldsCachePtr = new objectRegistry
|
||||
// (
|
||||
// IOobject
|
||||
// (
|
||||
// name,
|
||||
// obr.time().constant(),
|
||||
// obr,
|
||||
// IOobject::NO_READ,
|
||||
// IOobject::NO_WRITE
|
||||
// )
|
||||
// );
|
||||
// fieldsCachePtr->store();
|
||||
// }
|
||||
// return const_cast<objectRegistry&>(obr.subRegistry(name));
|
||||
//}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
} // End namespace Foam
|
||||
|
||||
Reference in New Issue
Block a user