From 74196a49c6c5a1b66d2127695f29955ab13914de Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Wed, 5 Jul 2023 18:00:00 -0500 Subject: [PATCH] DetectorChecksum: fiix up quotes and spaces --- DDCore/src/plugins/DetectorChecksum.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DDCore/src/plugins/DetectorChecksum.cpp b/DDCore/src/plugins/DetectorChecksum.cpp index 7c5c7c584..5d284829a 100644 --- a/DDCore/src/plugins/DetectorChecksum.cpp +++ b/DDCore/src/plugins/DetectorChecksum.cpp @@ -546,9 +546,9 @@ const DetectorChecksum::entry_t& DetectorChecksum::handleSolid(Solid solid) cons except("DetectorChecksum","+++ TGeoTessellated volume with unsupported number of vertices: %s", solid.name()); } for (int ivertex = 0; ivertex < facet.GetNvert(); ivertex++) { - log << " vertex" << ivertex + 1 << "=\"" << nam << "_v" << facet.GetVertexIndex(ivertex); + log << " vertex" << ivertex + 1 << "=\"" << nam << "_v" << facet.GetVertexIndex(ivertex) << "\""; } - log << "type=\"ABSOLUTE\"/>" << newline; + log << " type=\"ABSOLUTE\"/>" << newline; } log << "</tessellated>" << newline; } -- GitLab