From 77913b2efa5dc617babe703c17e675037b661e60 Mon Sep 17 00:00:00 2001 From: henry Date: Thu, 23 Oct 2008 23:03:11 +0100 Subject: [PATCH] Same change as before again. --- src/finiteVolume/fvMesh/fvMesh.C | 148 ------------------------------- 1 file changed, 148 deletions(-) diff --git a/src/finiteVolume/fvMesh/fvMesh.C b/src/finiteVolume/fvMesh/fvMesh.C index 6e95513b1f..3438e54bfe 100644 --- a/src/finiteVolume/fvMesh/fvMesh.C +++ b/src/finiteVolume/fvMesh/fvMesh.C @@ -42,15 +42,9 @@ License #include "extendedLeastSquaresVectors.H" #include "extendedLeastSquaresVectors.H" #include "leastSquaresVectors.H" -<<<<<<< HEAD:src/finiteVolume/fvMesh/fvMesh.C #include "CentredFitData.H" #include "linearFitPolynomial.H" #include "quadraticLinearFitPolynomial.H" -======= -//#include "linearFitData.H" -//#include "quadraticFitData.H" -//#include "quadraticFitSnGradData.H" ->>>>>>> a5197e512825ed4dd1a45d45c1706c8b56f61489:src/finiteVolume/fvMesh/fvMesh.C #include "skewCorrectionVectors.H" #include "centredCECStencilObject.H" @@ -100,14 +94,8 @@ void Foam::fvMesh::clearGeom() extendedLeastSquaresVectors::Delete(*this); extendedLeastSquaresVectors::Delete(*this); leastSquaresVectors::Delete(*this); -<<<<<<< HEAD:src/finiteVolume/fvMesh/fvMesh.C CentredFitData::Delete(*this); CentredFitData::Delete(*this); -======= - //linearFitData::Delete(*this); - //quadraticFitData::Delete(*this); - //quadraticFitSnGradData::Delete(*this); ->>>>>>> a5197e512825ed4dd1a45d45c1706c8b56f61489:src/finiteVolume/fvMesh/fvMesh.C skewCorrectionVectors::Delete(*this); } @@ -122,14 +110,8 @@ void Foam::fvMesh::clearAddressing() extendedLeastSquaresVectors::Delete(*this); extendedLeastSquaresVectors::Delete(*this); leastSquaresVectors::Delete(*this); -<<<<<<< HEAD:src/finiteVolume/fvMesh/fvMesh.C CentredFitData::Delete(*this); CentredFitData::Delete(*this); -======= - //linearFitData::Delete(*this); - //quadraticFitData::Delete(*this); - //quadraticFitSnGradData::Delete(*this); ->>>>>>> a5197e512825ed4dd1a45d45c1706c8b56f61489:src/finiteVolume/fvMesh/fvMesh.C skewCorrectionVectors::Delete(*this); centredCECStencilObject::Delete(*this); @@ -680,142 +662,12 @@ Foam::tmp Foam::fvMesh::movePoints(const pointField& p) // Hack until proper callbacks. Below are all the fvMesh MeshObjects with a // movePoints function. -<<<<<<< HEAD:src/finiteVolume/fvMesh/fvMesh.C MeshObjectMovePoints(*this); MeshObjectMovePoints(*this); MeshObjectMovePoints(*this); MeshObjectMovePoints >(*this); MeshObjectMovePoints >(*this); MeshObjectMovePoints(*this); -======= - - // volPointInterpolation - if - ( - db().objectRegistry::foundObject - ( - volPointInterpolation::typeName - ) - ) - { - const_cast - ( - db().objectRegistry::lookupObject - ( - volPointInterpolation::typeName - ) - ).movePoints(); - } - - // extendedLeastSquaresVectors - if - ( - db().objectRegistry::foundObject - ( - extendedLeastSquaresVectors::typeName - ) - ) - { - const_cast - ( - db().objectRegistry::lookupObject - ( - extendedLeastSquaresVectors::typeName - ) - ).movePoints(); - } - - // leastSquaresVectors - if - ( - db().objectRegistry::foundObject - ( - leastSquaresVectors::typeName - ) - ) - { - const_cast - ( - db().objectRegistry::lookupObject - ( - leastSquaresVectors::typeName - ) - ).movePoints(); - } - - //// linearFitData - //if - //( - // db().objectRegistry::foundObject - // ( - // linearFitData::typeName - // ) - //) - //{ - // const_cast - // ( - // db().objectRegistry::lookupObject - // ( - // linearFitData::typeName - // ) - // ).movePoints(); - //} - - //// quadraticFitData - //if - //( - // db().objectRegistry::foundObject - // ( - // quadraticFitData::typeName - // ) - //) - //{ - // const_cast - // ( - // db().objectRegistry::lookupObject - // ( - // quadraticFitData::typeName - // ) - // ).movePoints(); - //} - - //// quadraticFitSnGradData - //if - //( - // db().objectRegistry::foundObject - // ( - // quadraticFitSnGradData::typeName - // ) - //) - //{ - // const_cast - // ( - // db().objectRegistry::lookupObject - // ( - // quadraticFitSnGradData::typeName - // ) - // ).movePoints(); - //} - - // skewCorrectionVectors - if - ( - db().objectRegistry::foundObject - ( - skewCorrectionVectors::typeName - ) - ) - { - const_cast - ( - db().objectRegistry::lookupObject - ( - skewCorrectionVectors::typeName - ) - ).movePoints(); - } - ->>>>>>> a5197e512825ed4dd1a45d45c1706c8b56f61489:src/finiteVolume/fvMesh/fvMesh.C return tsweptVols; }