Skip to content
Snippets Groups Projects
Commit e9a37fee authored by Henry Weller's avatar Henry Weller
Browse files

postProcess: catch missing field errors to process further time-directories

parent 6b1a55dc
Branches
Tags
1 merge request!60Merge foundation
......@@ -105,20 +105,20 @@ if (argList::postProcess(argc, argv))
functionObjectList::New(args, runTime, functionObjectsDict);
}
#include INCLUDE_FILE(CREATE_FIELDS)
#ifdef CREATE_FIELDS_2
#include INCLUDE_FILE(CREATE_FIELDS_2)
#endif
#ifdef CREATE_FIELDS_3
#include INCLUDE_FILE(CREATE_FIELDS_3)
#endif
FatalIOError.throwExceptions();
try
{
#include INCLUDE_FILE(CREATE_FIELDS)
#ifdef CREATE_FIELDS_2
#include INCLUDE_FILE(CREATE_FIELDS_2)
#endif
#ifdef CREATE_FIELDS_3
#include INCLUDE_FILE(CREATE_FIELDS_3)
#endif
functionObjectsPtr->execute(true);
}
catch (IOerror& err)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment