41 const dictionary& dict
45 <<
"Selecting Filter: " << type << endl;
46 auto cstrIter = dictionaryConstructorTablePtr_->find(type);
48 if (cstrIter == dictionaryConstructorTablePtr_->end())
50 FatalIOErrorInFunction(dict)
52 << type << endl << endl
53 <<
"Valid Filters are : " << endl
54 << dictionaryConstructorTablePtr_->sortedToc()
55 << exit(FatalIOError);
58 return autoPtr<Filter>(cstrIter()(dict));