#include <DQMFEDIntegrityClient.h>
Public Member Functions | |
DQMFEDIntegrityClient (const edm::ParameterSet &) | |
~DQMFEDIntegrityClient () | |
Protected Member Functions | |
void | analyze (const edm::Event &e, const edm::EventSetup &c) |
Analyze. | |
void | beginJob () |
void | beginRun (const edm::Run &r, const edm::EventSetup &c) |
void | endJob () |
void | endLuminosityBlock (const edm::LuminosityBlock &l, const edm::EventSetup &c) |
void | endRun (const edm::Run &r, const edm::EventSetup &c) |
Private Member Functions | |
void | fillHistograms () |
void | initialize () |
Private Attributes | |
DQMStore * | dbe_ |
MonitorElement * | FedEntries |
MonitorElement * | FedFatal |
std::string | fedFolderName |
MonitorElement * | FedNonFatal |
bool | fillInEventloop |
bool | fillOnEndJob |
bool | fillOnEndLumi |
bool | fillOnEndRun |
std::string | moduleName |
int | NBINS |
edm::ParameterSet | parameters_ |
MonitorElement * | reportSummary |
MonitorElement * | reportSummaryContent [10] |
MonitorElement * | reportSummaryMap |
float | SummaryContent [10] |
float | XMAX |
float | XMIN |
Definition at line 28 of file DQMFEDIntegrityClient.h.
DQMFEDIntegrityClient::DQMFEDIntegrityClient | ( | const edm::ParameterSet & | ps | ) |
Definition at line 21 of file DQMFEDIntegrityClient.cc.
References fedFolderName, fillInEventloop, fillOnEndJob, fillOnEndLumi, fillOnEndRun, edm::ParameterSet::getUntrackedParameter(), initialize(), moduleName, and parameters_.
{ parameters_ = ps; initialize(); fillInEventloop = ps.getUntrackedParameter<bool>("fillInEventloop",false); fillOnEndRun = ps.getUntrackedParameter<bool>("fillOnEndRun",false); fillOnEndJob = ps.getUntrackedParameter<bool>("fillOnEndJob",false); fillOnEndLumi = ps.getUntrackedParameter<bool>("fillOnEndLumi",true); moduleName = ps.getUntrackedParameter<std::string>("moduleName", "FED"); fedFolderName = ps.getUntrackedParameter<std::string>("fedFolderName", "FEDIntegrity"); }
DQMFEDIntegrityClient::~DQMFEDIntegrityClient | ( | ) |
Definition at line 34 of file DQMFEDIntegrityClient.cc.
{ }
void DQMFEDIntegrityClient::analyze | ( | const edm::Event & | e, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
Analyze.
Implements edm::EDAnalyzer.
Definition at line 164 of file DQMFEDIntegrityClient.cc.
References fillHistograms(), and fillInEventloop.
{ if (fillInEventloop) fillHistograms(); }
void DQMFEDIntegrityClient::beginJob | ( | void | ) | [protected, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 47 of file DQMFEDIntegrityClient.cc.
References DQMStore::book1D(), DQMStore::book2D(), DQMStore::bookFloat(), dbe_, FedEntries, FedFatal, fedFolderName, FedNonFatal, MonitorElement::Fill(), i, moduleName, NBINS, cppFunctionSkipper::operator, reportSummary, reportSummaryContent, reportSummaryMap, MonitorElement::setAxisTitle(), MonitorElement::setBinLabel(), DQMStore::setCurrentFolder(), SummaryContent, XMAX, and XMIN.
{ NBINS = 850; XMIN = 0.; XMAX = 850.; dbe_ = edm::Service<DQMStore>().operator->(); // ---------------------------------------------------------------------------------- std::string currentFolder = moduleName + "/" + fedFolderName ; dbe_->setCurrentFolder(currentFolder.c_str()); FedEntries = dbe_->book1D("FedEntries", "FED Entries", NBINS, XMIN, XMAX); FedFatal = dbe_->book1D("FedFatal", "FED Fatal Errors", NBINS, XMIN, XMAX); FedNonFatal = dbe_->book1D("FedNonFatal", "FED Non Fatal Errors", NBINS, XMIN, XMAX); FedEntries->setAxisTitle( "", 1); FedFatal->setAxisTitle( "", 1); FedNonFatal->setAxisTitle("", 1); FedEntries->setAxisTitle( "", 2); FedFatal->setAxisTitle( "", 2); FedNonFatal->setAxisTitle("", 2); FedEntries->setBinLabel(11, "PIXEL", 1); FedEntries->setBinLabel(221, "SIST", 1); FedEntries->setBinLabel(606, "EE", 1); FedEntries->setBinLabel(628, "EB", 1); FedEntries->setBinLabel(651, "EE", 1); FedEntries->setBinLabel(550, "ES", 1); FedEntries->setBinLabel(716, "HCAL", 1); FedEntries->setBinLabel(754, "CSC", 1); FedEntries->setBinLabel(772, "DT", 1); FedEntries->setBinLabel(791, "RPC", 1); FedEntries->setBinLabel(804, "L1T", 1); FedFatal->setBinLabel(11, "PIXEL", 1); FedFatal->setBinLabel(221, "SIST", 1); FedFatal->setBinLabel(606, "EE", 1); FedFatal->setBinLabel(628, "EB", 1); FedFatal->setBinLabel(651, "EE", 1); FedFatal->setBinLabel(550, "ES", 1); FedFatal->setBinLabel(716, "HCAL", 1); FedFatal->setBinLabel(754, "CSC", 1); FedFatal->setBinLabel(772, "DT", 1); FedFatal->setBinLabel(791, "RPC", 1); FedFatal->setBinLabel(804, "L1T", 1); FedNonFatal->setBinLabel(11, "PIXEL", 1); FedNonFatal->setBinLabel(221, "SIST", 1); FedNonFatal->setBinLabel(606, "EE", 1); FedNonFatal->setBinLabel(628, "EB", 1); FedNonFatal->setBinLabel(651, "EE", 1); FedNonFatal->setBinLabel(550, "ES", 1); FedNonFatal->setBinLabel(716, "HCAL", 1); FedNonFatal->setBinLabel(754, "CSC", 1); FedNonFatal->setBinLabel(772, "DT", 1); FedNonFatal->setBinLabel(791, "RPC", 1); FedNonFatal->setBinLabel(804, "L1T", 1); //----------------------------------------------------------------------------------- currentFolder = moduleName + "/EventInfo"; dbe_->setCurrentFolder(currentFolder.c_str()); reportSummary = dbe_->bookFloat("reportSummary"); int nSubsystems = 10; if(reportSummary) reportSummary->Fill(1.); currentFolder = moduleName + "/EventInfo/reportSummaryContents"; dbe_->setCurrentFolder(currentFolder.c_str()); reportSummaryContent[0] = dbe_->bookFloat("CSC FEDs"); reportSummaryContent[1] = dbe_->bookFloat("DT FEDs"); reportSummaryContent[2] = dbe_->bookFloat("EB FEDs"); reportSummaryContent[3] = dbe_->bookFloat("EE FEDs"); reportSummaryContent[4] = dbe_->bookFloat("ES FEDs"); reportSummaryContent[5] = dbe_->bookFloat("Hcal FEDs"); reportSummaryContent[6] = dbe_->bookFloat("L1T FEDs"); reportSummaryContent[7] = dbe_->bookFloat("Pixel FEDs"); reportSummaryContent[8] = dbe_->bookFloat("RPC FEDs"); reportSummaryContent[9] = dbe_->bookFloat("SiStrip FEDs"); // initialize reportSummaryContents to 1 for (int i = 0; i < nSubsystems; ++i) { SummaryContent[i] = 1.; reportSummaryContent[i]->Fill(1.); } currentFolder = moduleName + "/EventInfo"; dbe_->setCurrentFolder(currentFolder.c_str()); reportSummaryMap = dbe_->book2D("reportSummaryMap", "FED Report Summary Map", 1, 1, 2, 10, 1, 11); reportSummaryMap->setAxisTitle("", 1); reportSummaryMap->setAxisTitle("", 2); reportSummaryMap->setBinLabel( 1, " ", 1); reportSummaryMap->setBinLabel(10, "CSC", 2); reportSummaryMap->setBinLabel( 9, "DT", 2); reportSummaryMap->setBinLabel( 8, "EB", 2); reportSummaryMap->setBinLabel( 7, "EE", 2); reportSummaryMap->setBinLabel( 6, "ES", 2); reportSummaryMap->setBinLabel( 5, "Hcal", 2); reportSummaryMap->setBinLabel( 4, "L1T", 2); reportSummaryMap->setBinLabel( 3, "Pixel", 2); reportSummaryMap->setBinLabel( 2, "RPC", 2); reportSummaryMap->setBinLabel( 1, "SiStrip", 2); }
void DQMFEDIntegrityClient::beginRun | ( | const edm::Run & | r, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
void DQMFEDIntegrityClient::endJob | ( | void | ) | [protected, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 358 of file DQMFEDIntegrityClient.cc.
References fillHistograms(), and fillOnEndJob.
{ if (fillOnEndJob) fillHistograms(); }
void DQMFEDIntegrityClient::endLuminosityBlock | ( | const edm::LuminosityBlock & | l, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 168 of file DQMFEDIntegrityClient.cc.
References fillHistograms(), and fillOnEndLumi.
{ if (fillOnEndLumi) fillHistograms(); }
void DQMFEDIntegrityClient::endRun | ( | const edm::Run & | r, |
const edm::EventSetup & | c | ||
) | [protected, virtual] |
Reimplemented from edm::EDAnalyzer.
Definition at line 353 of file DQMFEDIntegrityClient.cc.
References fillHistograms(), and fillOnEndRun.
{ if (fillOnEndRun) fillHistograms(); }
void DQMFEDIntegrityClient::fillHistograms | ( | void | ) | [private] |
Definition at line 172 of file DQMFEDIntegrityClient.cc.
References newFWLiteAna::bin, prof2calltree::count, dbe_, python::tagInventory::entries, FedEntries, FedFatal, fedFolderName, FedNonFatal, MonitorElement::Fill(), DQMStore::get(), MonitorElement::getNbinsX(), MonitorElement::getTH1F(), gen::k, reportSummary, reportSummaryContent, reportSummaryMap, MonitorElement::setBinContent(), SummaryContent, and dtDQMClient_cfg::threshold.
Referenced by analyze(), endJob(), endLuminosityBlock(), and endRun().
{ // FED Entries // dbe_->showDirStructure(); std::vector<std::string> entries; entries.push_back("CSC/" + fedFolderName + "/FEDEntries"); entries.push_back("DT/" + fedFolderName + "/FEDEntries"); entries.push_back("EcalBarrel/" + fedFolderName + "/FEDEntries"); entries.push_back("EcalEndcap/" + fedFolderName + "/FEDEntries"); entries.push_back("EcalPreshower/" + fedFolderName + "/FEDEntries"); entries.push_back("Hcal/" + fedFolderName + "/FEDEntries"); entries.push_back("L1T/" + fedFolderName + "/FEDEntries"); entries.push_back("Pixel/" + fedFolderName + "/FEDEntries"); entries.push_back("RPC/" + fedFolderName + "/FEDEntries"); entries.push_back("SiStrip/" + fedFolderName + "/FEDEntries"); for(std::vector<std::string>::const_iterator ent = entries.begin(); ent != entries.end(); ++ent) { if( !(dbe_->get(*ent)) ) { // cout << ">> Endluminosity No histogram! <<" << endl; continue; } MonitorElement * me = dbe_->get(*ent); if (TH1F * rootHisto = me->getTH1F()) { int xmin = 0; int Nbins = me->getNbinsX(); float entry = 0.; xmin = (int)rootHisto->GetXaxis()->GetXmin(); if(*ent == "L1T/" + fedFolderName +"/FEDEntries") xmin = xmin + 800; for(int bin = 1; bin <= Nbins ; ++bin) { int id = xmin+bin; entry = rootHisto->GetBinContent(bin); if(entry > 0.) FedEntries->setBinContent(id, entry); } } } // FED Fatal int nSubsystems = 10; std::vector<std::string> fatal; fatal.push_back("CSC/" + fedFolderName + "/FEDFatal"); fatal.push_back("DT/" + fedFolderName + "/FEDFatal"); fatal.push_back("EcalBarrel/" + fedFolderName + "/FEDFatal"); fatal.push_back("EcalEndcap/" + fedFolderName + "/FEDFatal"); fatal.push_back("EcalPreshower/" + fedFolderName + "/FEDFatal"); fatal.push_back("Hcal/" + fedFolderName + "/FEDFatal"); fatal.push_back("L1T/" + fedFolderName + "/FEDFatal"); fatal.push_back("Pixel/" + fedFolderName + "/FEDFatal"); fatal.push_back("RPC/" + fedFolderName + "/FEDFatal"); fatal.push_back("SiStrip/" + fedFolderName + "/FEDFatal"); int k = 0, count = 0; float sum = 0.; std::vector<std::string>::const_iterator ent = entries.begin(); for(std::vector<std::string>::const_iterator fat = fatal.begin(); fat != fatal.end(); ++fat) { if( !(dbe_->get(*fat)) ) { // cout << ">> No histogram! <<" << endl; reportSummaryContent[k]->Fill(-1); reportSummaryMap->setBinContent(1, nSubsystems-k, -1); k++; ent++; continue; } MonitorElement * me = dbe_->get(*fat); MonitorElement * meNorm = dbe_->get(*ent); // cout << "Path : " << me->getFullname() << endl; int Nbins = me->getNbinsX(); float entry = 0.; float norm = 0.; if (TH1F * rootHisto = me->getTH1F()) { if (TH1F * rootHistoNorm = meNorm->getTH1F()) { int xmin = 0; int xmax = 0; xmin = (int)rootHisto->GetXaxis()->GetXmin(); if(*fat == "L1T/" + fedFolderName + "/FEDFatal") xmin = xmin + 800; xmax = (int)rootHisto->GetXaxis()->GetXmax(); if(*fat == "L1T/" + fedFolderName + "/FEDFatal") xmax = xmax + 800; // cout << "FED ID range : " << xmin << " - " << xmax << endl; for(int bin = 1; bin <= Nbins ; ++bin) { int id = xmin+bin; entry += rootHisto->GetBinContent(bin); norm += rootHistoNorm->GetBinContent(bin); // cout << *fat << "errors = " << entry << "\tnorm = " << norm << endl; // cout << "Bin content : " << entry << endl; if(entry > 0.) FedFatal->setBinContent(id, entry); } } } if (norm > 0) SummaryContent[k] = 1.0 - entry/norm; // cout << "Summary Content : " << SummaryContent[k] << endl; reportSummaryContent[k]->Fill(SummaryContent[k]); float threshold = 1.; if (k==2 || k==3) // for EE and EB only show yellow when more than 1% errors. threshold = 0.99; if (SummaryContent[k] < threshold && SummaryContent[k] >=0.95) SummaryContent[k] = 0.949; reportSummaryMap->setBinContent(1, nSubsystems-k, SummaryContent[k]); sum = sum + SummaryContent[k]; k++; ent++; count++; } if (count > 0) reportSummary->Fill( sum/(float)count ); // FED Non Fatal std::vector<std::string> nonfatal; nonfatal.push_back("CSC/" + fedFolderName + "/FEDNonFatal"); nonfatal.push_back("DT/" + fedFolderName + "/FEDNonFatal"); nonfatal.push_back("EcalBarrel/" + fedFolderName + "/FEDNonFatal"); nonfatal.push_back("EcalEndcap/" + fedFolderName + "/FEDNonFatal"); nonfatal.push_back("EcalPreshower/" + fedFolderName + "/FEDNonFatal"); nonfatal.push_back("Hcal/" + fedFolderName + "/FEDNonFatal"); nonfatal.push_back("L1T/" + fedFolderName + "/FEDNonFatal"); nonfatal.push_back("Pixel/" + fedFolderName + "/FEDNonFatal"); nonfatal.push_back("RPC/" + fedFolderName + "/FEDNonFatal"); nonfatal.push_back("SiStrip/" + fedFolderName + "/FEDNonFatal"); for(std::vector<std::string>::const_iterator non = nonfatal.begin(); non != nonfatal.end(); ++non) { if( !(dbe_->get(*non)) ) { // cout << ">> No histogram! <<" << endl; continue; } MonitorElement * me = dbe_->get(*non); if (TH1F * rootHisto = me->getTH1F()) { int xmin = 0; int Nbins = me->getNbinsX(); float entry = 0.; xmin = (int)rootHisto->GetXaxis()->GetXmin(); if(*non == "L1T/" + fedFolderName + "/FEDNonFatal") xmin = xmin + 800; for(int bin = 1; bin <= Nbins ; ++bin) { int id = xmin+bin; entry = rootHisto->GetBinContent(bin); if(entry > 0.) FedNonFatal->setBinContent(id, entry); } } } }
void DQMFEDIntegrityClient::initialize | ( | ) | [private] |
Definition at line 39 of file DQMFEDIntegrityClient.cc.
References dbe_, and cppFunctionSkipper::operator.
Referenced by DQMFEDIntegrityClient().
{ // get back-end interface dbe_ = edm::Service<DQMStore>().operator->(); }
DQMStore* DQMFEDIntegrityClient::dbe_ [private] |
Definition at line 53 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), fillHistograms(), and initialize().
MonitorElement* DQMFEDIntegrityClient::FedEntries [private] |
Definition at line 61 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), and fillHistograms().
MonitorElement* DQMFEDIntegrityClient::FedFatal [private] |
Definition at line 62 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), and fillHistograms().
std::string DQMFEDIntegrityClient::fedFolderName [private] |
Definition at line 74 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), DQMFEDIntegrityClient(), and fillHistograms().
MonitorElement* DQMFEDIntegrityClient::FedNonFatal [private] |
Definition at line 63 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), and fillHistograms().
bool DQMFEDIntegrityClient::fillInEventloop [private] |
Definition at line 69 of file DQMFEDIntegrityClient.h.
Referenced by analyze(), and DQMFEDIntegrityClient().
bool DQMFEDIntegrityClient::fillOnEndJob [private] |
Definition at line 71 of file DQMFEDIntegrityClient.h.
Referenced by DQMFEDIntegrityClient(), and endJob().
bool DQMFEDIntegrityClient::fillOnEndLumi [private] |
Definition at line 72 of file DQMFEDIntegrityClient.h.
Referenced by DQMFEDIntegrityClient(), and endLuminosityBlock().
bool DQMFEDIntegrityClient::fillOnEndRun [private] |
Definition at line 70 of file DQMFEDIntegrityClient.h.
Referenced by DQMFEDIntegrityClient(), and endRun().
std::string DQMFEDIntegrityClient::moduleName [private] |
Definition at line 73 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), and DQMFEDIntegrityClient().
int DQMFEDIntegrityClient::NBINS [private] |
Definition at line 57 of file DQMFEDIntegrityClient.h.
Referenced by beginJob().
Definition at line 51 of file DQMFEDIntegrityClient.h.
Referenced by DQMFEDIntegrityClient().
Definition at line 65 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), and fillHistograms().
MonitorElement* DQMFEDIntegrityClient::reportSummaryContent[10] [private] |
Definition at line 66 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), and fillHistograms().
Definition at line 67 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), and fillHistograms().
float DQMFEDIntegrityClient::SummaryContent[10] [private] |
Definition at line 59 of file DQMFEDIntegrityClient.h.
Referenced by beginJob(), and fillHistograms().
float DQMFEDIntegrityClient::XMAX [private] |
Definition at line 58 of file DQMFEDIntegrityClient.h.
Referenced by beginJob().
float DQMFEDIntegrityClient::XMIN [private] |
Definition at line 58 of file DQMFEDIntegrityClient.h.
Referenced by beginJob().