Skip to content
Snippets Groups Projects
Commit a356bf35 authored by Chris Cantwell's avatar Chris Cantwell
Browse files

Changed over VtkToFld to use FieldIO object directly.

parent 69a5a4e4
No related branches found
No related tags found
No related merge requests found
......@@ -279,7 +279,9 @@ int main(int argc, char* argv[])
FieldDef[i]->m_fields.push_back(outname);
Exp->AppendFieldData(FieldDef[i], FieldData[i]);
}
LibUtilities::Write(outfile, FieldDef, FieldData);
LibUtilities::FieldIO vFld(vSession->GetComm());
vFld.Write(outfile, FieldDef, FieldData);
//-----------------------------------------------
}
catch (...) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment