4 #include <xercesc/dom/DOMNode.hpp>
5 #include <xercesc/dom/DOM.hpp>
6 #include <xercesc/parsers/XercesDOMParser.hpp>
7 #include <xercesc/util/PlatformUtils.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;
37 XMLPlatformUtils::Initialize();
39 XercesDOMParser*
parser =
new XercesDOMParser;
40 parser->setValidationScheme( XercesDOMParser::Val_Never );
41 parser->setDoNamespaces(
false );
42 parser->setDoSchema(
false );
44 parser->parse(filename.c_str());
46 DOMDocument* xmlDoc = parser->getDocument();
48 std::cout <<
"EcalLaserAPDPNRatiosXMLTranslator::Error parsing document" << std::endl;
52 DOMElement* elementRoot = xmlDoc->getDocumentElement();
96 cellnode = cellnode->getNextSibling();
98 while(cellnode && cellnode->getNodeType() != DOMNode::ELEMENT_NODE)
99 cellnode = cellnode->getNextSibling();
105 XMLPlatformUtils::Terminate();
118 std::fstream fs(filename.c_str(),
ios::out);
129 XMLPlatformUtils::Initialize();
131 DOMImplementation* impl =
132 DOMImplementationRegistry::getDOMImplementation(
fromNative(
"LS").c_str());
134 DOMWriter* writer =
static_cast<DOMImplementationLS*
>(impl)->createDOMWriter( );
135 writer->setFeature(XMLUni::fgDOMWRTFormatPrettyPrint,
true);
137 DOMDocumentType* doctype = impl->createDocumentType(
fromNative(
"XML").c_str(), 0, 0 );
142 doc->setEncoding(
fromNative(
"UTF-8").c_str() );
143 doc->setStandalone(
true);
147 DOMElement*
root = doc->getDocumentElement();
158 DOMElement* cellnode=
writeCell(root,rawid);
190 DOMElement* cellnode=
writeCell(root,rawid);
212 std::string
dump=
toNative(writer->writeToString(*root));
static int readXML(const std::string &filename, EcalCondHeader &header, EcalLaserAPDPNRatios &record)
static std::string dumpXML(const EcalCondHeader &header, const EcalLaserAPDPNRatios &record)
const std::string Laser_p3_tag("p3")
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)
const EcalLaserAPDPNRatiosMap & getLaserMap() const
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
static const int MIN_HASH
const std::string Cell_tag("cell")
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
const std::string Laser_p1_tag("p1")
static int writeXML(const std::string &filename, const EcalCondHeader &header, const EcalLaserAPDPNRatios &record)
const std::string Laser_tag("EcalLaserAPDPNRatios")
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
void setValue(uint32_t rawId, const EcalLaserAPDPNpair &value)
const std::string Laser_p2_tag("p2")
XercesString fromNative(const char *str)
xercesc::DOMElement * writeCell(xercesc::DOMNode *node, const DetId &detid)
Append a Cell node with attributes to.
const DetId readCellId(xercesc::DOMElement *node)
Assuming.
std::string toNative(const XMLCh *str)
string root
initialization