CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Static Public Member Functions | Static Private Member Functions
EcalChannelStatusXMLTranslator Class Reference

#include <EcalChannelStatusXMLTranslator.h>

Static Public Member Functions

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

Static Private Member Functions

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

Detailed Description

Translates a EcalChannelStatus record to XML and vice versa

Author
Francesco RUBBO
Version
Id:
EcalChannelStatusXMLTranslator.h,v 1.1 2008/11/14 15:46:05 argiro Exp
Date
29 Jul 2008

Definition at line 16 of file EcalChannelStatusXMLTranslator.h.

Member Function Documentation

std::string EcalChannelStatusXMLTranslator::dumpXML ( const EcalCondHeader header,
const EcalChannelStatus record 
)
staticprivate

Definition at line 82 of file EcalChannelStatusXMLTranslator.cc.

References xuti::ChannelStatus_tag(), xuti::ChannelStatusCode_tag(), remoteMonitoring_LASER_era2018_cfg::dump, EBDetId::kSizeForDenseIndexing, EEDetId::kSizeForDenseIndexing, EBDetId::MIN_HASH, AlCaHLTBitMon_QueryRunRegistry::string, cms::xerces::toString(), EBDetId::unhashIndex(), EEDetId::unhashIndex(), cms::xerces::uStr(), EEDetId::validHashIndex(), xuti::writeCell(), xuti::writeHeader(), and xuti::WriteNodeWithValue().

82  {
83  unique_ptr<DOMImplementation> impl(DOMImplementationRegistry::getDOMImplementation(cms::xerces::uStr("LS").ptr()));
84 
85  DOMLSSerializer* writer = impl->createLSSerializer();
86  if (writer->getDomConfig()->canSetParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true))
87  writer->getDomConfig()->setParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true);
88 
89  DOMDocumentType* doctype = impl->createDocumentType(cms::xerces::uStr("XML").ptr(), nullptr, nullptr);
90  DOMDocument* doc = impl->createDocument(nullptr, cms::xerces::uStr(ChannelStatus_tag.c_str()).ptr(), doctype);
91 
92  DOMElement* root = doc->getDocumentElement();
93 
94  xuti::writeHeader(root, header);
95 
96  for (int cellid = EBDetId::MIN_HASH; cellid < EBDetId::kSizeForDenseIndexing; ++cellid) {
97  uint32_t rawid = EBDetId::unhashIndex(cellid);
98 
99  if (!record[rawid].getStatusCode())
100  continue;
101 
102  DOMElement* cellnode = writeCell(root, rawid);
103 
104  WriteNodeWithValue(cellnode, ChannelStatusCode_tag, record[rawid].getStatusCode());
105  }
106 
107  for (int cellid = 0; cellid < EEDetId::kSizeForDenseIndexing; ++cellid) {
108  if (!EEDetId::validHashIndex(cellid))
109  continue;
110 
111  uint32_t rawid = EEDetId::unhashIndex(cellid);
112 
113  if (!record[rawid].getStatusCode())
114  continue;
115 
116  DOMElement* cellnode = writeCell(root, rawid);
117  WriteNodeWithValue(cellnode, ChannelStatusCode_tag, record[rawid].getStatusCode());
118  }
119 
120  std::string dump = cms::xerces::toString(writer->writeToString(root));
121  doc->release();
122  doctype->release();
123  writer->release();
124 
125  return dump;
126 }
static EEDetId unhashIndex(int hi)
Definition: EEDetId.cc:65
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
static bool validHashIndex(int i)
Definition: EEDetId.h:239
const std::string ChannelStatusCode_tag("ChannelStatusCode")
std::string toString(XMLCh const *toTranscode)
static const int MIN_HASH
Definition: EBDetId.h:149
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
ZStr< XMLCh > uStr(char const *str)
const std::string ChannelStatus_tag("EcalChannelStatus")
static EBDetId unhashIndex(int hi)
get a DetId from a compact index for arrays
Definition: EBDetId.h:110
xercesc::DOMElement * writeCell(xercesc::DOMNode *node, const DetId &detid)
Append a Cell node with attributes to.
tuple dump
OutputFilePath = cms.string(&#39;/tmp/zhokin/&#39;), OutputFileExt = cms.string(&#39;&#39;),.
int EcalChannelStatusXMLTranslator::readXML ( const std::string &  filename,
EcalCondHeader header,
EcalChannelStatus record 
)
static

Definition at line 23 of file EcalChannelStatusXMLTranslator.cc.

References xuti::Cell_tag(), xuti::ChannelStatusCode_tag(), gather_cfg::cout, omtf::DataWord64::csc, xuti::getChildNode(), xuti::GetNodeData(), writedatasetfile::parser, xuti::readCellId(), xuti::readHeader(), cms::concurrency::xercesInitialize(), and cms::concurrency::xercesTerminate().

25  {
27 
28  XercesDOMParser* parser = new XercesDOMParser;
29  parser->setValidationScheme(XercesDOMParser::Val_Never);
30  parser->setDoNamespaces(false);
31  parser->setDoSchema(false);
32 
33  parser->parse(filename.c_str());
34 
35  DOMDocument* xmlDoc = parser->getDocument();
36  if (!xmlDoc) {
37  std::cout << "EcalChannelStatusXMLTranslator::Error parsing document" << std::endl;
38  return -1;
39  }
40 
41  DOMElement* elementRoot = xmlDoc->getDocumentElement();
42 
43  xuti::readHeader(elementRoot, header);
44 
45  DOMNode* cellnode = getChildNode(elementRoot, Cell_tag);
46 
47  while (cellnode) {
48  uint16_t csc = 0;
49 
50  DetId detid = readCellId(dynamic_cast<DOMElement*>(cellnode));
51 
52  DOMNode* c_node = getChildNode(cellnode, ChannelStatusCode_tag);
53  GetNodeData(c_node, csc);
54 
56  record[detid] = ecalCSC;
57 
58  cellnode = cellnode->getNextSibling();
59 
60  while (cellnode && cellnode->getNodeType() != DOMNode::ELEMENT_NODE)
61  cellnode = cellnode->getNextSibling();
62  }
63 
64  delete parser;
66  return 0;
67 }
void xercesTerminate()
Definition: Xerces.cc:23
void xercesInitialize()
Definition: Xerces.cc:18
const std::string ChannelStatusCode_tag("ChannelStatusCode")
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
const std::string Cell_tag("cell")
Definition: DetId.h:17
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
tuple filename
Definition: lut2db_cfg.py:20
tuple cout
Definition: gather_cfg.py:144
const DetId readCellId(xercesc::DOMElement *node)
Assuming.
int EcalChannelStatusXMLTranslator::writeXML ( const std::string &  filename,
const EcalCondHeader header,
const EcalChannelStatus record 
)
static

Definition at line 69 of file EcalChannelStatusXMLTranslator.cc.

References EcalCondTools::dumpXML(), submitPVResolutionJobs::out, cms::concurrency::xercesInitialize(), and cms::concurrency::xercesTerminate().

71  {
73 
74  std::fstream fs(filename.c_str(), ios::out);
75  fs << dumpXML(header, record);
76 
78 
79  return 0;
80 }
void xercesTerminate()
Definition: Xerces.cc:23
void xercesInitialize()
Definition: Xerces.cc:18
static std::string dumpXML(const EcalCondHeader &header, const EcalChannelStatus &record)
tuple filename
Definition: lut2db_cfg.py:20