BUG: runTimePostProcessing - updated due to changes in stateFunctionObject

This commit is contained in:
Andrew Heather
2016-11-08 14:36:14 +00:00
parent 91d5efdc38
commit 57d81c179c
2 changed files with 25 additions and 19 deletions

View File

@ -89,20 +89,23 @@ addGeometryToScene
return; return;
} }
const dictionary dict = dictionary dict;
geometryBase::parent_.getObjectProperty if (!geometryBase::parent_.getObjectDict(functionObject_, fieldName_, dict))
( {
functionObject_, WarningInFunction
fieldName_, << "Unable to find function object " << functionObject_
dictionary::null << " output for field " << fieldName_
); << ". Line will not be processed"
<< endl;
return;
}
fileName fName; fileName fName;
if (!dict.readIfPresent("file", fName)) if (!dict.readIfPresent("file", fName))
{ {
WarningInFunction WarningInFunction
<< "Unable to find function object " << functionObject_ << "Unable to read file name from function object "
<< " output for field " << fieldName_ << functionObject_ << " for field " << fieldName_
<< ". Line will not be processed" << ". Line will not be processed"
<< endl; << endl;
return; return;

View File

@ -93,21 +93,24 @@ addGeometryToScene
return; return;
} }
const dictionary dict = dictionary dict;
geometryBase::parent_.getObjectProperty if (!geometryBase::parent_.getObjectDict(functionObject_, fieldName_, dict))
( {
functionObject_, WarningInFunction
fieldName_, << "Unable to find function object " << functionObject_
dictionary::null << " output for field " << fieldName_
); << ". Surface will not be processed"
<< endl;
return;
}
fileName fName; fileName fName;
if (!dict.readIfPresent("file", fName)) if (!dict.readIfPresent("file", fName))
{ {
WarningInFunction WarningInFunction
<< "Unable to find function object " << functionObject_ << "Unable to read file name from function object "
<< " output for field " << fieldName_ << functionObject_ << " for field " << fieldName_
<< ". functionObjectSurface will not be processed" << ". Surface will not be processed"
<< endl; << endl;
return; return;
} }