CMS 3D CMS Logo

List of all members | Static Public Member Functions | Static Private Member Functions
EcalTimeBiasCorrectionsXMLTranslator Class Reference

#include <EcalTimeBiasCorrectionsXMLTranslator.h>

Static Public Member Functions

static int readXML (const std::string &filename, EcalCondHeader &header, EcalTimeBiasCorrections &record)
 
static int writeXML (const std::string &filename, const EcalCondHeader &header, const EcalTimeBiasCorrections &record)
 

Static Private Member Functions

static std::string dumpXML (const EcalCondHeader &header, const EcalTimeBiasCorrections &record)
 

Detailed Description

Definition at line 13 of file EcalTimeBiasCorrectionsXMLTranslator.h.

Member Function Documentation

◆ dumpXML()

std::string EcalTimeBiasCorrectionsXMLTranslator::dumpXML ( const EcalCondHeader header,
const EcalTimeBiasCorrections record 
)
staticprivate

Definition at line 62 of file EcalTimeBiasCorrectionsXMLTranslator.cc.

References hcalRecHitTable_cff::doc, GCP_Ntuples_cfg::dump, RecoTauValidation_cfi::header, xuti::IntercalibConstants_tag(), AlCaHarvesting_cff::record, AlCaHLTBitMon_QueryRunRegistry::string, cms::xerces::toString(), cms::xerces::uStr(), xuti::Value_tag(), xuti::writeHeader(), xuti::WriteNodeWithValue(), and convertToRaw::writer.

63  {
64  unique_ptr<DOMImplementation> impl(DOMImplementationRegistry::getDOMImplementation(cms::xerces::uStr("LS").ptr()));
65 
66  DOMLSSerializer* writer = impl->createLSSerializer();
67  if (writer->getDomConfig()->canSetParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true))
68  writer->getDomConfig()->setParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true);
69 
70  DOMDocumentType* doctype = impl->createDocumentType(cms::xerces::uStr("XML").ptr(), nullptr, nullptr);
71  DOMDocument* doc = impl->createDocument(nullptr, cms::xerces::uStr(IntercalibConstants_tag.c_str()).ptr(), doctype);
72  DOMElement* root = doc->getDocumentElement();
73 
75 
76  std::vector<float> vect = record.EBTimeCorrAmplitudeBins;
77  std::vector<float>::iterator it;
78 
79  std::string ETCAB_tag = "EBTimeCorrAmplitudeBins";
80  // std::cout << ETCAB_tag << vect.size()<< "\n";
81  DOMElement* ETCAB = root->getOwnerDocument()->createElement(cms::xerces::uStr(ETCAB_tag.c_str()).ptr());
82  root->appendChild(ETCAB);
83  for (it = vect.begin(); it != vect.end(); it++) {
84  // std::cout << *it << " ";
85  WriteNodeWithValue(ETCAB, Value_tag, *it);
86  }
87  // std::cout << "\n";
88  vect = record.EBTimeCorrShiftBins;
89  ETCAB_tag = "EBTimeCorrShiftBins";
90  // std::cout << ETCAB_tag << vect.size()<< "\n";
91  ETCAB = root->getOwnerDocument()->createElement(cms::xerces::uStr(ETCAB_tag.c_str()).ptr());
92  root->appendChild(ETCAB);
93  for (it = vect.begin(); it != vect.end(); it++) {
94  // std::cout << *it << " ";
95  WriteNodeWithValue(ETCAB, Value_tag, *it);
96  }
97  // std::cout << "\n";
98  vect = record.EETimeCorrAmplitudeBins;
99  ETCAB_tag = "EETimeCorrAmplitudeBins";
100  // std::cout << ETCAB_tag << vect.size()<< "\n";
101  ETCAB = root->getOwnerDocument()->createElement(cms::xerces::uStr(ETCAB_tag.c_str()).ptr());
102  root->appendChild(ETCAB);
103  for (it = vect.begin(); it != vect.end(); it++) {
104  // std::cout << *it << " ";
105  WriteNodeWithValue(ETCAB, Value_tag, *it);
106  }
107  // std::cout << "\n";
108  vect = record.EETimeCorrShiftBins;
109  ETCAB_tag = "EETimeCorrShiftBins";
110  // std::cout << ETCAB_tag << vect.size()<< "\n";
111  ETCAB = root->getOwnerDocument()->createElement(cms::xerces::uStr(ETCAB_tag.c_str()).ptr());
112  root->appendChild(ETCAB);
113  for (it = vect.begin(); it != vect.end(); it++) {
114  // std::cout << *it << " ";
115  WriteNodeWithValue(ETCAB, Value_tag, *it);
116  }
117  // std::cout << "\n";
118 
119  std::string dump = cms::xerces::toString(writer->writeToString(root));
120  doc->release();
121  doctype->release();
122  writer->release();
123 
124  return dump;
125 }
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
const std::string Value_tag("Value")
std::string toString(XMLCh const *toTranscode)
const std::string IntercalibConstants_tag("EcalIntercalibConstants")
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
ZStr< XMLCh > uStr(char const *str)

◆ readXML()

int EcalTimeBiasCorrectionsXMLTranslator::readXML ( const std::string &  filename,
EcalCondHeader header,
EcalTimeBiasCorrections record 
)
static

Definition at line 21 of file EcalTimeBiasCorrectionsXMLTranslator.cc.

References gather_cfg::cout, corrVsCorr::filename, RecoTauValidation_cfi::header, writedatasetfile::parser, xuti::readHeader(), cms::concurrency::xercesInitialize(), and cms::concurrency::xercesTerminate().

23  {
25 
26  XercesDOMParser* parser = new XercesDOMParser;
27  parser->setValidationScheme(XercesDOMParser::Val_Never);
28  parser->setDoNamespaces(false);
29  parser->setDoSchema(false);
30 
31  parser->parse(filename.c_str());
32 
33  DOMDocument* xmlDoc = parser->getDocument();
34  if (!xmlDoc) {
35  std::cout << "EcalTimeBiasCorrectionsXMLTranslator::Error parsing document" << std::endl;
36  return -1;
37  }
38 
39  // Get the top-level element
40  DOMElement* elementRoot = xmlDoc->getDocumentElement();
41 
42  xuti::readHeader(elementRoot, header);
43 
44  delete parser;
46  return 0;
47 }
void xercesTerminate()
Definition: Xerces.cc:23
void xercesInitialize()
Definition: Xerces.cc:18
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from

◆ writeXML()

int EcalTimeBiasCorrectionsXMLTranslator::writeXML ( const std::string &  filename,
const EcalCondHeader header,
const EcalTimeBiasCorrections record 
)
static