|
|
Go to the documentation of this file.
4 #include <xercesc/dom/DOMNode.hpp>
5 #include <xercesc/dom/DOM.hpp>
6 #include <xercesc/parsers/XercesDOMParser.hpp>
9 #include <xercesc/util/XMLString.hpp>
10 #include <xercesc/sax/SAXException.hpp>
11 #include <xercesc/framework/LocalFileFormatTarget.hpp>
28 XercesDOMParser*
parser =
new XercesDOMParser;
29 parser->setValidationScheme(XercesDOMParser::Val_Never);
30 parser->setDoNamespaces(
false);
31 parser->setDoSchema(
false);
35 DOMDocument* xmlDoc =
parser->getDocument();
37 std::cout <<
"EcalChannelStatusXMLTranslator::Error parsing document" << std::endl;
41 DOMElement* elementRoot = xmlDoc->getDocumentElement();
58 cellnode = cellnode->getNextSibling();
60 while (cellnode && cellnode->getNodeType() != DOMNode::ELEMENT_NODE)
61 cellnode = cellnode->getNextSibling();
83 unique_ptr<DOMImplementation>
impl(DOMImplementationRegistry::getDOMImplementation(
cms::xerces::uStr(
"LS").ptr()));
85 DOMLSSerializer*
writer =
impl->createLSSerializer();
86 if (
writer->getDomConfig()->canSetParameter(XMLUni::fgDOMWRTFormatPrettyPrint,
true))
87 writer->getDomConfig()->setParameter(XMLUni::fgDOMWRTFormatPrettyPrint,
true);
89 DOMDocumentType* doctype =
impl->createDocumentType(
cms::xerces::uStr(
"XML").ptr(),
nullptr,
nullptr);
92 DOMElement*
root =
doc->getDocumentElement();
99 if (!
record[rawid].getStatusCode())
113 if (!
record[rawid].getStatusCode())
xercesc::DOMNode * getChildNode(xercesc::DOMNode *node, const std::string &nodename)
get the child of
static int readXML(const std::string &filename, EcalCondHeader &header, EcalChannelStatus &record)
static std::string dumpXML(const EcalCondHeader &header, const EcalChannelStatus &record)
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
xercesc::DOMElement * writeCell(xercesc::DOMNode *node, const DetId &detid)
Append a Cell node with attributes to.
static EEDetId unhashIndex(int hi)
static EBDetId unhashIndex(int hi)
get a DetId from a compact index for arrays
std::string toString(XMLCh const *toTranscode)
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
const std::string ChannelStatusCode_tag("ChannelStatusCode")
const std::string ChannelStatus_tag("EcalChannelStatus")
static bool validHashIndex(int i)
ZStr< XMLCh > uStr(char const *str)
const DetId readCellId(xercesc::DOMElement *node)
Assuming.
static const int MIN_HASH
static int writeXML(const std::string &filename, const EcalCondHeader &header, const EcalChannelStatus &record)
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
const std::string Cell_tag("cell")
void GetNodeData(xercesc::DOMNode *node, T &value)
get the node data