41 const dictionary& dict
44 Info <<
"Radial Basis Function interpolation: "
45 <<
"Selecting RBF function: " << type << endl;
46 auto cstrIter = dictionaryConstructorTablePtr_->find(type);
48 if (cstrIter == dictionaryConstructorTablePtr_->end())
50 FatalIOErrorInFunction(dict)
51 <<
"Unknown RBFFunction type "
52 << type << endl << endl
53 <<
"Valid RBFFunctions are : " << endl
54 << dictionaryConstructorTablePtr_->sortedToc()
55 << exit(FatalIOError);
58 return autoPtr<RBFFunction>(cstrIter()(dict.subDict(type +
"Coeffs")));