From 89c9aa21f3334a0462e7cc40f186efe7d1e6e0d1 Mon Sep 17 00:00:00 2001
From: Frank Gaede <frank.gaede@desy.de>
Date: Wed, 21 May 2014 07:36:26 +0000
Subject: [PATCH]  - made compatible with Xerces (using _Unicode() for "" in
 xml attributes)

---
 examples/ILDExDet/src/ILDExTPC_geo.cpp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/examples/ILDExDet/src/ILDExTPC_geo.cpp b/examples/ILDExDet/src/ILDExTPC_geo.cpp
index 49a0a965d..53026db3b 100644
--- a/examples/ILDExDet/src/ILDExTPC_geo.cpp
+++ b/examples/ILDExDet/src/ILDExTPC_geo.cpp
@@ -58,8 +58,9 @@ static Ref_t create_element(LCDD& lcdd, xml_h e, SensitiveDetector sens)  {
 
   //-------- global gear parameters ----------------
 
-  g_driftlength = x_global.attr<double>("driftLength") ;
-  g_padWidth = x_global.attr<double>("padWidth") ;
+  g_driftlength = x_global.attr<double>(_Unicode(driftLength) ) ;
+
+  g_padWidth = x_global.attr<double>(_Unicode(padWidth)) ;
 
   //-------- global gear parameters ----------------
 
-- 
GitLab