#include "DQM/HcalMonitorClient/interface/HcalDetDiagLaserClient.h"
#include "DQM/HcalMonitorClient/interface/HcalClientUtils.h"
#include "DQM/HcalMonitorClient/interface/HcalHistoUtils.h"
#include "CondFormats/HcalObjects/interface/HcalChannelStatus.h"
#include "CondFormats/HcalObjects/interface/HcalChannelQuality.h"
#include "CondFormats/HcalObjects/interface/HcalCondObjectContainer.h"
#include "CalibCalorimetry/HcalAlgos/interface/HcalLogicalMapGenerator.h"
#include "CondFormats/HcalObjects/interface/HcalLogicalMap.h"
#include <iostream>
Go to the source code of this file.
Classes | |
struct | Raddam_ch |
Functions | |
static void | printTableHeader (ofstream &file, std::string header) |
static void | printTableLine (ofstream &file, int ind, HcalDetId &detid, HcalFrontEndId &lmap_entry, HcalElectronicsId &emap_entry, std::string comment="") |
static void | printTableTail (ofstream &file) |
Variables | |
Raddam_ch | RADDAM_CH [56] |
static void printTableHeader | ( | ofstream & | file, |
std::string | header | ||
) | [static] |
Definition at line 296 of file HcalDetDiagLaserClient.cc.
Referenced by ZDCMonitorClient::htmlOutput().
{ file << "</html><html xmlns=\"http://www.w3.org/1999/xhtml\">"<< endl; file << "<head>"<< endl; file << "<meta http-equiv=\"Content-Type\" content=\"text/html\"/>"<< endl; file << "<title>"<< header <<"</title>"<< endl; file << "<style type=\"text/css\">"<< endl; file << " body,td{ background-color: #FFFFCC; font-family: arial, arial ce, helvetica; font-size: 12px; }"<< endl; file << " td.s0 { font-family: arial, arial ce, helvetica; }"<< endl; file << " td.s1 { font-family: arial, arial ce, helvetica; font-weight: bold; background-color: #FFC169; text-align: center;}"<< endl; file << " td.s2 { font-family: arial, arial ce, helvetica; background-color: #eeeeee; }"<< endl; file << " td.s3 { font-family: arial, arial ce, helvetica; background-color: #d0d0d0; }"<< endl; file << " td.s4 { font-family: arial, arial ce, helvetica; background-color: #FFC169; }"<< endl; file << "</style>"<< endl; file << "<body>"<< endl; file << "<table>"<< endl; }
static void printTableLine | ( | ofstream & | file, |
int | ind, | ||
HcalDetId & | detid, | ||
HcalFrontEndId & | lmap_entry, | ||
HcalElectronicsId & | emap_entry, | ||
std::string | comment = "" |
||
) | [static] |
Definition at line 312 of file HcalDetDiagLaserClient.cc.
References HcalFrontEndId::adc(), comment, HcalElectronicsId::dccid(), HcalDetId::depth(), HcalFrontEndId::fiberChannel(), HcalElectronicsId::fiberIndex(), HcalElectronicsId::htrSlot(), HcalElectronicsId::htrTopBottom(), HcalDetId::ieta(), HcalDetId::iphi(), HcalFrontEndId::pixel(), HcalFrontEndId::qieCard(), HcalFrontEndId::rbx(), HcalElectronicsId::readoutVMECrateId(), HcalFrontEndId::rm(), HcalFrontEndId::rmFiber(), and HcalElectronicsId::spigot().
Referenced by ZDCMonitorClient::htmlOutput().
{ if(ind==0){ file << "<tr>"; file << "<td class=\"s4\" align=\"center\">#</td>" << endl; file << "<td class=\"s1\" align=\"center\">ETA</td>" << endl; file << "<td class=\"s1\" align=\"center\">PHI</td>" << endl; file << "<td class=\"s1\" align=\"center\">DEPTH</td>"<< endl; file << "<td class=\"s1\" align=\"center\">RBX</td>" << endl; file << "<td class=\"s1\" align=\"center\">RM</td>" << endl; file << "<td class=\"s1\" align=\"center\">PIXEL</td>" << endl; file << "<td class=\"s1\" align=\"center\">RM_FIBER</td>" << endl; file << "<td class=\"s1\" align=\"center\">FIBER_CH</td>" << endl; file << "<td class=\"s1\" align=\"center\">QIE</td>" << endl; file << "<td class=\"s1\" align=\"center\">ADC</td>" << endl; file << "<td class=\"s1\" align=\"center\">CRATE</td>" << endl; file << "<td class=\"s1\" align=\"center\">DCC</td>" << endl; file << "<td class=\"s1\" align=\"center\">SPIGOT</td>" << endl; file << "<td class=\"s1\" align=\"center\">HTR_FIBER</td>" << endl; file << "<td class=\"s1\" align=\"center\">HTR_SLOT</td>" << endl; file << "<td class=\"s1\" align=\"center\">HTR_FPGA</td>" << endl; if(comment[0]!=0) file << "<td class=\"s1\" align=\"center\">Comment</td>" << endl; file << "</tr>" << endl; } std::string raw_class; file << "<tr>"<< endl; if((ind%2)==1){ raw_class="<td class=\"s2\" align=\"center\">"; }else{ raw_class="<td class=\"s3\" align=\"center\">"; } file << "<td class=\"s4\" align=\"center\">" << ind+1 <<"</td>"<< endl; file << raw_class<< detid.ieta()<<"</td>"<< endl; file << raw_class<< detid.iphi()<<"</td>"<< endl; file << raw_class<< detid.depth() <<"</td>"<< endl; file << raw_class<< lmap_entry.rbx()<<"</td>"<< endl; file << raw_class<< lmap_entry.rm() <<"</td>"<< endl; file << raw_class<< lmap_entry.pixel()<<"</td>"<< endl; file << raw_class<< lmap_entry.rmFiber() <<"</td>"<< endl; file << raw_class<< lmap_entry.fiberChannel()<<"</td>"<< endl; file << raw_class<< lmap_entry.qieCard() <<"</td>"<< endl; file << raw_class<< lmap_entry.adc()<<"</td>"<< endl; file << raw_class<< emap_entry.readoutVMECrateId()<<"</td>"<< endl; file << raw_class<< emap_entry.dccid()<<"</td>"<< endl; file << raw_class<< emap_entry.spigot()<<"</td>"<< endl; file << raw_class<< emap_entry.fiberIndex()<<"</td>"<< endl; file << raw_class<< emap_entry.htrSlot()<<"</td>"<< endl; file << raw_class<< emap_entry.htrTopBottom()<<"</td>"<< endl; if(comment[0]!=0) file << raw_class<< comment<<"</td>"<< endl; }
static void printTableTail | ( | ofstream & | file | ) | [static] |
Definition at line 361 of file HcalDetDiagLaserClient.cc.
Referenced by ZDCMonitorClient::htmlOutput().
{{-30,15},{-32,15},{-34,15},{-36,15},{-38,15},{-40,15},{-41,15}, {-30,35},{-32,35},{-34,35},{-36,35},{-38,35},{-40,35},{-41,35}, {-30,51},{-32,51},{-34,51},{-36,51},{-38,51},{-40,51},{-41,51}, {-30,71},{-32,71},{-34,71},{-36,71},{-38,71},{-40,71},{-41,71}, {30, 01},{32, 01},{34, 01},{36, 01},{38, 01},{40, 71},{41, 71}, {30, 21},{32, 21},{34, 21},{36, 21},{38, 21},{40, 19},{41, 19}, {30, 37},{32, 37},{34, 37},{36, 37},{38, 37},{40, 35},{41, 35}, {30, 57},{32, 57},{34, 57},{36, 57},{38, 57},{40, 55},{41, 55}}
Definition at line 26 of file HcalDetDiagLaserClient.cc.