initial commit for version 1.6.x patch release
[OpenFOAM-1.6.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     }