CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EcalClusterCrackCorrXMLTranslator.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 << "EcalClusterCrackCorrXMLTranslator::Error parsing document" << std::endl;
41  return -1;
42  }
43 
44  DOMElement* elementRoot = xmlDoc->getDocumentElement();
45 
46  xuti::readHeader(elementRoot, header);
47 
48  // need some extra code here
49 
50  delete parser;
51  XMLPlatformUtils::Terminate();
52  return 0;
53 }
54 
55 std::string
57  const EcalCondHeader& header,
58  const EcalFunParams& record){
59 
60  XMLPlatformUtils::Initialize();
61 
62  DOMImplementation* impl =
63  DOMImplementationRegistry::getDOMImplementation(fromNative("LS").c_str());
64 
65  DOMWriter* writer =
66  static_cast<DOMImplementationLS*>(impl)->createDOMWriter( );
67  writer->setFeature(XMLUni::fgDOMWRTFormatPrettyPrint, true);
68 
69  DOMDocumentType* doctype =
70  impl->createDocumentType( fromNative("XML").c_str(), 0, 0 );
71  const std::string EcalClusterCrackCorr_tag("EcalClusterCrackCorr");
72  DOMDocument * doc =
73  impl->createDocument( 0, fromNative(EcalClusterCrackCorr_tag).c_str(), doctype );
74 
75 
76  doc->setEncoding(fromNative("UTF-8").c_str() );
77  doc->setStandalone(true);
78  doc->setVersion(fromNative("1.0").c_str() );
79 
80  DOMElement* root = doc->getDocumentElement();
81  xuti::writeHeader(root, header);
82 
83  const std::string ECCC_tag[4] = {"IPCloseEtaSide", "IPFarEtaSide",
84  "IPClosePhiSide", "IPFarPhiSide"};;
85  int num = 0;
86  for ( EcalFunctionParameters::const_iterator it = record.params().begin(); it != record.params().end(); ++it ) {
87  int side = num /5;
88  int par = num%5;
89  std::string s;
90  std::stringstream out;
91  out << par;
92  s = out.str();
93  std::string sw = ECCC_tag[side] + "_" + s;
94  DOMElement* ECCC =
95  root->getOwnerDocument()->createElement( fromNative(sw).c_str());
96  root->appendChild(ECCC);
97 
98  WriteNodeWithValue(ECCC,Value_tag,*it);
99  num++;
100  }
101 
102  std::string dump= toNative(writer->writeToString(*root));
103  doc->release();
104  return dump;
105 }
106 
107 int
109  const std::string& filename,
110  const EcalCondHeader& header,
111  const EcalFunParams& record){
112 
113  std::fstream fs(filename.c_str(),ios::out);
114  fs<< dumpXML(header,record);
115  return 0;
116 }
JetCorrectorParameters::Record record
Definition: classes.h:11
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
tuple out
Definition: dbtoconf.py:99
long long int num
Definition: procUtils.cc:71
tuple filename
Definition: lut2db_cfg.py:20
XercesString fromNative(const char *str)
Definition: XercesString.h:31
tuple cout
Definition: gather_cfg.py:121
static int writeXML(const std::string &filename, const EcalCondHeader &header, const EcalFunParams &record)
static std::string dumpXML(const EcalCondHeader &header, const EcalFunParams &record)
std::string toNative(const XMLCh *str)
Definition: XercesString.h:42
string root
initialization
Definition: dbtoconf.py:70