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>
18 using namespace XERCES_CPP_NAMESPACE;
25 XercesDOMParser*
parser =
new XercesDOMParser;
26 parser->setValidationScheme(XercesDOMParser::Val_Never);
27 parser->setDoNamespaces(
false);
28 parser->setDoSchema(
false);
30 parser->parse(filename.c_str());
32 DOMDocument* xmlDoc = parser->getDocument();
34 std::cout <<
"EcalGainRatiosXMLTranslator::Error parsing document" << std::endl;
38 DOMElement* elementRoot = xmlDoc->getDocumentElement();
55 record[detid].setGain12Over6(g12_6);
56 record[detid].setGain6Over1(g6_1);
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);
91 DOMElement* root = doc->getDocumentElement();
99 if (record.
find(rawid) == record.
end())
101 if (!record[rawid].gain12Over6() && !record[rawid].gain6Over1())
104 DOMElement* cellnode =
writeCell(root, rawid);
118 if (record.
find(rawid) == record.
end())
120 if (!record[rawid].gain12Over6() && !record[rawid].gain6Over1())
123 DOMElement* cellnode =
writeCell(root, rawid);
static int readXML(const std::string &filename, EcalCondHeader &header, EcalGainRatios &record)
const std::string Gain6Over1_tag("Gain6Over1")
const Items & barrelItems() const
static EEDetId unhashIndex(int hi)
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
static bool validHashIndex(int i)
std::string toString(XMLCh const *toTranscode)
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
static int writeXML(const std::string &filename, const EcalCondHeader &header, const EcalGainRatios &record)
static const int MIN_HASH
const std::string Cell_tag("cell")
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
ZStr< XMLCh > uStr(char const *str)
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
static EBDetId unhashIndex(int hi)
get a DetId from a compact index for arrays
const_iterator find(uint32_t rawId) const
const_iterator end() const
static std::string dumpXML(const EcalCondHeader &header, const EcalGainRatios &record)
xercesc::DOMElement * writeCell(xercesc::DOMNode *node, const DetId &detid)
Append a Cell node with attributes to.
const std::string GainRatios_tag("EcalGainRatios")
const Items & endcapItems() const
const DetId readCellId(xercesc::DOMElement *node)
Assuming.
tuple dump
OutputFilePath = cms.string('/tmp/zhokin/'), OutputFileExt = cms.string(''),.
const std::string Gain12Over6_tag("Gain12Over6")