From 828cb9326c653dc158942f238b65e61b1b395ee4 Mon Sep 17 00:00:00 2001 From: Andre Sailer <andre.philippe.sailer@cern.ch> Date: Thu, 25 Aug 2022 17:49:50 +0200 Subject: [PATCH] DDCore: DetectorInfo: make INFO attributes optional --- DDCore/src/plugins/Compact2Objects.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/DDCore/src/plugins/Compact2Objects.cpp b/DDCore/src/plugins/Compact2Objects.cpp index b7fb67e7e..498b215fb 100644 --- a/DDCore/src/plugins/Compact2Objects.cpp +++ b/DDCore/src/plugins/Compact2Objects.cpp @@ -368,12 +368,12 @@ template <> void Converter<Constant>::operator()(xml_h e) const { */ template <> void Converter<Header>::operator()(xml_h e) const { xml_comp_t c(e); - Header h(e.attr<string>(_U(name)), e.attr<string>(_U(title))); - h.setUrl(e.attr<string>(_U(url))); - h.setAuthor(e.attr<string>(_U(author))); - h.setStatus(e.attr<string>(_U(status))); - h.setVersion(e.attr<string>(_U(version))); - h.setComment(e.child(_U(comment)).text()); + Header h(e.attr<string>(_U(name)), e.attr<string>(_U(title), "Undefined")); + h.setUrl(e.attr<string>(_U(url), "Undefined")); + h.setAuthor(e.attr<string>(_U(author), "Undefined")); + h.setStatus(e.attr<string>(_U(status), "development")); + h.setVersion(e.attr<string>(_U(version), "Undefined")); + h.setComment(e.hasChild(_U(comment)) ? e.child(_U(comment)).text() : "No Comment"); description.setHeader(h); } -- GitLab