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>
19 using namespace XERCES_CPP_NAMESPACE;
36 XercesDOMParser*
parser =
new XercesDOMParser;
37 parser->setValidationScheme( XercesDOMParser::Val_Never );
38 parser->setDoNamespaces(
false );
39 parser->setDoSchema(
false );
41 parser->parse(filename.c_str());
43 DOMDocument* xmlDoc = parser->getDocument();
45 std::cout <<
"EcalGainRatiosXMLTranslator::Error parsing document" << std::endl;
49 DOMElement* elementRoot = xmlDoc->getDocumentElement();
67 record[detid].setGain12Over6(g12_6);
68 record[detid].setGain6Over1(g6_1);
70 cellnode = cellnode->getNextSibling();
72 while(cellnode && cellnode->getNodeType() != DOMNode::ELEMENT_NODE)
73 cellnode = cellnode->getNextSibling();
91 std::fstream fs(filename.c_str(),
ios::out);
101 DOMImplementation* impl =
102 DOMImplementationRegistry::getDOMImplementation(
fromNative(
"LS").c_str());
104 DOMWriter* writer =
static_cast<DOMImplementationLS*
>(impl)->createDOMWriter( );
105 writer->setFeature(XMLUni::fgDOMWRTFormatPrettyPrint,
true);
107 DOMDocumentType* doctype = impl->createDocumentType(
fromNative(
"XML").c_str(), 0, 0 );
112 doc->setEncoding(
fromNative(
"UTF-8").c_str() );
113 doc->setStandalone(
true);
117 DOMElement*
root = doc->getDocumentElement();
130 if (record.
find(rawid) == record.
end())
continue;
131 if(!record[rawid].gain12Over6() && !record[rawid].gain6Over1())
continue;
133 DOMElement* cellnode=
writeCell(root,rawid);
148 if (record.
find(rawid) == record.
end())
continue;
149 if(!record[rawid].gain12Over6() && !record[rawid].gain6Over1())
continue;
151 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)
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
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
XercesString fromNative(const char *str)
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.
std::string toNative(const XMLCh *str)
const std::string Gain12Over6_tag("Gain12Over6")