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.

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 }

References common_cff::doc, FrontierConditions_GlobalTag_cff::dump, RecoTauValidation_cfi::header, xuti::IntercalibConstants_tag(), GlobalPosition_Frontier_DevDB_cff::record, AlCaHLTBitMon_QueryRunRegistry::string, cms::xerces::toString(), cms::xerces::uStr(), xuti::Value_tag(), xuti::writeHeader(), xuti::WriteNodeWithValue(), and cscNeutronWriter_cfi::writer.

◆ readXML()

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

Definition at line 21 of file EcalTimeBiasCorrectionsXMLTranslator.cc.

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 }

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

◆ writeXML()

int EcalTimeBiasCorrectionsXMLTranslator::writeXML ( const std::string &  filename,
const EcalCondHeader header,
const EcalTimeBiasCorrections record 
)
static
common_cff.doc
doc
Definition: common_cff.py:54
xuti::writeHeader
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
Definition: DOMHelperFunctions.cc:151
gather_cfg.cout
cout
Definition: gather_cfg.py:144
GlobalPosition_Frontier_DevDB_cff.record
record
Definition: GlobalPosition_Frontier_DevDB_cff.py:10
writedatasetfile.parser
parser
Definition: writedatasetfile.py:7
cscNeutronWriter_cfi.writer
writer
Definition: cscNeutronWriter_cfi.py:6
cms::xerces::toString
std::string toString(XMLCh const *toTranscode)
Definition: XercesStrUtils.h:34
xuti::WriteNodeWithValue
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
Definition: DOMHelperFunctions.h:46
corrVsCorr.filename
filename
Definition: corrVsCorr.py:123
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
EcalTimeBiasCorrectionsXMLTranslator::dumpXML
static std::string dumpXML(const EcalCondHeader &header, const EcalTimeBiasCorrections &record)
Definition: EcalTimeBiasCorrectionsXMLTranslator.cc:62
FrontierConditions_GlobalTag_cff.dump
dump
Definition: FrontierConditions_GlobalTag_cff.py:12
cms::concurrency::xercesTerminate
void xercesTerminate()
Definition: Xerces.cc:23
root
Definition: RooFitFunction.h:10
cms::xerces::uStr
ZStr< XMLCh > uStr(char const *str)
Definition: XercesStrUtils.h:30
impl
Definition: trackAlgoPriorityOrder.h:18
xuti::Value_tag
const std::string Value_tag("Value")
RecoTauValidation_cfi.header
header
Definition: RecoTauValidation_cfi.py:292
MillePedeFileConverter_cfg.out
out
Definition: MillePedeFileConverter_cfg.py:31
xuti::IntercalibConstants_tag
const std::string IntercalibConstants_tag("EcalIntercalibConstants")
cms::concurrency::xercesInitialize
void xercesInitialize()
Definition: Xerces.cc:18
xuti::readHeader
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
Definition: DOMHelperFunctions.cc:164