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 );
33 parser->parse(filename.c_str());
35 DOMDocument* xmlDoc = parser->getDocument();
37 std::cout <<
"EcalGainRatiosXMLTranslator::Error parsing document" << std::endl;
41 DOMElement* elementRoot = xmlDoc->getDocumentElement();
59 record[detid].setGain12Over6(g12_6);
60 record[detid].setGain6Over1(g6_1);
62 cellnode = cellnode->getNextSibling();
64 while(cellnode && cellnode->getNodeType() != DOMNode::ELEMENT_NODE)
65 cellnode = cellnode->getNextSibling();
79 std::fstream fs(filename.c_str(),
ios::out);
90 unique_ptr<DOMImplementation>
impl( DOMImplementationRegistry::getDOMImplementation(
cms::xerces::uStr(
"LS").ptr()));
92 DOMLSSerializer*
writer = impl->createLSSerializer();
93 if( writer->getDomConfig()->canSetParameter( XMLUni::fgDOMWRTFormatPrettyPrint,
true ))
94 writer->getDomConfig()->setParameter( XMLUni::fgDOMWRTFormatPrettyPrint,
true );
96 DOMDocumentType* doctype = impl->createDocumentType(
cms::xerces::uStr(
"XML").ptr(),
nullptr,
nullptr );
98 DOMElement*
root = doc->getDocumentElement();
109 if (record.
find(rawid) == record.
end())
continue;
110 if(!record[rawid].gain12Over6() && !record[rawid].gain6Over1())
continue;
112 DOMElement* cellnode=
writeCell(root,rawid);
127 if (record.
find(rawid) == record.
end())
continue;
128 if(!record[rawid].gain12Over6() && !record[rawid].gain6Over1())
continue;
130 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.
const std::string Gain12Over6_tag("Gain12Over6")