CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
LutXml.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: CaloOnlineTools/HcalOnlineDb
4 // Class : LutXml
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Gena Kukartsev, kukarzev@fnal.gov
10 // Created: Tue Mar 18 14:30:20 CDT 2008
11 //
12 
13 #include <iostream>
14 #include <string>
15 #include <vector>
16 #include <sstream>
17 #include <iconv.h>
18 #include <sys/time.h>
19 
26 
27 using namespace std;
28 
29 //
30 //_____ following removed as a xalan-c component_____________________
31 //
32 // xalan-c init
33 //#include <xalanc/Include/PlatformDefinitions.hpp>
34 //#include <xalanc/XPath/XPathEvaluator.hpp>
35 //#include <xercesc/framework/LocalFileInputSource.hpp>
36 //XALAN_USING_XERCES(XMLPlatformUtils)
37 //#include <xalanc/XSLT/XSLTInputSource.hpp>
38 //#include <xalanc/PlatformSupport/XSLException.hpp>
39 //#include <xalanc/DOMSupport/XalanDocumentPrefixResolver.hpp>
40 //#include <xalanc/XPath/XObject.hpp>
41 //#include <xalanc/XalanSourceTree/XalanSourceTreeDOMSupport.hpp>
42 //#include <xalanc/XalanSourceTree/XalanSourceTreeInit.hpp>
43 //#include <xalanc/XalanSourceTree/XalanSourceTreeParserLiaison.hpp>
44 //using namespace xalanc;
45 
46 
47 
48 /*
49 LutXml & LutXml::operator+=( const LutXml & other)
50 {
51  DOMNodeList * _children = other.getDocumentConst()->getChildNodes();
52  int _length = _children->getLength();
53  std::cout << "Nodes added:" << _length << std::endl;
54  DOMNode * _node;
55  for(int i=0;i!=_length;i++){
56  _node = _children->item(i)->cloneNode(true);
57  this->getDocument()->getDocumentElement()->appendChild(_node);
58  }
59  return *this;
60 }
61 */
62 
63 
64 
66 {
67  ieta = -1000;
68  iphi = -1000;
69  depth = -1;
70  crate = -1;
71  slot = -1;
72  topbottom = -1;
73  fiber = -1;
74  fiberchan = -1;
75  lut_type = -1;
76  creationtag = "default_tag";
77 
78  char timebuf[50];
79  time_t _time = time( NULL );
80  //time_t _time = 1193697120;
81  //strftime( timebuf, 50, "%c", gmtime( &_time ) );
82  strftime( timebuf, 50, "%Y-%m-%d %H:%M:%S", gmtime( &_time ) );
83  creationstamp = timebuf;
84 
85  formatrevision = "default_revision";
86  targetfirmware = "default_revision";
87  generalizedindex = -1;
88 }
89 
90 LutXml::LutXml() : XMLDOMBlock( "CFGBrickSet", 1 )
91 {
92  init();
93 }
94 
95 
96 LutXml::LutXml(InputSource & _source ) : XMLDOMBlock( _source )
97 {
98  init();
99 }
100 
101 
103 {
104  init();
105 }
106 
107 
109 {
110  //delete brickElem; // belongs to document that belongs to parser???
113  //delete lut_map;
114 }
115 
116 
117 void LutXml::init( void )
118 {
119  root = XMLString::transcode("CFGBrickSet");
120  brick = XMLString::transcode("CFGBrick");
121  brickElem = 0;
122  //lut_map = 0;
123 }
124 
125 
126 std::vector<unsigned int> * LutXml::getLutFast( uint32_t det_id ){
127  /*
128  if (lut_map){
129  return &(*lut_map)[det_id];
130  }
131  else{
132  std::cerr << "LUT not found, null pointer is returned" << std::endl;
133  return 0;
134  }
135  */
136  if (lut_map.find(det_id) != lut_map.end()) return &(lut_map)[det_id];
137  std::cerr << "LUT not found, null pointer is returned" << std::endl;
138  return 0;
139 }
140 
141 //
142 //_____ following removed as a xalan-c component_____________________
143 //
144 /*
145 std::vector<unsigned int> LutXml::getLut( int lut_type, int crate, int slot, int topbottom, int fiber, int fiber_channel ){
146  std::vector<unsigned int> _lut;
147  //write();
148 
149  std::string _context = "/CFGBrickSet";
150  char buf[1024];
151  sprintf(buf,
152  "CFGBrick[Parameter[@name='LUT_TYPE']=%d and Parameter[@name='CRATE']=%d and Parameter[@name='SLOT']=%d and Parameter[@name='TOPBOTTOM']=%d and Parameter[@name='FIBER']=%d and Parameter[@name='FIBERCHAN']=%d]/Data",
153  lut_type, crate, slot, topbottom, fiber, fiber_channel);
154  std::string _expression(buf);
155 
156  std::cout << _expression << std::endl;
157 
158  const XObjectPtr theResult = eval_xpath(_context,_expression);
159 
160  if(theResult.null() == false){
161  std::cout << std::endl << theResult->str() << std::endl;
162  }
163 
164  const XalanDOMString & _string = theResult->str();
165  int _string_length = _string.length();
166  XalanVector<char> _str;
167  _string.transcode(_str);
168  unsigned int _base = 16;
169  unsigned int _item=0;
170  for (int i=0; i!=_string_length; i++){
171  bool _range;
172  char ch_cur = _str[i];
173  if (_base==16) _range = (ch_cur>='0' and ch_cur<='9') || (ch_cur>='a' and ch_cur<='f') || (ch_cur>='A' and ch_cur<='F');
174  else if (_base==10) _range = (ch_cur>='0' and ch_cur<='9');
175  if ( _range ){
176  if ( ch_cur>='a' and ch_cur<='f' ) ch_cur += 10-'a';
177  else if ( ch_cur>='A' and ch_cur<='F' ) ch_cur += 10-'A';
178  else if ( ch_cur>='0' and ch_cur<='9' ) ch_cur += -'0';
179  _item = _item*_base;
180  _item += ch_cur;
181  bool last_digit = false;
182  if ( (i+1)==_string_length ) last_digit=true;
183  else{
184  char ch_next = _str[i+1];
185  bool _range_next;
186  if (_base==16) _range_next = (ch_next>='0' and ch_next<='9') || (ch_next>='a' and ch_next<='f') || (ch_next>='A' and ch_next<='F');
187  else if (_base==10) _range_next = (ch_next>='0' and ch_next<='9');
188  if ( !_range_next ) last_digit=true;
189  }
190  if (last_digit){
191  _lut.push_back(_item);
192  _item=0;
193  }
194  }
195  }
196 
197  std::cout << "### ";
198  for (std::vector<unsigned int>::const_iterator l=_lut.begin(); l!=_lut.end(); l++){
199  std::cout << *l << " ";
200  }
201  std::cout << std::endl << std::endl;
202 
203  return _lut;
204 }
205 */
206 
207 
208 // checksums_xml is 0 by default
209 void LutXml::addLut( LutXml::Config & _config, XMLDOMBlock * checksums_xml )
210 {
211  DOMElement * rootElem = document -> getDocumentElement();
212 
213  brickElem = document->createElement( XMLProcessor::_toXMLCh("CFGBrick") );
214  rootElem->appendChild(brickElem);
215 
216  addParameter( "IETA", "int", _config.ieta );
217  addParameter( "IPHI", "int", _config.iphi );
218  addParameter( "CRATE", "int", _config.crate );
219  addParameter( "SLOT", "int", _config.slot );
220  addParameter( "TOPBOTTOM", "int", _config.topbottom );
221  addParameter( "LUT_TYPE", "int", _config.lut_type );
222  addParameter( "CREATIONTAG", "string", _config.creationtag );
223  addParameter( "CREATIONSTAMP", "string", _config.creationstamp );
224  addParameter( "FORMATREVISION", "string", _config.formatrevision );
225  addParameter( "TARGETFIRMWARE", "string", _config.targetfirmware );
226  addParameter( "GENERALIZEDINDEX", "int", _config.generalizedindex );
227  addParameter( "CHECKSUM", "string", get_checksum( _config.lut ) );
228 
229  if(_config.lut_type==1){ // linearizer LUT
230  addParameter( "FIBER", "int", _config.fiber );
231  addParameter( "FIBERCHAN", "int", _config.fiberchan );
232  addParameter( "DEPTH", "int", _config.depth );
233  addData( "128", "hex", _config.lut );
234  }
235  else if(_config.lut_type==2){ // compression LUT
236  addParameter( "SLB", "int", _config.fiber );
237  addParameter( "SLBCHAN", "int", _config.fiberchan );
238  addData( "1024", "hex", _config.lut );
239  }
240  else{
241  std::cout << "Unknown LUT type...produced XML will be incorrect" << std::endl;
242  }
243 
244  // if the pointer to the checksums XML was given,
245  // add the checksum to it
246  // checksums_xml is 0 unless explicitely given
247  if ( checksums_xml ){
248  add_checksum( checksums_xml->getDocument(), _config );
249  }
250 }
251 
252 DOMElement * LutXml::addData( std::string _elements, std::string _encoding, const std::vector<unsigned int>& _lut )
253 {
254  DOMElement * child = document -> createElement( XMLProcessor::_toXMLCh( "Data" ) );
255  child -> setAttribute( XMLProcessor::_toXMLCh("elements"), XMLProcessor::_toXMLCh( _elements ) );
256  child -> setAttribute( XMLProcessor::_toXMLCh("encoding"), XMLProcessor::_toXMLCh( _encoding ) );
257 
258  std::stringstream buf;
259 
260  for (std::vector<unsigned int>::const_iterator iter = _lut.begin();iter!=_lut.end();iter++){
261  char buf2[8];
262  sprintf(buf2,"%x",(*iter));
263  buf << buf2 << " ";
264  //buf << (*iter) << " ";
265  }
266 
267  std::string _value = buf . str();
268 
269  DOMText * data_value = document -> createTextNode( XMLProcessor::_toXMLCh(_value));
270  child -> appendChild( data_value );
271 
272  brickElem -> appendChild( child );
273 
274  return child;
275 }
276 
277 
278 
279 DOMElement * LutXml::add_checksum( DOMDocument * parent, Config & config )
280 {
281  //template
282  // <Data crate='0' slot='2' fpga='1' fiber='1' fiberchan='0' luttype='1' elements='1' encoding='hex'>c6cf91b39e3bff21623fb7366efda1fd</Data>
283  //
284  DOMElement * child = parent -> createElement( XMLProcessor::_toXMLCh( "Data" ) );
285  child -> setAttribute( XMLProcessor::_toXMLCh("crate"), XMLProcessor::_toXMLCh( config.crate ) );
286  child -> setAttribute( XMLProcessor::_toXMLCh("slot"), XMLProcessor::_toXMLCh( config.slot ) );
287  child -> setAttribute( XMLProcessor::_toXMLCh("fpga"), XMLProcessor::_toXMLCh( config.topbottom ) );
288  child -> setAttribute( XMLProcessor::_toXMLCh("fiber"), XMLProcessor::_toXMLCh( config.fiber ) );
289  child -> setAttribute( XMLProcessor::_toXMLCh("fiberchan"), XMLProcessor::_toXMLCh( config.fiberchan ) );
290  child -> setAttribute( XMLProcessor::_toXMLCh("luttype"), XMLProcessor::_toXMLCh( config.lut_type ) );
291  child -> setAttribute( XMLProcessor::_toXMLCh("elements"), XMLProcessor::_toXMLCh( "1" ) );
292  child -> setAttribute( XMLProcessor::_toXMLCh("encoding"), XMLProcessor::_toXMLCh( "hex" ) );
293  DOMText * checksum_value = parent -> createTextNode( XMLProcessor::_toXMLCh( get_checksum(config.lut) ));
294  child -> appendChild( checksum_value );
295 
296  parent -> getDocumentElement() -> appendChild( child );
297 
298  return child;
299 }
300 
301 
302 
303 DOMElement * LutXml::addParameter( std::string _name, std::string _type, std::string _value )
304 {
305  DOMElement * child = document -> createElement( XMLProcessor::_toXMLCh( "Parameter" ) );
306  child -> setAttribute( XMLProcessor::_toXMLCh("name"), XMLProcessor::_toXMLCh( _name ) );
307  child -> setAttribute( XMLProcessor::_toXMLCh("type"), XMLProcessor::_toXMLCh( _type ) );
308  DOMText * parameter_value = document -> createTextNode( XMLProcessor::_toXMLCh(_value));
309  child -> appendChild( parameter_value );
310 
311  brickElem -> appendChild( child );
312 
313  return child;
314 }
315 
316 
317 
318 DOMElement * LutXml::addParameter( std::string _name, std::string _type, int _value )
319 {
320  char buf[128];
321  sprintf(buf, "%d", _value);
322  std::string str_value = buf;
323  return addParameter( _name, _type, str_value );
324 }
325 
326 
327 
328 
330 {
331  return getString( brickElem );
332 }
333 
334 
335 
336 // do MD5 checksum
337 std::string LutXml::get_checksum( std::vector<unsigned int> & lut )
338 {
339  std::stringstream result;
340  md5_state_t md5er;
341  md5_byte_t digest[16];
342  md5_init(&md5er);
343  // linearizer LUT:
344  if ( lut . size() == 128 ){
345  unsigned char tool[2];
346  for (int i=0; i<128; i++) {
347  tool[0]=lut[i]&0xFF;
348  tool[1]=(lut[i]>>8)&0xFF;
349  md5_append(&md5er,tool,2);
350  }
351  }
352  // compression LUT:
353  else if ( lut . size() == 1024 ){
354  unsigned char tool;
355  for (int i=0; i<1024; i++) {
356  tool=lut[i]&0xFF;
357  md5_append(&md5er,&tool,1);
358  }
359  }
360  else{
361  std::cout << "ERROR: irregular LUT size, do not know how to compute checksum, exiting..." << std::endl;
362  exit(-1);
363  }
364  md5_finish(&md5er,digest);
365  for (int i=0; i<16; i++) result << std::hex << (((int)(digest[i]))&0xFF);
366 
367  //std::cout << "CHECKSUM: ";
368  //std::cout << result . str();
369  //std::cout << std::endl;
370 
371  return result . str();
372 }
373 
374 
376  //create_lut_map();
377  //std::cout << "Created map size: " << lut_map->size() << std::endl;
378  std::cout << "Created map size: " << lut_map.size() << std::endl;
379 
380  struct timeval _t;
381  gettimeofday( &_t, NULL );
382  double _time =(double)(_t . tv_sec) + (double)(_t . tv_usec)/1000000.0;
383 
384  HcalEmap _emap("./backup/official_emap_v6.04_080905.txt");
385  std::vector<HcalEmap::HcalEmapRow> & _map = _emap.get_map();
386  std::cout << "HcalEmap contains " << _map . size() << " entries" << std::endl;
387 
388  int _counter=0;
389  for (std::vector<HcalEmap::HcalEmapRow>::const_iterator row=_map.begin(); row!=_map.end(); row++){
390  if (row->subdet=="HB"){
391  HcalDetId det_id(HcalBarrel,row->ieta,row->iphi,row->idepth);
392  uint32_t raw_id = det_id.rawId();
393  std::vector<unsigned int> * l = getLutFast(raw_id);
394  if (l) _counter++;
395  }
396  if (row->subdet=="HE"){
397  HcalDetId det_id(HcalEndcap,row->ieta,row->iphi,row->idepth);
398  uint32_t raw_id = det_id.rawId();
399  std::vector<unsigned int> * l = getLutFast(raw_id);
400  if (l) _counter++;
401  }
402  if (row->subdet=="HF"){
403  HcalDetId det_id(HcalForward,row->ieta,row->iphi,row->idepth);
404  uint32_t raw_id = det_id.rawId();
405  std::vector<unsigned int> * l = getLutFast(raw_id);
406  if (l) _counter++;
407  }
408  if (row->subdet=="HO"){
409  HcalDetId det_id(HcalOuter,row->ieta,row->iphi,row->idepth);
410  uint32_t raw_id = det_id.rawId();
411  std::vector<unsigned int> * l = getLutFast(raw_id);
412  if (l) _counter++;
413  }
414  }
415  gettimeofday( &_t, NULL );
416  std::cout << "access to " << _counter << " HCAL channels took: " << (double)(_t . tv_sec) + (double)(_t . tv_usec)/1000000.0 - _time << "sec" << std::endl;
417 
418  //std::cout << std::endl;
419  //for (std::vector<unsigned int>::const_iterator i=l->begin();i!=l->end();i++){
420  // std::cout << *i << " ";
421  //}
422  //std::cout << std::endl;
423 
424  return 0;
425 }
426 
427 //
428 //_____ following removed as a xalan-c component_____________________
429 //
430 /*
431 int LutXml::test_xpath( std::string filename ){
432  // http://svn.apache.org/repos/asf/xalan/c/tags/Xalan-C_1_10_0/samples/SimpleXPathAPI/SimpleXPathAPI.cpp
433 
434  XMLProcessor::getInstance();
435 
436  read_xml_file_xalan( filename );
437 
438  std::string _context = "/CFGBrickSet";
439  //std::string _expression = "CFGBrick[Parameter[@name='IETA']=-1 and Parameter[@name='IPHI']=19]/Data";
440  std::string _expression = "CFGBrick[Parameter[@name='IETA']=-1]/Data";
441  std::cout << _expression << std::endl;
442 
443  const XObjectPtr theResult = eval_xpath(_context,_expression);
444 
445  if(theResult.null() == false){
446  std::cout << "Number of nodes: " << theResult->nodeset().getLength() << std::endl;
447 
448  std::cout << "The std::string value of the result is:"
449  << std::endl
450  << theResult->str()
451  << std::endl
452  << std::endl;
453  }
454  return 0;
455 }
456 */
457 
458 HcalSubdetector LutXml::subdet_from_crate(int crate, int eta, int depth){
460  // HBHE: 0,1,4,5,10,11,14,15,17
461  // HF: 2,9,12
462  // HO: 3,6,7,13
463 
464  if (crate==2 || crate==9 || crate==12) result=HcalForward;
465  else if (crate==3 || crate==6 || crate==7 || crate==13) result=HcalOuter;
466  else if (crate==0 || crate==1 || crate==4 || crate==5 || crate==10 || crate==11 || crate==14 || crate==15 || crate==17){
467  if (eta<16) result=HcalBarrel;
468  else if (eta>16) result=HcalEndcap;
469  else if (eta==16 && depth!=3) result=HcalBarrel;
470  else if (eta==16 && depth==3) result=HcalEndcap;
471  else{
472  std::cerr << "Impossible to determine HCAL subdetector!!!" << std::endl;
473  exit(-1);
474  }
475  }
476  else{
477  std::cerr << "Impossible to determine HCAL subdetector!!!" << std::endl;
478  exit(-1);
479  }
480 
481  return result;
482 }
483 
484 
485 int LutXml::a_to_i(char * inbuf){
486  int result;
487  sscanf(inbuf,"%d",&result);
488  return result;
489 }
490 
491 // organize all LUTs in XML into a map for fast access
492 //
493 // FIXME: uses hardcoded CRATE-to-subdetector mapping
494 // FIXME: it would be better to use some official map
495 //
497  //delete lut_map;
498  lut_map.clear();
499  //lut_map = new std::map<uint32_t,std::vector<unsigned int> >();
500 
501  if (document){
502  //DOMElement * rootElem =
503  DOMNodeList * brick_list = document->getDocumentElement()->getElementsByTagName(brick);
504  int n_of_bricks = brick_list->getLength();
505  for(int i=0; i!=n_of_bricks; i++){
506  DOMElement * aBrick = (DOMElement *)(brick_list->item(i));
507  DOMNodeList * par_list = aBrick->getElementsByTagName(XMLString::transcode("Parameter"));
508  int n_of_par = par_list->getLength();
509  int ieta=-99;
510  int iphi=-99;
511  int depth=-99;
512  int crate=-99;
513  int lut_type=-99;
514  HcalSubdetector subdet;
515  for(int j=0; j!=n_of_par; j++){
516  //std::cout << "DEBUG: i,j: " << i << ", " << j << std::endl;
517  DOMElement * aPar = (DOMElement *)(par_list->item(j));
518  char * aName = XMLString::transcode( aPar->getAttribute(XMLProcessor::_toXMLCh("name")) );
519  if ( strcmp(aName, "IETA")==0 ) ieta=a_to_i(XMLString::transcode(aPar->getFirstChild()->getNodeValue()));
520  if ( strcmp(aName, "IPHI")==0 ) iphi=a_to_i(XMLString::transcode(aPar->getFirstChild()->getNodeValue()));
521  if ( strcmp(aName, "DEPTH")==0 ) depth=a_to_i(XMLString::transcode(aPar->getFirstChild()->getNodeValue()));
522  if ( strcmp(aName, "CRATE")==0 ) crate=a_to_i(XMLString::transcode(aPar->getFirstChild()->getNodeValue()));
523  if ( strcmp(aName, "LUT_TYPE")==0 ) lut_type=a_to_i(XMLString::transcode(aPar->getFirstChild()->getNodeValue()));
524  }
525  subdet=subdet_from_crate(crate,abs(ieta),depth);
526  //std::cerr << "DEBUG: eta,phi,depth,crate,type,subdet: " << ieta << ", " << iphi << ", " << depth << ", " << crate << ", " << lut_type << ", " << subdet << std::endl;
527  DOMElement * _data = (DOMElement *)(aBrick->getElementsByTagName(XMLString::transcode("Data"))->item(0));
528  char * _str = XMLString::transcode(_data->getFirstChild()->getNodeValue());
529  //std::cout << _str << std::endl;
530  //
531  // get the LUT vector
532  int _string_length = strlen(_str);
533  std::vector<unsigned int> _lut;
534  unsigned int _base = 16;
535  unsigned int _item=0;
536  for (int i=0; i!=_string_length; i++){
537  bool _range = false;
538  char ch_cur = _str[i];
539  if (_base==16) _range = (ch_cur>='0' and ch_cur<='9') || (ch_cur>='a' and ch_cur<='f') || (ch_cur>='A' and ch_cur<='F');
540  else if (_base==10) _range = (ch_cur>='0' and ch_cur<='9');
541  if ( _range ){
542  if ( ch_cur>='a' and ch_cur<='f' ) ch_cur += 10-'a';
543  else if ( ch_cur>='A' and ch_cur<='F' ) ch_cur += 10-'A';
544  else if ( ch_cur>='0' and ch_cur<='9' ) ch_cur += -'0';
545  _item = _item*_base;
546  _item += ch_cur;
547  bool last_digit = false;
548  if ( (i+1)==_string_length ) last_digit=true;
549  else{
550  char ch_next = _str[i+1];
551  bool _range_next = false;
552  if (_base==16) _range_next = (ch_next>='0' and ch_next<='9') || (ch_next>='a' and ch_next<='f') || (ch_next>='A' and ch_next<='F');
553  else if (_base==10) _range_next = (ch_next>='0' and ch_next<='9');
554  if ( !_range_next ) last_digit=true;
555  }
556  if (last_digit){
557  _lut.push_back(_item);
558  _item=0;
559  }
560  }
561  }
562  // filling the map
563  uint32_t _key = 0;
564  if (lut_type==1){
565  HcalDetId _id(subdet,ieta,iphi,depth);
566  _key = _id.rawId();
567  }
568  else if (lut_type==2){
569  HcalTrigTowerDetId _id(ieta,iphi);
570  _key = _id.rawId();
571  }
572  lut_map.insert(std::pair<uint32_t,std::vector<unsigned int> >(_key,_lut));
573  }
574  }
575  else{
576  std::cerr << "XML file with LUTs is not loaded, cannot create map!" << std::endl;
577  }
578 
579 
580 
581  return 0;
582 }
583 
585  return lut_map.begin();
586 }
587 
589  return lut_map.end();
590 }
591 
593  return lut_map.find(id);
594 }
void md5_init(md5_state_t *pms)
DOMElement * addParameter(std::string _name, std::string _type, std::string _value)
Definition: LutXml.cc:303
int i
Definition: DBlmapReader.cc:9
std::string targetfirmware
Definition: LutXml.h:39
DOMDocument * document
Definition: XMLDOMBlock.h:97
int generalizedindex
Definition: LutXml.h:40
list parent
Definition: dbtoconf.py:74
HcalSubdetector subdet_from_crate(int crate, int eta, int depth)
Definition: LutXml.cc:458
XMLCh * root
Definition: LutXml.h:81
std::map< uint32_t, std::vector< unsigned int > > lut_map
Definition: LutXml.h:92
int create_lut_map(void)
Definition: LutXml.cc:496
#define NULL
Definition: scimark2.h:8
std::map< uint32_t, std::vector< unsigned int > >::const_iterator const_iterator
Definition: LutXml.h:74
T eta() const
int a_to_i(char *inbuf)
Definition: LutXml.cc:485
std::string & getCurrentBrick(void)
Definition: LutXml.cc:329
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
int topbottom
Definition: LutXml.h:35
std::string & getString(void)
Definition: XMLDOMBlock.cc:459
std::vector< unsigned int > lut
Definition: LutXml.h:41
void md5_finish(md5_state_t *pms, md5_byte_t digest[16])
std::string creationtag
Definition: LutXml.h:36
tuple result
Definition: query.py:137
DOMDocument * getDocument(void)
Definition: XMLDOMBlock.cc:312
static std::string get_checksum(std::vector< unsigned int > &lut)
Definition: LutXml.cc:337
HcalSubdetector
Definition: HcalAssistant.h:31
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int j
Definition: DBlmapReader.cc:9
DOMElement * add_checksum(DOMDocument *parent, Config &config)
Definition: LutXml.cc:279
void init(void)
Definition: LutXml.cc:117
tuple lut
Definition: lumiPlot.py:244
std::string formatrevision
Definition: LutXml.h:38
const_iterator find(uint32_t) const
Definition: LutXml.cc:592
unsigned char md5_byte_t
Definition: md5.h:62
DOMElement * addData(std::string _elements, std::string _encoding, const std::vector< unsigned int > &_lut)
Definition: LutXml.cc:252
virtual ~LutXml()
Definition: LutXml.cc:108
DOMElement * brickElem
Definition: LutXml.h:89
std::vector< HcalEmap::HcalEmapRow > & get_map(void)
Definition: HcalEmap.cc:72
static XMLCh * _toXMLCh(std::string temp)
Definition: XMLProcessor.h:184
std::vector< unsigned int > * getLutFast(uint32_t det_id)
Definition: LutXml.cc:126
tuple targetfirmware
Definition: lut2db_cfg.py:26
void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes)
XMLCh * brick
Definition: LutXml.h:82
int test_access(std::string filename)
Definition: LutXml.cc:375
tuple filename
Definition: lut2db_cfg.py:20
tuple cout
Definition: gather_cfg.py:121
tuple creationtag
Definition: lut2db_cfg.py:27
void addLut(Config &_config, XMLDOMBlock *checksums_xml=0)
Definition: LutXml.cc:209
const_iterator begin() const
Definition: LutXml.cc:584
int lut_type
Definition: LutXml.h:35
std::string creationstamp
Definition: LutXml.h:37
int fiberchan
Definition: LutXml.h:35
LutXml()
Definition: LutXml.cc:90
tuple size
Write out results.
Helper class to handle FWLite file input sources.
const_iterator end() const
Definition: LutXml.cc:588