CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalClusterLocalContCorrXMLTranslator.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 int
22  const string& filename,
25 
26  XMLPlatformUtils::Initialize();
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 
37 
38  if (!xmlDoc) {
39  std::cout << "EcalClusterLocalContCorrXMLTranslator::Error parsing document" << std::endl;
40  return -1;
41  }
42 
43  DOMElement* elementRoot = xmlDoc->getDocumentElement();
44 
45  xuti::readHeader(elementRoot, header);
46 
47  // need some extra code here
48 
49  delete parser;
50  XMLPlatformUtils::Terminate();
51  return 0;
52 }
53 
54 std::string
56  const EcalCondHeader& header,
57  const EcalFunParams& record){
58 
59  XMLPlatformUtils::Initialize();
60 
61  DOMImplementation* impl =
62  DOMImplementationRegistry::getDOMImplementation(fromNative("LS").c_str());
63 
64  DOMWriter* writer =
65  static_cast<DOMImplementationLS*>(impl)->createDOMWriter( );
66  writer->setFeature(XMLUni::fgDOMWRTFormatPrettyPrint, true);
67 
68  DOMDocumentType* doctype =
69  impl->createDocumentType( fromNative("XML").c_str(), 0, 0 );
70  const std::string EcalClusterLocalContCorr_tag("EcalClusterLocalContCorr");
71  DOMDocument * doc =
72  impl->createDocument( 0, fromNative(EcalClusterLocalContCorr_tag).c_str(), doctype );
73 
74 
75  doc->setEncoding(fromNative("UTF-8").c_str() );
76  doc->setStandalone(true);
77  doc->setVersion(fromNative("1.0").c_str() );
78 
79 
80  DOMElement* root = doc->getDocumentElement();
81  xuti::writeHeader(root, header);
82 
83  const std::string ECEC_tag("ClusterLocal");
84  for ( EcalFunctionParameters::const_iterator it = record.params().begin(); it != record.params().end(); ++it ) {
85  DOMElement* ECEC =
86  root->getOwnerDocument()->createElement( fromNative(ECEC_tag).c_str());
87  root->appendChild(ECEC);
88 
89  WriteNodeWithValue(ECEC,Value_tag,*it);
90  }
91 
92  std::string dump= toNative(writer->writeToString(*root));
93  doc->release();
94  return dump;
95 }
96 
97 int
99  const std::string& filename,
100  const EcalCondHeader& header,
101  const EcalFunParams& record){
102 
103  std::fstream fs(filename.c_str(),ios::out);
104  fs<< dumpXML(header,record);
105  return 0;
106 }
JetCorrectorParameters::Record record
Definition: classes.h:11
static int readXML(const std::string &filename, EcalCondHeader &header, 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 writeXML(const std::string &filename, const EcalCondHeader &header, const EcalFunParams &record)
void readHeader(xercesc::DOMNode *parentNode, EcalCondHeader &header)
read header from
static std::string dumpXML(const EcalCondHeader &header, const EcalFunParams &record)
EcalFunctionParameters & params()
void writeHeader(xercesc::DOMNode *parentNode, const EcalCondHeader &header)
write
tuple doc
Definition: asciidump.py:381
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