CMS 3D CMS Logo

MiscalibReaderXML.cc
Go to the documentation of this file.
5 #include <cstdio>
6 #include <cstdlib>
7 #include <string>
8 #include <vector>
9 
10 using namespace xercesc;
11 
12 int MiscalibReaderFromXML::s_numberOfInstances = 0; //to check that there is only 1 instance
13 
14 inline std::string _toString(const XMLCh* toTranscode) {
15  std::string tmp(XMLString::transcode(toTranscode));
16  return tmp;
17 }
18 
19 inline XMLCh* _toDOMS(std::string temp) {
20  XMLCh* buff = XMLString::transcode(temp.c_str());
21  return buff;
22 }
23 
25  try {
26  //std::cout << "Xerces-c initialization Number "
27  //<< s_numberOfInstances<<std::endl;
28  if (s_numberOfInstances == 0)
30  } catch (const XMLException& e) {
31  std::cout << "Xerces-c error in initialization \n"
32  << "Exception message is: \n"
33  << _toString(e.getMessage()) << std::endl;
34  // throw an exception here
35  }
36 
38 }
40 
41 int MiscalibReaderFromXML::getIntAttribute(DOMNamedNodeMap* attribute, const std::string& attribute_name) {
42  bool well_formed_string;
43  int retval = MiscalibReaderFromXMLDomUtils::getIntAttribute(attribute, attribute_name, well_formed_string);
44  if (!well_formed_string)
45  std::cout << "MiscalibReaderFromXML::getIntAttribute PROBLEMS ...!!!" << std::endl;
46 
47  return retval;
48 }
49 
51 
52 double MiscalibReaderFromXML::getScalingFactor(XERCES_CPP_NAMESPACE::DOMNamedNodeMap* attribute) {
53  return MiscalibReaderFromXML::getFloatAttribute(attribute, "scale_factor");
54 }
55 
57 
58 double MiscalibReaderFromXML::getFloatAttribute(DOMNamedNodeMap* attribute, const std::string& attribute_name) {
59  bool well_formed_string;
60  double retval = MiscalibReaderFromXMLDomUtils::getFloatAttribute(attribute, attribute_name, well_formed_string);
61  if (!well_formed_string)
62  std::cout << "MiscalibReaderFromXML::getFloatAttribute PROBLEMS ...!!!" << std::endl;
63 
64  return retval;
65 }
66 
68 
70  XercesDOMParser* parser = new XercesDOMParser;
71  parser->setValidationScheme(XercesDOMParser::Val_Auto);
72  parser->setDoNamespaces(false);
73  parser->parse(configFile.c_str());
74  DOMDocument* doc = parser->getDocument();
75  assert(doc);
76 
77  unsigned int linkTagsNum = doc->getElementsByTagName(_toDOMS("Cell"))->getLength();
78  // The following should be on LogInfo
79  //std::cout << "Read number of Cells = " << linkTagsNum << std::endl;
80 
81  if (linkTagsNum == 0)
82  std::cout << "Number of Cells in file is 0 - probably bad file format" << std::endl;
83 
84  for (unsigned int i = 0; i < linkTagsNum; i++) {
85  DOMNode* linkNode = doc->getElementsByTagName(_toDOMS("Cell"))->item(i);
87  if (!linkNode) {
88  std::cout << "Node LINK does not exist, i=" << i << std::endl;
89  return true;
90  }
91  DOMElement* linkElement = static_cast<DOMElement*>(linkNode);
92  if (!linkElement) {
93  std::cout << "Element LINK does not exist, i=" << i << std::endl;
94  return true;
95  }
96 
97  DOMNamedNodeMap* attributes = linkNode->getAttributes();
98  double scalingfactor = getScalingFactor(attributes);
99 
100  DetId cell = parseCellEntry(attributes);
101 
102  if (cell != DetId(0)) {
103  caloMap_.addCell(cell, scalingfactor);
104  } else {
105  // std::cout << "Null received" << std::endl;
106  }
107  }
108 
109  // The following should be on LogInfo
110  // std::cout << "Number of good Cells = " << count << std::endl;
111  return false;
112 }
static double getFloatAttribute(XERCES_CPP_NAMESPACE::DOMNamedNodeMap *attributes, std::string attr_name, bool &well_formed_string)
static int getIntAttribute(XERCES_CPP_NAMESPACE::DOMNamedNodeMap *attributes, std::string attr_name, bool &well_formed_string)
std::string _toString(const XMLCh *toTranscode)
CaloMiscalibMap & caloMap_
bool parseXMLMiscalibFile(std::string configFile)
MiscalibReaderFromXML(CaloMiscalibMap &)
void xercesInitialize()
Definition: Xerces.cc:18
assert(be >=bs)
virtual void addCell(const DetId &cell, float scaling_factor)=0
double getScalingFactor(XERCES_CPP_NAMESPACE::DOMNamedNodeMap *attribute)
double getFloatAttribute(XERCES_CPP_NAMESPACE::DOMNamedNodeMap *attribute, const std::string &attribute_name)
Definition: DetId.h:17
XMLCh * _toDOMS(std::string temp)
tmp
align.sh
Definition: createJobs.py:716
virtual DetId parseCellEntry(XERCES_CPP_NAMESPACE::DOMNamedNodeMap *attribute)=0
int getIntAttribute(XERCES_CPP_NAMESPACE::DOMNamedNodeMap *attribute, const std::string &attribute_name)
buff
***.cc ################