4 #include <xercesc/dom/DOMNode.hpp>
5 #include <xercesc/dom/DOM.hpp>
6 #include <xercesc/parsers/XercesDOMParser.hpp>
8 #include <xercesc/util/XMLString.hpp>
9 #include <xercesc/sax/SAXException.hpp>
10 #include <xercesc/framework/LocalFileFormatTarget.hpp>
17 using namespace XERCES_CPP_NAMESPACE;
30 XercesDOMParser*
parser =
new XercesDOMParser;
31 parser->setValidationScheme( XercesDOMParser::Val_Never );
32 parser->setDoNamespaces(
false );
33 parser->setDoSchema(
false );
35 parser->parse(filename.c_str());
37 DOMDocument* xmlDoc = parser->getDocument();
39 std::cout <<
"EcalTimeOffsetXMLTranslator::Error parsing document" << std::endl;
44 DOMElement* elementRoot = xmlDoc->getDocumentElement();
75 std::fstream fs(filename.c_str(),
ios::out);
86 DOMImplementation* impl =
87 DOMImplementationRegistry::getDOMImplementation(
fromNative(
"LS").c_str());
89 DOMWriter* writer =
static_cast<DOMImplementationLS*
>(impl)->createDOMWriter( );
90 writer->setFeature(XMLUni::fgDOMWRTFormatPrettyPrint,
true);
92 DOMDocumentType* doctype = impl->createDocumentType(
fromNative(
"XML").c_str(), 0, 0 );
97 doc->setEncoding(
fromNative(
"UTF-8").c_str() );
98 doc->setStandalone(
true);
101 DOMElement*
root = doc->getDocumentElement();
static std::string dumpXML(const EcalCondHeader &header, const EcalTimeOffsetConstant &record)
static int readXML(const std::string &filename, EcalCondHeader &header, EcalTimeOffsetConstant &record)
const std::string TimeOffsetConstant_tag("EcalTimeOffsetConstant")
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
void setEEValue(const float &value)
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
static int writeXML(const std::string &filename, const EcalCondHeader &header, const EcalTimeOffsetConstant &record)
void GetNodeData(xercesc::DOMNode *node, T &value)
get the node data
xercesc::DOMNode * getChildNode(xercesc::DOMNode *node, const std::string &nodename)
get the child of
XercesString fromNative(const char *str)
const std::string Endcap_tag("EndcapValue")
void setEBValue(const float &value)
const std::string Barrel_tag("BarrelValue")
std::string toNative(const XMLCh *str)
string root
initialization