Go to the documentation of this file.00001 #include "CondFormats/EcalObjects/interface/EcalTPGLutIdMap.h"
00002
00003 #include "CondTools/Ecal/interface/EcalCondHeader.h"
00004
00005
00006
00007
00008
00009
00010 #include "DataFormats/EcalDetId/interface/EBDetId.h"
00011 #include "DataFormats/EcalDetId/interface/EEDetId.h"
00012
00013 #include "CondCore/Utilities/interface/PayLoadInspector.h"
00014 #include "CondCore/Utilities/interface/InspectorPythonWrapper.h"
00015
00016 #include <string>
00017 #include <sstream>
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 namespace cond {
00029 template<>
00030 std::string PayLoadInspector<EcalTPGLutIdMap>::summary() const {
00031 std::stringstream ss;
00032 EcalTPGLutIdMap::EcalTPGLutMapItr it;
00033 const EcalTPGLutIdMap::EcalTPGLutMap map=object().getMap();
00034
00035 ss<<std::endl;
00036 for (it=map.begin();it!=map.end();++it) {
00037 ss <<"LUT "<<(*it).first<<std::endl;
00038 const unsigned int * lut=(*it).second.getLut();
00039 for (unsigned int i=0;i<1024;++i) ss <<std::hex<<"0x"<<*lut++<<std::endl;
00040 }
00041
00042 return ss.str();
00043 }
00044 }
00045 PYTHON_WRAPPER(EcalTPGLutIdMap,EcalTPGLutIdMap);