From 37e4b189c102f964175a2dd551b81421eb3e66e9 Mon Sep 17 00:00:00 2001
From: Tobias Meisel <tobias.meisel@ufz.de>
Date: Wed, 8 Dec 2021 16:46:00 +0100
Subject: [PATCH] [MeL/IO]: XDMF: cell type is 'Others' for integration points

---
 MeshLib/IO/XDMF/writeXdmf.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/MeshLib/IO/XDMF/writeXdmf.cpp b/MeshLib/IO/XDMF/writeXdmf.cpp
index 50742b7124d..ffe7f73db12 100644
--- a/MeshLib/IO/XDMF/writeXdmf.cpp
+++ b/MeshLib/IO/XDMF/writeXdmf.cpp
@@ -30,10 +30,10 @@ using namespace BaseLib;
 namespace MeshLib::IO
 {
 // similar definition in Location.h - XDMF uses capital letters
-// Actually there is no correspondece for "IntegrationPoint" in XDMF Format
-// specification
+// There is no correspondece for "IntegrationPoint" in XDMF Format
+// specification - add it as "Other"
 constexpr char const* mesh_item_type_strings[] = {"Node", "Edge", "Face",
-                                                  "Cell", "IntegrationPoint"};
+                                                  "Cell", "Other"};
 
 // Transforms MeshItemType into string
 static std::string meshItemTypeString(
-- 
GitLab