Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / applications / utilities / postProcessing / dataConversion / foamToEnsightParts / moveMesh.H
blob284a0df35bba33901eda224f1dffe7eeb3954f96
2     IOobject io
3     (
4         "points",
5         runTime.timeName(),
6         polyMesh::meshSubDir,
7         mesh
8     );
10     if (io.headerOk())
11     {
12         // Read new points
13         io.readOpt() = IOobject::MUST_READ;
14         mesh.movePoints(pointIOField(io));
15     }