Make pointLevel and cellLevel labelIOField for consistency

This commit is contained in:
Hrvoje Jasak 2019-06-02 19:24:13 +01:00
parent d5167a6d5d
commit b2c5b1f561

View file

@ -48,6 +48,7 @@ License
#include "processorPointPatch.H"
#include "globalIndex.H"
#include "meshTools.H"
#include "labelIOField.H"
#include "OFstream.H"
#include "geomDecomp.H"
#include "Random.H"
@ -860,7 +861,7 @@ Foam::meshRefinement::meshRefinement
meshCutter_
(
mesh,
labelIOList
labelIOField
(
IOobject
(
@ -872,9 +873,9 @@ Foam::meshRefinement::meshRefinement
IOobject::NO_WRITE,
false
),
labelList(mesh_.nCells(), 0)
labelField(mesh_.nCells(), 0)
),
labelIOList
labelIOField
(
IOobject
(
@ -886,7 +887,7 @@ Foam::meshRefinement::meshRefinement
IOobject::NO_WRITE,
false
),
labelList(mesh_.nPoints(), 0)
labelField(mesh_.nPoints(), 0)
),
refinementHistory
(