#include "GaudiKernel/DeclareFactoryEntries.h"
#include "GaudiKernel/MsgStream.h"
#include <xercesc/dom/DOMElement.hpp>
#include <xercesc/dom/DOMNodeList.hpp>
#include "XmlTools/IXmlSvc.h"
#include <DetDesc/ILVolume.h>
#include "SimulationSvc.h"
Include dependency graph for SimulationSvc.cpp:
Go to the source code of this file.
Functions | |
DECLARE_SERVICE_FACTORY (SimulationSvc) | |
const std::string | dom2Std (const XMLCh *domString) |
const std::string dom2Std | ( | const XMLCh * | domString | ) |
Definition at line 29 of file SimulationSvc.cpp.
00029 { 00030 char *cString = xercesc::XMLString::transcode(domString); 00031 std::string stdString; 00032 if (cString) { 00033 stdString = cString; 00034 xercesc::XMLString::release(&cString); 00035 } 00036 return stdString; 00037 }