Skip to content
Snippets Groups Projects
Commit 80d95361 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

Merge pull request #69 from TomFischer/UsingLogogInMeshLib

Using logog in MeshLib.

Replace all of std::cout std::cerr.
parents e84dd304 5277cc75
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
* Created on 2012-05-02 by Karsten Rink * Created on 2012-05-02 by Karsten Rink
*/ */
#include "logog/include/logog.hpp"
#include "Element.h" #include "Element.h"
#include "Node.h" #include "Node.h"
#include "Edge.h" #include "Edge.h"
...@@ -74,7 +76,7 @@ const Element* Element::getEdge(unsigned i) const ...@@ -74,7 +76,7 @@ const Element* Element::getEdge(unsigned i) const
nodes[1] = const_cast<Node*>(getEdgeNode(i,1)); nodes[1] = const_cast<Node*>(getEdgeNode(i,1));
return new Edge(nodes); return new Edge(nodes);
} }
std::cerr << "Error in MeshLib::Element::getEdge() - Index does not exist." << std::endl; ERR("Error in MeshLib::Element::getEdge() - Index does not exist.");
return NULL; return NULL;
} }
...@@ -95,7 +97,7 @@ const Element* Element::getNeighbor(unsigned i) const ...@@ -95,7 +97,7 @@ const Element* Element::getNeighbor(unsigned i) const
{ {
if (i < getNNeighbors()) if (i < getNNeighbors())
return _neighbors[i]; return _neighbors[i];
std::cerr << "Error in MeshLib::Element::getNeighbor() - Index does not exist." << std::endl; ERR("Error in MeshLib::Element::getNeighbor() - Index does not exist.");
return NULL; return NULL;
} }
...@@ -112,7 +114,7 @@ const Node* Element::getNode(unsigned i) const ...@@ -112,7 +114,7 @@ const Node* Element::getNode(unsigned i) const
{ {
if (i < getNNodes()) if (i < getNNodes())
return _nodes[i]; return _nodes[i];
std::cerr << "Error in MeshLib::Element::getNode() - Index " << i << " in " << MshElemType2String(getGeomType()) << " does not exist." << std::endl; ERR("Error in MeshLib::Element::getNode() - Index %d in %s", i, MshElemType2String(getGeomType()).c_str());
return NULL; return NULL;
} }
...@@ -126,7 +128,7 @@ unsigned Element::getNodeIndex(unsigned i) const ...@@ -126,7 +128,7 @@ unsigned Element::getNodeIndex(unsigned i) const
{ {
if (i<getNNodes()) if (i<getNNodes())
return _nodes[i]->getID(); return _nodes[i]->getID();
std::cerr << "Error in MeshLib::Element::getNodeIndex() - Index does not exist." << std::endl; ERR("Error in MeshLib::Element::getNodeIndex() - Index does not exist.");
return std::numeric_limits<unsigned>::max(); return std::numeric_limits<unsigned>::max();
} }
......
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
* Created on 2012-05-02 by Karsten Rink * Created on 2012-05-02 by Karsten Rink
*/ */
#include "logog/include/logog.hpp"
#include "Node.h" #include "Node.h"
#include "Quad.h" #include "Quad.h"
#include "Prism.h" #include "Prism.h"
...@@ -101,7 +103,7 @@ const Element* TemplateHex<NNODES,CELLHEXTYPE>::getFace(unsigned i) const ...@@ -101,7 +103,7 @@ const Element* TemplateHex<NNODES,CELLHEXTYPE>::getFace(unsigned i) const
nodes[j] = _nodes[_face_nodes[i][j]]; nodes[j] = _nodes[_face_nodes[i][j]];
return new Quad(nodes); return new Quad(nodes);
} }
std::cerr << "Error in MeshLib::Element::getFace() - Index does not exist." << std::endl; ERR("Error in MeshLib::Element::getFace() - Index %d does not exist.", i);
return NULL; return NULL;
} }
...@@ -149,7 +151,7 @@ Element* TemplateHex<NNODES,CELLHEXTYPE>::reviseElement() const ...@@ -149,7 +151,7 @@ Element* TemplateHex<NNODES,CELLHEXTYPE>::reviseElement() const
} }
if (collapsed_edges.size() == 1) { if (collapsed_edges.size() == 1) {
std::cerr << "[TemplateHex<NNODES,CELLHEXTYPE>::reviseElement()] collapsing of one edge in hexahedron not handled" << std::endl; ERR("[TemplateHex<NNODES,CELLHEXTYPE>::reviseElement()] collapsing of one edge in hexahedron not handled.");
return NULL; return NULL;
} }
......
...@@ -10,6 +10,9 @@ ...@@ -10,6 +10,9 @@
* Created on 2012-05-02 by Karsten Rink * Created on 2012-05-02 by Karsten Rink
*/ */
// Thirdparty
#include "logog/include/logog.hpp"
#include "Node.h" #include "Node.h"
#include "Tri.h" #include "Tri.h"
#include "Pyramid.h" #include "Pyramid.h"
...@@ -100,7 +103,7 @@ const Element* TemplatePrism<NNODES,CELLPRISMTYPE>::getFace(unsigned i) const ...@@ -100,7 +103,7 @@ const Element* TemplatePrism<NNODES,CELLPRISMTYPE>::getFace(unsigned i) const
else else
return new Quad(nodes); return new Quad(nodes);
} }
std::cerr << "Error in MeshLib::Element::getFace() - Index does not exist." << std::endl; ERR("Error in MeshLib::Element::getFace() - Index %d does not exist.", i);
return NULL; return NULL;
} }
...@@ -109,7 +112,7 @@ unsigned TemplatePrism<NNODES,CELLPRISMTYPE>::getNFaceNodes(unsigned i) const ...@@ -109,7 +112,7 @@ unsigned TemplatePrism<NNODES,CELLPRISMTYPE>::getNFaceNodes(unsigned i) const
{ {
if (i<5) if (i<5)
return _n_face_nodes[i]; return _n_face_nodes[i];
std::cerr << "Error in MeshLib::Element::getNFaceNodes() - Index does not exist." << std::endl; ERR("Error in MeshLib::Element::getNFaceNodes() - Index %d does not exist.", i);
return 0; return 0;
} }
......
...@@ -10,6 +10,9 @@ ...@@ -10,6 +10,9 @@
* Created on 2012-05-02 by Karsten Rink * Created on 2012-05-02 by Karsten Rink
*/ */
// Thirdparty
#include "logog/include/logog.hpp"
#include "Node.h" #include "Node.h"
#include "Tri.h" #include "Tri.h"
#include "Tet.h" #include "Tet.h"
...@@ -102,7 +105,7 @@ const Element* TemplatePyramid<NNODES,CELLPYRAMIDTYPE>::getFace(unsigned i) cons ...@@ -102,7 +105,7 @@ const Element* TemplatePyramid<NNODES,CELLPYRAMIDTYPE>::getFace(unsigned i) cons
else else
return new Quad(nodes); return new Quad(nodes);
} }
std::cerr << "Error in MeshLib::Element::getFace() - Index does not exist." << std::endl; ERR("Error in MeshLib::Element::getFace() - Index %d does not exist.", i);
return NULL; return NULL;
} }
...@@ -111,7 +114,7 @@ unsigned TemplatePyramid<NNODES,CELLPYRAMIDTYPE>::getNFaceNodes(unsigned i) cons ...@@ -111,7 +114,7 @@ unsigned TemplatePyramid<NNODES,CELLPYRAMIDTYPE>::getNFaceNodes(unsigned i) cons
{ {
if (i<5) if (i<5)
return _n_face_nodes[i]; return _n_face_nodes[i];
std::cerr << "Error in MeshLib::Element::getNFaceNodes() - Index does not exist." << std::endl; ERR("Error in MeshLib::Element::getNFaceNodes() - Index %d does not exist.", i);
return 0; return 0;
} }
......
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
* Created on 2012-05-02 by Karsten Rink * Created on 2012-05-02 by Karsten Rink
*/ */
#include "logog/include/logog.hpp"
#include "Node.h" #include "Node.h"
#include "Tri.h" #include "Tri.h"
...@@ -90,7 +92,7 @@ const Element* TemplateTet<NNODES,CELLTETTYPE>::getFace(unsigned i) const ...@@ -90,7 +92,7 @@ const Element* TemplateTet<NNODES,CELLTETTYPE>::getFace(unsigned i) const
nodes[j] = _nodes[_face_nodes[i][j]]; nodes[j] = _nodes[_face_nodes[i][j]];
return new Tri(nodes); return new Tri(nodes);
} }
std::cerr << "Error in MeshLib::Element::getFace() - Index does not exist." << std::endl; ERR("Error in MeshLib::Element::getFace() - Index %d does not exist.", i);
return NULL; return NULL;
} }
......
...@@ -93,7 +93,7 @@ void Mesh::makeNodesUnique() ...@@ -93,7 +93,7 @@ void Mesh::makeNodesUnique()
} }
//set correct id for each node //set correct id for each node
//if (this->getDimension() > 1) //if (this->getDimension() > 1)
// this->removeMeshElements(MshElemType::EDGE); // this->removeMeshElements(MshElemType::EDGE);
...@@ -268,7 +268,7 @@ void Mesh::removeUnusedMeshNodes() ...@@ -268,7 +268,7 @@ void Mesh::removeUnusedMeshNodes()
} }
if (count) if (count)
{ {
std::cout << "Removed " << count << " unused mesh nodes." << std::endl; INFO("Removed %d unused mesh nodes.", count );
this->resetNodeIDs(); this->resetNodeIDs();
} }
} }
...@@ -276,8 +276,7 @@ void Mesh::removeUnusedMeshNodes() ...@@ -276,8 +276,7 @@ void Mesh::removeUnusedMeshNodes()
void Mesh::removeMeshElements(MshElemType::type t) void Mesh::removeMeshElements(MshElemType::type t)
{ {
unsigned count(0); unsigned count(0);
std::vector<MeshLib::Element*>::iterator it = this->_elements.begin(); for (std::vector<MeshLib::Element*>::iterator it = this->_elements.begin(); it != this->_elements.end();)
for (it; it != this->_elements.end();)
{ {
if ((*it)->getCellType() == t) if ((*it)->getCellType() == t)
{ {
...@@ -285,10 +284,10 @@ void Mesh::removeMeshElements(MshElemType::type t) ...@@ -285,10 +284,10 @@ void Mesh::removeMeshElements(MshElemType::type t)
it = this->_elements.erase(it); it = this->_elements.erase(it);
++count; ++count;
} }
else else
++it; ++it;
} }
std::cout << "Removed " << count << " elements of type " << MshElemType2String(t) << " from mesh." << std::endl; INFO("Removed %d elements of type %s from mesh.", count, MshElemType2String(t).c_str());
} }
} }
......
...@@ -74,7 +74,7 @@ Mesh* MeshCoarsener::operator()(double min_distance) ...@@ -74,7 +74,7 @@ Mesh* MeshCoarsener::operator()(double min_distance)
// two nodes are very close to each other // two nodes are very close to each other
id_map[test_node_id] = node_id_k; id_map[test_node_id] = node_id_k;
#ifndef NDEBUG #ifndef NDEBUG
INFO ("distance of nodes with ids %d and %d is %f", node_id_k, test_node_id, sqrt(MathLib::sqrDist(node->getCoords(), test_node->getCoords()))); INFO("distance of nodes with ids %d and %d is %f", node_id_k, test_node_id, sqrt(MathLib::sqrDist(node->getCoords(), test_node->getCoords())));
#endif #endif
} }
} }
...@@ -131,7 +131,7 @@ Mesh* MeshCoarsener::operator()(double min_distance) ...@@ -131,7 +131,7 @@ Mesh* MeshCoarsener::operator()(double min_distance)
const size_t orig_node_id (kth_orig_elem->getNode(i)->getID()); const size_t orig_node_id (kth_orig_elem->getNode(i)->getID());
std::map<size_t, size_t>::const_iterator it(orig_ids_map.find(orig_node_id)); std::map<size_t, size_t>::const_iterator it(orig_ids_map.find(orig_node_id));
if (it == orig_ids_map.end()) { if (it == orig_ids_map.end()) {
std::cerr << "[MeshCoarsener::operator()] could not found mesh node id" << std::endl; ERR("[MeshCoarsener::operator()] could not found mesh node id.");
} else { } else {
mapped_node_ids_of_element.push_back(id_map[it->second]); mapped_node_ids_of_element.push_back(id_map[it->second]);
} }
......
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