CMS 3D CMS Logo

XMLProcessor.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: XMLTools
4 // Class : XMLProcessor
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author:
10 // Created: Fri Sep 21 15:56:27 CEST 2007
11 //
12 
13 // system include files
14 #include <vector>
15 #include <string>
16 #include <iostream>
17 #include <sys/types.h>
18 #include <pwd.h>
19 #include <unistd.h>
20 #include <xercesc/parsers/XercesDOMParser.hpp>
21 #include <xercesc/dom/DOM.hpp>
22 #include <xercesc/sax/HandlerBase.hpp>
23 #include <xercesc/util/XMLString.hpp>
25 #include <xercesc/dom/DOMNode.hpp>
26 #include <xercesc/framework/StdOutFormatTarget.hpp>
27 #include <xercesc/framework/LocalFileFormatTarget.hpp>
28 
29 // xalan-c init
30 //#include <xalanc/Include/PlatformDefinitions.hpp>
31 //#include <xalanc/XPath/XPathEvaluator.hpp>
32 //#include <xalanc/XalanTransformer/XalanTransformer.hpp>
33 //using namespace xalanc;
34 
35 using namespace std;
37 
38 // user include files
41 
43 
45  // initializes Xerces, must be done only once
46  init();
47 }
48 
50  // terminates Xerces
51  terminate();
52 }
53 
54 //_loaderBaseConfig::_loaderBaseConfig
56  extention_table_name = "HCAL_TRIG_PRIM_LOOKUP_TABLES";
57  name = "HCAL trigger primitive lookup table";
58  run_mode = "no-run";
59  data_set_id = "-1";
60  iov_id = "1";
61  iov_begin = "0";
62  iov_end = "1";
63  tag_id = "2";
64  tag_mode = "auto";
65  tag_name = "dummy tag";
66  detector_name = "HCAL";
67  comment_description = "empty comment";
68 }
69 
71  version = "test:2";
72  subversion = "1";
73  create_timestamp = time(nullptr);
74  created_by_user = getpwuid(getuid())->pw_name;
75 }
76 
78  XMLDOMBlock* result = new XMLDOMBlock(templateFileName);
79  DOMDocument* loader = result->getDocument();
80  //DOMElement * root = loader -> getDocumentElement();
81 
82  loader->getElementsByTagName(_toXMLCh("NAME"))
83  ->item(0)
84  ->getFirstChild()
85  ->setNodeValue(_toXMLCh("HCAL LMAP for HB, HE, HF"));
86  //DOMElement * _tag = (DOMElement *)(loader -> getElementsByTagName( _toXMLCh( "TAG" ) ) -> item(0));
87  //_tag -> setAttribute( _toXMLCh("mode"), _toXMLCh("test_mode") );
88 
89  return result;
90 }
91 
93  DOMDocument* loader = doc->getDocument();
94  DOMElement* root = loader->getDocumentElement();
95 
96  XMLDOMBlock dataSetDoc(templateFileName);
97  DOMDocument* dataSet = dataSetDoc.getDocument();
98 
99  //Dataset
100  dataSet->getElementsByTagName(_toXMLCh("SIDE"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->side));
101  dataSet->getElementsByTagName(_toXMLCh("ETA"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->eta));
102  dataSet->getElementsByTagName(_toXMLCh("PHI"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->phi));
103  dataSet->getElementsByTagName(_toXMLCh("DELTA_PHI"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->dphi));
104 
105  dataSet->getElementsByTagName(_toXMLCh("DEPTH"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->depth));
106  dataSet->getElementsByTagName(_toXMLCh("SUBDETECTOR"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->det));
107  dataSet->getElementsByTagName(_toXMLCh("RBX_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->rbx));
108  dataSet->getElementsByTagName(_toXMLCh("WEDGE"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->wedge));
109 
110  dataSet->getElementsByTagName(_toXMLCh("RM_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->rm));
111  dataSet->getElementsByTagName(_toXMLCh("HPD_PIXEL"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->pixel));
112  dataSet->getElementsByTagName(_toXMLCh("QIE_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->qie));
113  dataSet->getElementsByTagName(_toXMLCh("ADC"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->adc));
114  dataSet->getElementsByTagName(_toXMLCh("RM_FIBER"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->rm_fi));
115 
116  dataSet->getElementsByTagName(_toXMLCh("FIBER_CHANNEL"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->fi_ch));
117  dataSet->getElementsByTagName(_toXMLCh("CRATE"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->crate));
118  dataSet->getElementsByTagName(_toXMLCh("HTR_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->htr));
119  dataSet->getElementsByTagName(_toXMLCh("HTR_FPGA"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->fpga));
120 
121  dataSet->getElementsByTagName(_toXMLCh("HTR_FIBER"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->htr_fi));
122  dataSet->getElementsByTagName(_toXMLCh("DCC_SL"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->dcc_sl));
123  dataSet->getElementsByTagName(_toXMLCh("SPIGOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->spigo));
124  dataSet->getElementsByTagName(_toXMLCh("DCC_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->dcc));
125  dataSet->getElementsByTagName(_toXMLCh("SLB_SITE"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->slb));
126  dataSet->getElementsByTagName(_toXMLCh("SLB_CHANNEL"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->slbin));
127  dataSet->getElementsByTagName(_toXMLCh("SLB_CHANNEL2"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->slbin2));
128 
129  dataSet->getElementsByTagName(_toXMLCh("SLB_CABLE"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->slnam));
130  dataSet->getElementsByTagName(_toXMLCh("RCT_CRATE"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->rctcra));
131  dataSet->getElementsByTagName(_toXMLCh("RCT_CARD"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->rctcar));
132  dataSet->getElementsByTagName(_toXMLCh("RCT_CONNECTOR"))
133  ->item(0)
134  ->getFirstChild()
135  ->setNodeValue(_toXMLCh(row->rctcon));
136  dataSet->getElementsByTagName(_toXMLCh("RCT_NAME"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->rctnam));
137  dataSet->getElementsByTagName(_toXMLCh("FED_ID"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->fedid));
138 
139  // copy the <data_set> node into the final XML
140  DOMNode* cloneDataSet = loader->importNode(dataSet->getDocumentElement(), true);
141  root->appendChild(cloneDataSet);
142 
143  return 0;
144 }
145 
147  XMLDOMBlock* result = new XMLDOMBlock(templateFileName);
148  DOMDocument* loader = result->getDocument();
149  //DOMElement * root = loader -> getDocumentElement();
150 
151  loader->getElementsByTagName(_toXMLCh("NAME"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh("HCAL LMAP for HO"));
152  //DOMElement * _tag = (DOMElement *)(loader -> getElementsByTagName( _toXMLCh( "TAG" ) ) -> item(0));
153  //_tag -> setAttribute( _toXMLCh("mode"), _toXMLCh("test_mode") );
154 
155  return result;
156 }
157 
159  DOMDocument* loader = doc->getDocument();
160  DOMElement* root = loader->getDocumentElement();
161 
162  XMLDOMBlock dataSetDoc(templateFileName);
163  DOMDocument* dataSet = dataSetDoc.getDocument();
164 
165  //Dataset
166  dataSet->getElementsByTagName(_toXMLCh("SIDE"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->sideO));
167  dataSet->getElementsByTagName(_toXMLCh("ETA"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->etaO));
168  dataSet->getElementsByTagName(_toXMLCh("PHI"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->phiO));
169  dataSet->getElementsByTagName(_toXMLCh("DELTA_PHI"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->dphiO));
170 
171  dataSet->getElementsByTagName(_toXMLCh("DEPTH"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->depthO));
172  dataSet->getElementsByTagName(_toXMLCh("SUBDETECTOR"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->detO));
173  dataSet->getElementsByTagName(_toXMLCh("RBX_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->rbxO));
174  dataSet->getElementsByTagName(_toXMLCh("SECTOR"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->sectorO));
175 
176  dataSet->getElementsByTagName(_toXMLCh("RM_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->rmO));
177  dataSet->getElementsByTagName(_toXMLCh("HPD_PIXEL"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->pixelO));
178  dataSet->getElementsByTagName(_toXMLCh("QIE_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->qieO));
179  dataSet->getElementsByTagName(_toXMLCh("ADC"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->adcO));
180  dataSet->getElementsByTagName(_toXMLCh("RM_FIBER"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->rm_fiO));
181  dataSet->getElementsByTagName(_toXMLCh("FIBER_CHANNEL"))
182  ->item(0)
183  ->getFirstChild()
184  ->setNodeValue(_toXMLCh(row->fi_chO));
185 
186  dataSet->getElementsByTagName(_toXMLCh("LETTER_CODE"))
187  ->item(0)
188  ->getFirstChild()
189  ->setNodeValue(_toXMLCh(row->let_codeO));
190  dataSet->getElementsByTagName(_toXMLCh("CRATE"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->crateO));
191  dataSet->getElementsByTagName(_toXMLCh("HTR_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->htrO));
192  dataSet->getElementsByTagName(_toXMLCh("HTR_FPGA"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->fpgaO));
193 
194  dataSet->getElementsByTagName(_toXMLCh("HTR_FIBER"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->htr_fiO));
195  dataSet->getElementsByTagName(_toXMLCh("DCC_SL"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->dcc_slO));
196  dataSet->getElementsByTagName(_toXMLCh("SPIGOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->spigoO));
197  dataSet->getElementsByTagName(_toXMLCh("DCC_SLOT"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->dccO));
198  dataSet->getElementsByTagName(_toXMLCh("FED_ID"))->item(0)->getFirstChild()->setNodeValue(_toXMLCh(row->fedidO));
199 
200  // copy the <data_set> node into the final XML
201  DOMNode* cloneDataSet = loader->importNode(dataSet->getDocumentElement(), true);
202  root->appendChild(cloneDataSet);
203 
204  return 0;
205 }
206 
208  DOMDocument* loader = doc->getDocument();
209  //DOMElement * root = loader -> getDocumentElement();
210 
211  XMLCh* _t;
212  _t = serializeDOM(loader, target);
213  delete _t;
214 
215  return 0;
216 }
217 
219  //if ( init() != 0 ) return 1;
220 
221  XMLDOMBlock dataBlock("HCAL_TRIG_PRIM_LOOKUP_TABLE.datablock.template");
222 
223  DOMDocument* dataBlockDocument = dataBlock.getDocument();
224 
225  std::cout << "===> Tag length: " << dataBlockDocument->getElementsByTagName(_toXMLCh("CREATED_BY_USER"))->getLength()
226  << std::endl;
227  std::cout << "===> Tag name: "
228  << XMLString::transcode(
229  dataBlockDocument->getElementsByTagName(_toXMLCh("CREATED_BY_USER"))->item(0)->getNodeName())
230  << std::endl;
231  dataBlockDocument->getElementsByTagName(_toXMLCh("CREATED_BY_USER"))
232  ->item(0)
233  ->getFirstChild()
234  ->setNodeValue(_toXMLCh("kukarzev test"));
235 
236  XMLCh* _t;
237  _t = serializeDOM(dataBlockDocument);
238  delete _t;
239 
240  //terminate();
241 
242  return 0;
243 }
244 
246  XMLCh tempStr[100];
247  XMLString::transcode("LS", tempStr, 99);
248  DOMImplementation* impl = DOMImplementationRegistry::getDOMImplementation(tempStr);
249  DOMLSSerializer* theSerializer = ((DOMImplementationLS*)impl)->createLSSerializer();
250  DOMConfiguration* dc = theSerializer->getDomConfig();
251  dc->setParameter(XMLUni::fgDOMWRTDiscardDefaultContent, true);
252  dc->setParameter(XMLUni::fgDOMWRTFormatPrettyPrint, true);
253 
254  XMLFormatTarget* myFormTarget = nullptr;
255  XMLCh* _string = nullptr;
256  if (target == "stdout" || target == "string") {
257  myFormTarget = new StdOutFormatTarget();
258  }
259  //else if ( target == "memory" )
260  // {
261  // myFormTarget = new MemBufFormatTarget();
262  // }
263  else {
264  myFormTarget = new LocalFileFormatTarget(_toXMLCh(target));
265  }
266 
267  try {
268  if (target == "string") {
269  _string = theSerializer->writeToString(node);
270  } else {
271  DOMLSOutput* outputDesc = ((DOMImplementationLS*)impl)->createLSOutput();
272  outputDesc->setByteStream(myFormTarget);
273  theSerializer->write(node, outputDesc);
274  }
275  } catch (const XMLException& toCatch) {
276  char* message = XMLString::transcode(toCatch.getMessage());
277  std::cout << "Exception message is: \n" << message << "\n";
278  XMLString::release(&message);
279  return nullptr;
280  } catch (const DOMException& toCatch) {
281  char* message = XMLString::transcode(toCatch.msg);
282  std::cout << "Exception message is: \n" << message << "\n";
283  XMLString::release(&message);
284  return nullptr;
285  } catch (...) {
286  std::cout << "Unexpected Exception \n";
287  return nullptr;
288  }
289 
290  theSerializer->release();
291  if (myFormTarget)
292  delete myFormTarget;
293  return _string;
294 }
295 
297  std::cerr << "Intializing Xerces-c...";
298  try {
300  //
301  //_____ following removed as a xalan-c component_____________________
302  //
303  //XPathEvaluator::initialize();
304  } catch (const XMLException& toCatch) {
305  std::cout << " FAILED! Exiting..." << std::endl;
306  return 1;
307  }
308  std::cerr << " done" << std::endl;
309 
310  return 0;
311 }
312 
314  //
315  //_____ following removed as a xalan-c component_____________________
316  //
317  //std::cout << "Terminating Xalan-c...";
318  //XPathEvaluator::terminate();
319  //std::cout << " done" << std::endl;
320 
321  std::cout << "Terminating Xerces-c...";
323  std::cout << " done" << std::endl;
324 
325  // Other terminations and cleanup.
326 
327  return 0;
328 }
XMLProcessor::_LMapRowHO::rmO
int rmO
Definition: XMLProcessor.h:100
XMLProcessor::_LMapRowHBEF::eta
int eta
Definition: XMLProcessor.h:60
XMLProcessor::_LMapRowHO::fpgaO
std::string fpgaO
Definition: XMLProcessor.h:109
init
int init
Definition: HydjetWrapper.h:64
XMLProcessor::_LMapRowHO::spigoO
int spigoO
Definition: XMLProcessor.h:112
XMLProcessor::_LMapRowHBEF::rctcra
int rctcra
Definition: XMLProcessor.h:84
XMLProcessor::instance
static XMLProcessor * instance
Definition: XMLProcessor.h:169
XMLProcessor::_LMapRowHO::rm_fiO
int rm_fiO
Definition: XMLProcessor.h:104
XMLProcessor::createLMapHBEFXMLBase
XMLDOMBlock * createLMapHBEFXMLBase(std::string templateFileName)
Definition: XMLProcessor.cc:77
XMLProcessor::_LMapRowHBEF::depth
int depth
Definition: XMLProcessor.h:63
XMLProcessor::_LMapRowHBEF::dcc
int dcc
Definition: XMLProcessor.h:79
XMLProcessor::_LMapRowHBEF::qie
int qie
Definition: XMLProcessor.h:69
boostedTaus_cff.doc
doc
Definition: boostedTaus_cff.py:20
XMLProcessor::init
int init(void)
Definition: XMLProcessor.cc:296
XMLProcessor::_LMapRowHBEF::rm_fi
int rm_fi
Definition: XMLProcessor.h:71
XMLProcessor::_LMapRowHO::detO
std::string detO
Definition: XMLProcessor.h:97
XMLProcessor::_LMapRowHO::pixelO
int pixelO
Definition: XMLProcessor.h:101
XMLProcessor::terminate
int terminate(void)
Definition: XMLProcessor.cc:313
gather_cfg.cout
cout
Definition: gather_cfg.py:144
XMLProcessor::_LMapRowHO::dphiO
int dphiO
Definition: XMLProcessor.h:95
EgammaPostProcessor_cfi.dataSet
dataSet
Definition: EgammaPostProcessor_cfi.py:6
XMLProcessor::_LMapRowHO::let_codeO
std::string let_codeO
Definition: XMLProcessor.h:106
XMLProcessor::_LMapRowHO::depthO
int depthO
Definition: XMLProcessor.h:96
XMLProcessor
Definition: XMLProcessor.h:40
protons_cff.time
time
Definition: protons_cff.py:35
XMLProcessor::_LMapRowHBEF::wedge
int wedge
Definition: XMLProcessor.h:66
XERCES_CPP_NAMESPACE_USE
Definition: XMLConfigWriter.cc:40
XMLProcessor::_LMapRowHBEF::rctnam
std::string rctnam
Definition: XMLProcessor.h:87
XMLProcessor::_LMapRowHO::adcO
int adcO
Definition: XMLProcessor.h:103
XMLProcessor::_LMapRowHO::dccO
int dccO
Definition: XMLProcessor.h:113
XMLProcessor::_LMapRowHBEF::phi
int phi
Definition: XMLProcessor.h:61
XMLProcessor::_LMapRowHO
Definition: XMLProcessor.h:91
XMLDOMBlock
Definition: XMLDOMBlock.h:39
XMLProcessor::_LMapRowHBEF::htr
int htr
Definition: XMLProcessor.h:74
XMLProcessor::_LMapRowHO::fi_chO
int fi_chO
Definition: XMLProcessor.h:105
XMLProcessor::_LMapRowHO::crateO
int crateO
Definition: XMLProcessor.h:107
XMLProcessor::_LMapRowHBEF::crate
int crate
Definition: XMLProcessor.h:73
XMLProcessor::addLMapHODataset
int addLMapHODataset(XMLDOMBlock *doc, LMapRowHO *row, std::string templateFileName)
Definition: XMLProcessor.cc:158
XMLProcessor::test
int test(void)
Definition: XMLProcessor.cc:218
XMLDOMBlock::getDocument
XERCES_CPP_NAMESPACE::DOMDocument * getDocument(void)
Definition: XMLDOMBlock.cc:268
XMLProcessor::_LMapRowHBEF::rctcar
int rctcar
Definition: XMLProcessor.h:85
XMLProcessor::_LMapRowHBEF::dphi
int dphi
Definition: XMLProcessor.h:62
XMLProcessor::_LMapRowHBEF::slb
int slb
Definition: XMLProcessor.h:80
XMLProcessor::XMLProcessor
XMLProcessor()
Definition: XMLProcessor.cc:44
XMLProcessor::_LMapRowHBEF::fi_ch
int fi_ch
Definition: XMLProcessor.h:72
XMLProcessor::_loaderBaseConfig::_loaderBaseConfig
_loaderBaseConfig()
Definition: XMLProcessor.cc:55
fetchall_from_DQM_v2.release
release
Definition: fetchall_from_DQM_v2.py:92
XMLProcessor::_LMapRowHBEF::htr_fi
int htr_fi
Definition: XMLProcessor.h:76
XMLProcessor::_LMapRowHO::fedidO
int fedidO
Definition: XMLProcessor.h:114
XMLProcessor::serializeDOM
XMLCh * serializeDOM(XERCES_CPP_NAMESPACE::DOMNode *node, std::string target="stdout")
Definition: XMLProcessor.cc:245
XMLProcessor::_LMapRowHBEF::fpga
std::string fpga
Definition: XMLProcessor.h:75
XMLProcessor::_LMapRowHO::htr_fiO
int htr_fiO
Definition: XMLProcessor.h:110
Xerces.h
cms::concurrency::xercesTerminate
void xercesTerminate()
Definition: Xerces.cc:23
root
Definition: RooFitFunction.h:10
XMLProcessor::createLMapHOXMLBase
XMLDOMBlock * createLMapHOXMLBase(std::string templateFileName)
Definition: XMLProcessor.cc:146
XMLDOMBlock.h
XMLProcessor::_LMapRowHBEF::adc
int adc
Definition: XMLProcessor.h:70
XMLProcessor::_LMapRowHBEF::det
std::string det
Definition: XMLProcessor.h:64
AlCaHLTBitMon_QueryRunRegistry.string
string string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
XMLProcessor::_LMapRowHBEF::rbx
std::string rbx
Definition: XMLProcessor.h:65
XMLProcessor::_LMapRowHBEF
Definition: XMLProcessor.h:58
XMLProcessor::_LMapRowHBEF::spigo
int spigo
Definition: XMLProcessor.h:78
XMLProcessor::_LMapRowHO::htrO
int htrO
Definition: XMLProcessor.h:108
impl
Definition: trackAlgoPriorityOrder.h:18
std
Definition: JetResolutionObject.h:76
XMLProcessor::_LMapRowHBEF::dcc_sl
int dcc_sl
Definition: XMLProcessor.h:77
XMLProcessor::_LMapRowHBEF::fedid
int fedid
Definition: XMLProcessor.h:88
XMLProcessor::_LMapRowHO::sectorO
int sectorO
Definition: XMLProcessor.h:99
XMLProcessor::write
int write(XMLDOMBlock *doc, std::string target="stdout")
Definition: XMLProcessor.cc:207
XMLProcessor::_LMapRowHO::dcc_slO
int dcc_slO
Definition: XMLProcessor.h:111
XMLProcessor::_DBConfig::_DBConfig
_DBConfig()
Definition: XMLProcessor.cc:70
XMLProcessor::addLMapHBEFDataset
int addLMapHBEFDataset(XMLDOMBlock *doc, LMapRowHBEF *row, std::string templateFileName)
Definition: XMLProcessor.cc:92
XMLProcessor::~XMLProcessor
virtual ~XMLProcessor()
Definition: XMLProcessor.cc:49
XMLProcessor::_LMapRowHBEF::rctcon
int rctcon
Definition: XMLProcessor.h:86
XMLProcessor::_LMapRowHO::sideO
int sideO
Definition: XMLProcessor.h:92
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
filterCSVwithJSON.target
target
Definition: filterCSVwithJSON.py:32
XMLProcessor.h
XMLProcessor::_LMapRowHO::qieO
int qieO
Definition: XMLProcessor.h:102
XMLProcessor::_LMapRowHBEF::rm
int rm
Definition: XMLProcessor.h:67
XMLProcessor::_LMapRowHBEF::side
int side
Definition: XMLProcessor.h:59
XMLProcessor::_LMapRowHBEF::pixel
int pixel
Definition: XMLProcessor.h:68
mps_fire.result
result
Definition: mps_fire.py:311
web.browse_db.loader
loader
Definition: browse_db.py:18
XMLProcessor::_LMapRowHO::phiO
int phiO
Definition: XMLProcessor.h:94
XMLProcessor::_LMapRowHBEF::slbin
std::string slbin
Definition: XMLProcessor.h:81
EcnaPython_AdcPeg12_S1_10_R170298_1_0_150_Dee0.cerr
cerr
Definition: EcnaPython_AdcPeg12_S1_10_R170298_1_0_150_Dee0.py:8
BeamSplash_cfg.version
version
Definition: BeamSplash_cfg.py:45
cms::concurrency::xercesInitialize
void xercesInitialize()
Definition: Xerces.cc:18
XMLProcessor::_LMapRowHO::etaO
int etaO
Definition: XMLProcessor.h:93
XMLProcessor::_LMapRowHBEF::slnam
std::string slnam
Definition: XMLProcessor.h:83
XMLProcessor::_LMapRowHBEF::slbin2
std::string slbin2
Definition: XMLProcessor.h:82
XMLProcessor::_LMapRowHO::rbxO
std::string rbxO
Definition: XMLProcessor.h:98