Skip to content
Snippets Groups Projects
Commit 501b6e66 authored by Tom Fischer's avatar Tom Fischer
Browse files

[MeL] Fix cppcheck 'arg. names diff.' warnings.

parent 1d216335
No related branches found
No related tags found
No related merge requests found
...@@ -41,11 +41,11 @@ public: ...@@ -41,11 +41,11 @@ public:
/** /**
* Calculates entries for the property vector and sets appropriate indices * Calculates entries for the property vector and sets appropriate indices
* in the mesh elements. * in the mesh elements.
* @param mesh the mesh the property information will be calculated and set * @param dest_mesh the mesh the property information will be calculated and
* via weighted interpolation * set via weighted interpolation
* @return true if the operation was successful, false on error * @return true if the operation was successful, false on error
*/ */
bool setPropertiesForMesh(Mesh& mesh) const; bool setPropertiesForMesh(Mesh& dest_mesh) const;
private: private:
/** /**
......
...@@ -21,11 +21,11 @@ ...@@ -21,11 +21,11 @@
#include "GeoLib/GEOObjects.h" #include "GeoLib/GEOObjects.h"
namespace MeshLib { namespace MeshLib
{
MeshElementGrid::MeshElementGrid(MeshLib::Mesh const& sfc_mesh) : MeshElementGrid::MeshElementGrid(MeshLib::Mesh const& mesh)
_aabb{sfc_mesh.getNodes().cbegin(), sfc_mesh.getNodes().cend()}, : _aabb{mesh.getNodes().cbegin(), mesh.getNodes().cend()},
_n_steps({{1,1,1}}) _n_steps({{1, 1, 1}})
{ {
auto getDimensions = auto getDimensions =
[](MathLib::Point3d const& min, MathLib::Point3d const& max) [](MathLib::Point3d const& min, MathLib::Point3d const& max)
...@@ -49,7 +49,7 @@ MeshElementGrid::MeshElementGrid(MeshLib::Mesh const& sfc_mesh) : ...@@ -49,7 +49,7 @@ MeshElementGrid::MeshElementGrid(MeshLib::Mesh const& sfc_mesh) :
std::array<double, 3> delta{{ max_pnt[0] - min_pnt[0], std::array<double, 3> delta{{ max_pnt[0] - min_pnt[0],
max_pnt[1] - min_pnt[1], max_pnt[2] - min_pnt[2] }}; max_pnt[1] - min_pnt[1], max_pnt[2] - min_pnt[2] }};
const std::size_t n_eles(sfc_mesh.getNumberOfElements()); const std::size_t n_eles(mesh.getNumberOfElements());
const std::size_t n_eles_per_cell(100); const std::size_t n_eles_per_cell(100);
// *** condition: n_eles / n_cells < n_eles_per_cell // *** condition: n_eles / n_cells < n_eles_per_cell
...@@ -98,7 +98,7 @@ MeshElementGrid::MeshElementGrid(MeshLib::Mesh const& sfc_mesh) : ...@@ -98,7 +98,7 @@ MeshElementGrid::MeshElementGrid(MeshLib::Mesh const& sfc_mesh) :
} }
_elements_in_grid_box.resize(_n_steps[0]*_n_steps[1]*_n_steps[2]); _elements_in_grid_box.resize(_n_steps[0]*_n_steps[1]*_n_steps[2]);
sortElementsInGridCells(sfc_mesh); sortElementsInGridCells(mesh);
} }
MathLib::Point3d const& MeshElementGrid::getMinPoint() const MathLib::Point3d const& MeshElementGrid::getMinPoint() const
...@@ -111,9 +111,10 @@ MathLib::Point3d const& MeshElementGrid::getMaxPoint() const ...@@ -111,9 +111,10 @@ MathLib::Point3d const& MeshElementGrid::getMaxPoint() const
return _aabb.getMaxPoint(); return _aabb.getMaxPoint();
} }
void MeshElementGrid::sortElementsInGridCells(MeshLib::Mesh const& sfc_mesh) void MeshElementGrid::sortElementsInGridCells(MeshLib::Mesh const& mesh)
{ {
for (auto const element : sfc_mesh.getElements()) { for (auto const element : mesh.getElements())
{
if (! sortElementInGridCells(*element)) { if (! sortElementInGridCells(*element)) {
OGS_FATAL("Sorting element (id={:d}) into mesh element grid.", OGS_FATAL("Sorting element (id={:d}) into mesh element grid.",
element->getID()); element->getID());
......
...@@ -75,7 +75,7 @@ public: ...@@ -75,7 +75,7 @@ public:
MathLib::Point3d const& getMaxPoint() const; MathLib::Point3d const& getMaxPoint() const;
private: private:
void sortElementsInGridCells(MeshLib::Mesh const& sfc_mesh); void sortElementsInGridCells(MeshLib::Mesh const& mesh);
bool sortElementInGridCells(MeshLib::Element const& element); bool sortElementInGridCells(MeshLib::Element const& element);
GeoLib::AABB _aabb; GeoLib::AABB _aabb;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment