#include <EcalADCToGeVXMLTranslator.h>
Definition at line 18 of file EcalADCToGeVXMLTranslator.h.
◆ dumpXML()
Definition at line 73 of file EcalADCToGeVXMLTranslator.cc.
References xuti::ADCToGeVConstant_tag(), xuti::Barrel_tag(), ALCARECOEcalPhiSym_cff::doc, GCP_Ntuples_cfg::dump, xuti::Endcap_tag(), RecoTauValidation_cfi::header, Hcal_FrontierConditions_cff::record, AlCaHLTBitMon_QueryRunRegistry::string, cms::xerces::toString(), cms::xerces::uStr(), xuti::writeHeader(), xuti::WriteNodeWithValue(), and convertToRaw::writer.
74 unique_ptr<DOMImplementation>
impl(DOMImplementationRegistry::getDOMImplementation(
cms::xerces::uStr(
"LS").ptr()));
76 DOMLSSerializer*
writer =
impl->createLSSerializer();
77 if (
writer->getDomConfig()->canSetParameter(XMLUni::fgDOMWRTFormatPrettyPrint,
true))
78 writer->getDomConfig()->setParameter(XMLUni::fgDOMWRTFormatPrettyPrint,
true);
80 DOMDocumentType* doctype =
impl->createDocumentType(
cms::xerces::uStr(
"XML").ptr(),
nullptr,
nullptr);
83 DOMElement*
root =
doc->getDocumentElement();
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
std::string toString(XMLCh const *toTranscode)
const std::string ADCToGeVConstant_tag("EcalADCToGeVConstant")
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
ZStr< XMLCh > uStr(char const *str)
const std::string Endcap_tag("EndcapValue")
const std::string Barrel_tag("BarrelValue")
◆ readXML()
Definition at line 20 of file EcalADCToGeVXMLTranslator.cc.
References xuti::Barrel_tag(), gather_cfg::cout, xuti::Endcap_tag(), corrVsCorr::filename, xuti::getChildNode(), xuti::GetNodeData(), RecoTauValidation_cfi::header, writedatasetfile::parser, xuti::readHeader(), Hcal_FrontierConditions_cff::record, cms::concurrency::xercesInitialize(), and cms::concurrency::xercesTerminate().
25 XercesDOMParser*
parser =
new XercesDOMParser;
26 parser->setValidationScheme(XercesDOMParser::Val_Never);
27 parser->setDoNamespaces(
false);
28 parser->setDoSchema(
false);
32 DOMDocument* xmlDoc =
parser->getDocument();
34 std::cout <<
"EcalADCToGeVXMLTranslator::Error parsing document" << std::endl;
39 DOMElement* elementRoot = xmlDoc->getDocumentElement();
46 double barrelvalue = 0;
47 double endcapvalue = 0;
52 record.setEBValue(barrelvalue);
53 record.setEEValue(endcapvalue);
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
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 Endcap_tag("EndcapValue")
const std::string Barrel_tag("BarrelValue")
◆ writeXML()