CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalClusterEnergyCorrectionObjectSpecificXMLTranslator.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <sstream>
3 #include <fstream>
4 
5 #include <xercesc/dom/DOMNode.hpp>
6 #include <xercesc/dom/DOM.hpp>
7 #include <xercesc/parsers/XercesDOMParser.hpp>
8 #include <xercesc/util/PlatformUtils.hpp>
9 #include <xercesc/util/XMLString.hpp>
10 #include <xercesc/sax/SAXException.hpp>
11 #include <xercesc/framework/LocalFileFormatTarget.hpp>
12 
15 
16 using namespace XERCES_CPP_NAMESPACE;
17 using namespace xuti;
18 using namespace std;
19 
20 
21 int
23  const string& filename,
26 
27  XMLPlatformUtils::Initialize();
28 
29  XercesDOMParser* parser = new XercesDOMParser;
30  parser->setValidationScheme( XercesDOMParser::Val_Never );
31  parser->setDoNamespaces( false );
32  parser->setDoSchema( false );
33 
34  parser->parse(filename.c_str());
35 
36  DOMDocument* xmlDoc = parser->getDocument();
37 
38 
39  if (!xmlDoc) {
40  std::cout << "EcalClusterEnergyCorrectionObjectSpecificXMLTranslator::Error parsing document"
41  << std::endl;
42  return -1;
43  }
44 
45  DOMElement* elementRoot = xmlDoc->getDocumentElement();
46 
47  xuti::readHeader(elementRoot, header);
48 
49  // need some extra code here
50 
51  delete parser;
52  XMLPlatformUtils::Terminate();
53  return 0;
54 }
55 
56 std::string
58  const EcalCondHeader& header,
59  const EcalFunParams& record){
60 
61  XMLPlatformUtils::Initialize();
62 
63  DOMImplementation* impl =
64  DOMImplementationRegistry::getDOMImplementation(fromNative("LS").c_str());
65 
66  DOMWriter* writer =
67  static_cast<DOMImplementationLS*>(impl)->createDOMWriter( );
68  writer->setFeature(XMLUni::fgDOMWRTFormatPrettyPrint, true);
69 
70  DOMDocumentType* doctype =
71  impl->createDocumentType( fromNative("XML").c_str(), 0, 0 );
72  const std::string ECECOS_tag("EcalClusterEnergyCorrectionObjectSpecific");
73  DOMDocument * doc =
74  impl->createDocument( 0, fromNative(ECECOS_tag).c_str(), doctype );
75 
76 
77  doc->setEncoding(fromNative("UTF-8").c_str() );
78  doc->setStandalone(true);
79  doc->setVersion(fromNative("1.0").c_str() );
80 
81 
82  DOMElement* root = doc->getDocumentElement();
83  xuti::writeHeader(root, header);
84 
85  const std::string ECEC_tag[9] = {"fEta","fBremEtaElectrons","fBremEtaPhotons",
86  "fEtElectronsEB","fEtElectronsEE","fEtPhotonsEB","fEtPhotonsEE",
87  "fEnergyElectronsEE","fEnergyPhotonsEE"};
88  int tit = 0;
89  int par = 0;
90  for ( EcalFunctionParameters::const_iterator it = record.params().begin(); it != record.params().end(); ++it ) {
91  if(par < 2) tit = 0;
92  else if(par < 86) tit = 1;
93  else if(par < 170) tit = 2;
94  else if(par < 177) tit = 3;
95  else if(par < 184) tit = 4;
96  else if(par < 191) tit = 5;
97  else if(par < 198) tit = 6;
98  else if(par < 203) tit = 7;
99  else tit = 8;
100  DOMElement* ECEC =
101  root->getOwnerDocument()->createElement( fromNative(ECEC_tag[tit]).c_str());
102  root->appendChild(ECEC);
103 
104  WriteNodeWithValue(ECEC,Value_tag,*it);
105  par++;
106  }
107  std::cout << "\n";
108 
109  std::string dump= toNative(writer->writeToString(*root));
110  doc->release();
111  return dump;
112 }
113 
114 int
116  const std::string& filename,
117  const EcalCondHeader& header,
118  const EcalFunParams& record){
119 
120  std::fstream fs(filename.c_str(),ios::out);
121  fs<< dumpXML(header,record);
122  return 0;
123 }
JetCorrectorParameters::Record record
Definition: classes.h:11
static int writeXML(const std::string &filename, const EcalCondHeader &header, const EcalFunParams &record)
void WriteNodeWithValue(xercesc::DOMNode *parentNode, const std::string &tag, const T &value)
write a node with
const std::string Value_tag("Value")
static int readXML(const std::string &filename, EcalCondHeader &header, EcalFunParams &record)
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
EcalFunctionParameters & params()
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
tuple doc
Definition: asciidump.py:381
static std::string dumpXML(const EcalCondHeader &header, const EcalFunParams &record)
tuple out
Definition: dbtoconf.py:99
tuple filename
Definition: lut2db_cfg.py:20
XercesString fromNative(const char *str)
Definition: XercesString.h:31
tuple cout
Definition: gather_cfg.py:121
std::string toNative(const XMLCh *str)
Definition: XercesString.h:42
string root
initialization
Definition: dbtoconf.py:70