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> 30 XercesDOMParser*
parser =
new XercesDOMParser;
31 parser->setValidationScheme( XercesDOMParser::Val_Never );
32 parser->setDoNamespaces(
false );
33 parser->setDoSchema(
false );
35 parser->parse(filename.c_str());
37 DOMDocument* xmlDoc = parser->getDocument();
39 std::cout <<
"EcalPedestalsXMLTranslator::Error parsing document" << std::endl;
43 DOMElement* elementRoot = xmlDoc->getDocumentElement();
86 record[detid].mean_x12 = mean12;
87 record[detid].mean_x6 = mean6;
88 record[detid].mean_x1 = mean1;
89 record[detid].rms_x12 = rms12;
90 record[detid].rms_x6 = rms6;
91 record[detid].rms_x1 = rms1;
93 cellnode = cellnode->getNextSibling();
95 while(cellnode && cellnode->getNodeType() != DOMNode::ELEMENT_NODE)
96 cellnode = cellnode->getNextSibling();
102 std::cout <<
" nb of channels found in xml file " << chan << std::endl;
111 std::fstream fs(filename.c_str(),
ios::out);
122 unique_ptr<DOMImplementation>
impl( DOMImplementationRegistry::getDOMImplementation(
cms::xerces::uStr(
"LS").ptr()));
124 DOMLSSerializer*
writer = impl->createLSSerializer();
125 if( writer->getDomConfig()->canSetParameter( XMLUni::fgDOMWRTFormatPrettyPrint,
true ))
126 writer->getDomConfig()->setParameter( XMLUni::fgDOMWRTFormatPrettyPrint,
true );
128 DOMDocumentType* doctype = impl->createDocumentType(
cms::xerces::uStr(
"XML").ptr(),
nullptr,
nullptr );
132 DOMElement*
root = doc->getDocumentElement();
141 if (record.
find(rawid) == record.
end())
continue;
142 if(!record[rawid].mean_x12 && !record[rawid].rms_x12)
continue;
144 DOMElement* cellnode=
writeCell(root,rawid);
162 if (record.
find(rawid) == record.
end())
continue;
163 if(!record[rawid].mean_x12 && !record[rawid].rms_x12)
continue;
165 DOMElement* cellnode=
writeCell(root,rawid);
const std::string mean12_tag("mean_x12")
static int readXML(const std::string &filename, EcalCondHeader &header, EcalPedestals &record)
const Items & barrelItems() const
static EEDetId unhashIndex(int hi)
const std::string mean1_tag("mean_x1")
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
static bool validHashIndex(int i)
static std::string dumpXML(const EcalCondHeader &header, const EcalPedestals &record)
std::string toString(XMLCh const *toTranscode)
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
static const int MIN_HASH
const std::string Cell_tag("cell")
const std::string Pedestals_tag("EcalPedestals")
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
const std::string mean6_tag("mean_x6")
chan
lumi = TPaveText(lowX+0.38, lowY+0.061, lowX+0.45, lowY+0.161, "NDC") lumi.SetBorderSize( 0 ) lumi...
static EBDetId unhashIndex(int hi)
get a DetId from a compact index for arrays
const_iterator find(uint32_t rawId) const
const std::string rms12_tag("rms_x12")
const std::string rms6_tag("rms_x6")
const_iterator end() const
xercesc::DOMElement * writeCell(xercesc::DOMNode *node, const DetId &detid)
Append a Cell node with attributes to.
const Items & endcapItems() const
static int writeXML(const std::string &filename, const EcalCondHeader &header, const EcalPedestals &record)
const std::string rms1_tag("rms_x1")
const DetId readCellId(xercesc::DOMElement *node)
Assuming.