{ IOobject io ( "points", runTime.timeName(), polyMesh::meshSubDir, mesh ); if (io.headerOk()) { // Read new points io.readOpt() = IOobject::MUST_READ; pointIOField newPoints(io); mesh.movePoints(newPoints); } }