32 const dictionary& dict
35 word extrudeModelType(dict.lookup(
"extrudeModel"));
37 Info<<
"Selecting extrudeModel " << extrudeModelType <<
endl;
39 dictionaryConstructorTable::iterator cstrIter =
40 dictionaryConstructorTablePtr_->find(extrudeModelType);
42 if (cstrIter == dictionaryConstructorTablePtr_->end())
45 <<
"Unknown extrudeModelType type "
47 <<
", constructor not in hash table" <<
nl <<
nl
48 <<
" Valid extrudeModel types are :" <<
nl
49 << dictionaryConstructorTablePtr_->sortedToc() <<
nl
53 return autoPtr<extrudeModel>(cstrIter()(dict));