#include <DQM/SiStripMonitorCluster/interface/SiStripCertificationInfo.h>
Description: Checks the # of SiStrip FEDs from DAQ Usage: <usage>
Definition at line 40 of file SiStripCertificationInfo.h.
SiStripCertificationInfo::SiStripCertificationInfo | ( | const edm::ParameterSet & | ps | ) |
Constructor.
Definition at line 35 of file SiStripCertificationInfo.cc.
References dqmStore_, cmsCodeRules::cppFunctionSkipper::operator, sistripCertificationBooked_, and trackingCertificationBooked_.
{ // Create MessageSender edm::LogInfo( "SiStripCertificationInfo") << "SiStripCertificationInfo::Deleting SiStripCertificationInfo "; // get back-end interface dqmStore_ = edm::Service<DQMStore>().operator->(); trackingCertificationBooked_ = false; sistripCertificationBooked_ = false; }
SiStripCertificationInfo::~SiStripCertificationInfo | ( | ) | [virtual] |
Destructor.
Definition at line 43 of file SiStripCertificationInfo.cc.
{ edm::LogInfo("SiStripCertificationInfo") << "SiStripCertificationInfo::Deleting SiStripCertificationInfo "; }
void SiStripCertificationInfo::analyze | ( | edm::Event const & | event, |
edm::EventSetup const & | eSetup | ||
) | [private, virtual] |
Analyze.
Implements edm::EDAnalyzer.
Definition at line 207 of file SiStripCertificationInfo.cc.
{ }
void SiStripCertificationInfo::beginJob | ( | void | ) | [private, virtual] |
BeginJob.
Reimplemented from edm::EDAnalyzer.
Definition at line 50 of file SiStripCertificationInfo.cc.
{ }
void SiStripCertificationInfo::beginRun | ( | edm::Run const & | run, |
edm::EventSetup const & | eSetup | ||
) | [private, virtual] |
Begin Run.
Reimplemented from edm::EDAnalyzer.
Definition at line 56 of file SiStripCertificationInfo.cc.
References bookSiStripCertificationMEs(), bookTrackingCertificationMEs(), detCabling_, fillDummySiStripCertification(), fillDummyTrackingCertification(), edm::EventSetup::find(), edm::eventsetup::heterocontainer::HCTypeTag::findType(), edm::EventSetup::get(), edm::ESHandleBase::isValid(), LogDebug, m_cacheID_, FEDNumbering::MAXSiStripFEDID, FEDNumbering::MINSiStripFEDID, and nFEDConnected_.
{ edm::LogInfo ("SiStripCertificationInfo") <<"SiStripCertificationInfo:: Begining of Run"; unsigned long long cacheID = eSetup.get<SiStripDetCablingRcd>().cacheIdentifier(); if (m_cacheID_ != cacheID) { m_cacheID_ = cacheID; } eSetup.get<SiStripDetCablingRcd>().get(detCabling_); nFEDConnected_ = 0; const int siStripFedIdMin = FEDNumbering::MINSiStripFEDID; const int siStripFedIdMax = FEDNumbering::MAXSiStripFEDID; edm::eventsetup::EventSetupRecordKey recordKey(edm::eventsetup::EventSetupRecordKey::TypeTag::findType("RunInfoRcd")); if( eSetup.find( recordKey ) != 0) { edm::ESHandle<RunInfo> sumFED; eSetup.get<RunInfoRcd>().get(sumFED); if ( sumFED.isValid() ) { std::vector<int> FedsInIds= sumFED->m_fed_in; for(unsigned int it = 0; it < FedsInIds.size(); ++it) { int fedID = FedsInIds[it]; if(fedID>=siStripFedIdMin && fedID<=siStripFedIdMax) ++nFEDConnected_; } LogDebug ("SiStripDcsInfo") << " SiStripDcsInfo :: Connected FEDs " << nFEDConnected_; } } bookSiStripCertificationMEs(); bookTrackingCertificationMEs(); fillDummySiStripCertification(); fillDummyTrackingCertification(); }
void SiStripCertificationInfo::bookSiStripCertificationMEs | ( | ) | [private] |
Definition at line 94 of file SiStripCertificationInfo.cc.
References DQMStore::book2D(), DQMStore::bookFloat(), DQMStore::cd(), SiStripCertificationInfo::SubDetMEs::det_fractionME, dqmStore_, SiStripCertificationInfo::SubDetMEs::folder_name, SiStripUtility::getTopFolderPath(), SiStripCertificationInfo::SubDetMEs::n_layer, MonitorElement::setAxisTitle(), MonitorElement::setBinLabel(), DQMStore::setCurrentFolder(), SiStripCertification, sistripCertificationBooked_, SiStripCertificationSummaryMap, SiStripCertificationInfo::SubDetMEs::subdet_tag, SubDetMEsMap, and GlobalPosition_Frontier_DevDB_cff::tag.
Referenced by beginRun(), and resetSiStripCertificationMEs().
{ if (!sistripCertificationBooked_) { dqmStore_->cd(); std::string strip_dir = ""; SiStripUtility::getTopFolderPath(dqmStore_, "SiStrip", strip_dir); if (strip_dir.size() > 0) dqmStore_->setCurrentFolder(strip_dir+"/EventInfo"); else dqmStore_->setCurrentFolder("SiStrip/EventInfo"); SiStripCertification = dqmStore_->bookFloat("CertificationSummary"); std::string hname = "CertificationReportMap"; std::string htitle = "SiStrip Certification for Good Detector Fraction"; SiStripCertificationSummaryMap = dqmStore_->book2D(hname, htitle, 6,0.5,6.5,9,0.5,9.5); SiStripCertificationSummaryMap->setAxisTitle("Sub Detector Type", 1); SiStripCertificationSummaryMap->setAxisTitle("Layer/Disc Number", 2); int ibin = 0; for (std::map<std::string, SubDetMEs>::const_iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) { ibin++; std::string det = it->first; SiStripCertificationSummaryMap->setBinLabel(ibin,det); } SubDetMEs local_mes; std::string tag; dqmStore_->cd(); if (strip_dir.size() > 0) dqmStore_->setCurrentFolder(strip_dir+"/EventInfo/CertificationContents"); else dqmStore_->setCurrentFolder("SiStrip/EventInfo/CertificationContents"); tag = "TIB"; local_mes.folder_name = "TIB"; local_mes.subdet_tag = "TIB"; local_mes.n_layer = 4; local_mes.det_fractionME = dqmStore_->bookFloat("SiStrip_"+tag); SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes)); tag = "TOB"; local_mes.folder_name = "TOB"; local_mes.subdet_tag = "TOB"; local_mes.n_layer = 6; local_mes.det_fractionME = dqmStore_->bookFloat("SiStrip_"+tag); SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes)); tag = "TECF"; local_mes.folder_name = "TEC/side_2"; local_mes.subdet_tag = "TEC+"; local_mes.n_layer = 9; local_mes.det_fractionME = dqmStore_->bookFloat("SiStrip_"+tag); SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes)); tag = "TECB"; local_mes.folder_name = "TEC/side_1"; local_mes.subdet_tag = "TEC-"; local_mes.n_layer = 9; local_mes.det_fractionME = dqmStore_->bookFloat("SiStrip_"+tag); SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes)); tag = "TIDF"; local_mes.folder_name = "TID/side_2"; local_mes.subdet_tag = "TID+"; local_mes.n_layer = 3; local_mes.det_fractionME = dqmStore_->bookFloat("SiStrip_"+tag); SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes)); tag = "TIDB"; local_mes.folder_name = "TID/side_1"; local_mes.subdet_tag = "TID-"; local_mes.n_layer = 3; local_mes.det_fractionME = dqmStore_->bookFloat("SiStrip_"+tag); SubDetMEsMap.insert(std::pair<std::string, SubDetMEs >(tag, local_mes)); dqmStore_->cd(); if (strip_dir.size() > 0) dqmStore_->setCurrentFolder(strip_dir+"/EventInfo"); sistripCertificationBooked_ = true; dqmStore_->cd(); } }
void SiStripCertificationInfo::bookTrackingCertificationMEs | ( | ) | [private] |
Definition at line 175 of file SiStripCertificationInfo.cc.
References DQMStore::bookFloat(), DQMStore::cd(), dqmStore_, SiStripUtility::getTopFolderPath(), DQMStore::setCurrentFolder(), TrackingCertification, trackingCertificationBooked_, and TrackingMEsMap.
Referenced by beginRun(), and resetTrackingCertificationMEs().
{ if (!trackingCertificationBooked_) { std::string tracking_dir = ""; SiStripUtility::getTopFolderPath(dqmStore_, "Tracking", tracking_dir); if (tracking_dir.size() > 0) { dqmStore_->setCurrentFolder(tracking_dir+"/EventInfo"); TrackingCertification = dqmStore_->bookFloat("CertificationSummary"); dqmStore_->setCurrentFolder(tracking_dir+"/EventInfo/CertificationContents"); std::string type; MonitorElement* me; type = "Rate"; me = dqmStore_->bookFloat("Track"+type); TrackingMEsMap.insert(std::pair<std::string,MonitorElement*>(type,me)); type = "Chi2"; me = dqmStore_->bookFloat("Track"+type); TrackingMEsMap.insert(std::pair<std::string,MonitorElement*>(type,me)); type = "RecHits"; me = dqmStore_->bookFloat("Track"+type); TrackingMEsMap.insert(std::pair<std::string,MonitorElement*>(type,me)); trackingCertificationBooked_ = true; dqmStore_->cd(); } } }
void SiStripCertificationInfo::endLuminosityBlock | ( | edm::LuminosityBlock const & | lumiSeg, |
edm::EventSetup const & | iSetup | ||
) | [private, virtual] |
End Of Luminosity.
Reimplemented from edm::EDAnalyzer.
Definition at line 212 of file SiStripCertificationInfo.cc.
References fillSiStripCertificationMEsAtLumi(), fillTrackingCertificationMEs(), and nFEDConnected_.
{ edm::LogInfo( "SiStripDaqInfo") << "SiStripDaqInfo::endLuminosityBlock"; if (nFEDConnected_ > 0) { fillSiStripCertificationMEsAtLumi(); fillTrackingCertificationMEs(); } }
void SiStripCertificationInfo::endRun | ( | edm::Run const & | run, |
edm::EventSetup const & | eSetup | ||
) | [private, virtual] |
EndRun.
Reimplemented from edm::EDAnalyzer.
Definition at line 224 of file SiStripCertificationInfo.cc.
References fillSiStripCertificationMEs(), fillTrackingCertificationMEs(), and nFEDConnected_.
{ edm::LogInfo ("SiStripCertificationInfo") <<"SiStripCertificationInfo:: End Run"; if (nFEDConnected_ > 0) { fillSiStripCertificationMEs(); fillTrackingCertificationMEs(); } }
void SiStripCertificationInfo::fillDummySiStripCertification | ( | ) | [private] |
Definition at line 375 of file SiStripCertificationInfo.cc.
References MonitorElement::Fill(), MonitorElement::getNbinsX(), MonitorElement::getNbinsY(), resetSiStripCertificationMEs(), SiStripCertification, sistripCertificationBooked_, SiStripCertificationSummaryMap, and SubDetMEsMap.
Referenced by beginRun().
{ resetSiStripCertificationMEs(); if (sistripCertificationBooked_) { SiStripCertification->Fill(-1.0); for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) { it->second.det_fractionME->Reset(); it->second.det_fractionME->Fill(-1.0); } for (int xbin = 1; xbin < SiStripCertificationSummaryMap->getNbinsX()+1; xbin++) { for (int ybin = 1; ybin < SiStripCertificationSummaryMap->getNbinsY()+1; ybin++) { SiStripCertificationSummaryMap->Fill(xbin, ybin, -1.0); } } } }
void SiStripCertificationInfo::fillDummyTrackingCertification | ( | ) | [private] |
Definition at line 395 of file SiStripCertificationInfo.cc.
References MonitorElement::Fill(), resetTrackingCertificationMEs(), TrackingCertification, trackingCertificationBooked_, and TrackingMEsMap.
Referenced by beginRun(), and fillTrackingCertificationMEs().
{ resetTrackingCertificationMEs(); if (trackingCertificationBooked_) { TrackingCertification->Fill(-1.0); for (std::map<std::string, MonitorElement*>::const_iterator it = TrackingMEsMap.begin(); it != TrackingMEsMap.end(); it++) { it->second->Fill(-1.0); } } }
void SiStripCertificationInfo::fillSiStripCertificationMEs | ( | ) | [private] |
Definition at line 272 of file SiStripCertificationInfo.cc.
References abs, DQMStore::cd(), detCabling_, MonitorElement::DQM_KIND_INT, MonitorElement::DQM_KIND_REAL, dqmStore_, MonitorElement::Fill(), DQMStore::get(), DQMStore::getContents(), MonitorElement::getFloatValue(), MonitorElement::getNbinsY(), SiStripFolderOrganizer::GetSubDetAndLayer(), SiStripUtility::goToDir(), gen::k, MonitorElement::kind(), mergeVDriftHistosByStation::name, DQMStore::pwd(), MonitorElement::Reset(), resetSiStripCertificationMEs(), SiStripCertification, sistripCertificationBooked_, SiStripCertificationSummaryMap, SubDetMEsMap, and GlobalPosition_Frontier_DevDB_cff::tag.
Referenced by endRun().
{ if (!sistripCertificationBooked_) { edm::LogError("SiStripCertificationInfo") << " SiStripCertificationInfo::fillSiStripCertificationMEs : MEs missing "; return; } resetSiStripCertificationMEs(); std::string mdir = "MechanicalView"; dqmStore_->cd(); if (!SiStripUtility::goToDir(dqmStore_, mdir)) return; std::string mechanical_dir = dqmStore_->pwd(); uint16_t nDetTot = 0; uint16_t nFaultyTot = 0; uint16_t nSToNTot = 0; float sToNTot = 0.0; SiStripFolderOrganizer folder_organizer; int xbin = 0; for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) { xbin++; std::string name = it->first; std::string tag = it->second.subdet_tag; MonitorElement* me = it->second.det_fractionME; if (!me) continue; std::string bad_module_folder = mechanical_dir+"/"+it->second.folder_name+"/"+"BadModuleList"; std::vector<MonitorElement *> faulty_detMEs = dqmStore_->getContents(bad_module_folder); uint16_t ndet_subdet = 0; uint16_t nfaulty_subdet = 0; int nlayer = it->second.n_layer; int ybin = 0; for (int ilayer = 0; ilayer < nlayer; ilayer++) { uint16_t ndet_layer = detCabling_->connectedNumber(tag, ilayer+1); ndet_subdet += ndet_layer; ybin++; uint16_t nfaulty_layer = 0; for (std::vector<MonitorElement *>::iterator im = faulty_detMEs.begin(); im != faulty_detMEs.end(); im++) { if ((*im)->kind() != MonitorElement::DQM_KIND_INT ) continue; if ((*im)->getIntValue() == 0) continue; uint32_t detId = atoi((*im)->getName().c_str()); std::pair<std::string,int32_t> det_layer_pair = folder_organizer.GetSubDetAndLayer(detId, false); if (abs(det_layer_pair.second) == ilayer+1) nfaulty_layer++; } nfaulty_subdet += nfaulty_layer; float fraction_layer = -1.0; if ( ndet_layer > 0) fraction_layer = 1 - ((nfaulty_layer*1.0)/ndet_layer); if (SiStripCertificationSummaryMap) SiStripCertificationSummaryMap->Fill(xbin, ilayer+1,fraction_layer); } if (ybin <= SiStripCertificationSummaryMap->getNbinsY()) { for (int k = ybin+1; k <= SiStripCertificationSummaryMap->getNbinsY(); k++) SiStripCertificationSummaryMap->Fill(xbin, k, -1.0); } float fraction_subdet = -1.0; if (ndet_subdet > 0) fraction_subdet = 1 - ((nfaulty_subdet*1.0)/ndet_subdet); // Check S/N status flag and use the minimum between the two std::string full_path = mechanical_dir.substr(0, mechanical_dir.find_last_of("/")) + "/EventInfo/reportSummaryContents/SiStrip_SToNFlag_"+name; MonitorElement* me_ston = dqmStore_->get(full_path); me->Reset(); if (me_ston && me_ston->kind()==MonitorElement::DQM_KIND_REAL) { float ston_flg = me_ston->getFloatValue(); sToNTot += ston_flg; nSToNTot++; me->Fill(fminf(fraction_subdet,ston_flg)); } else me->Fill(fraction_subdet); nDetTot += ndet_subdet ; nFaultyTot += nfaulty_subdet; } float fraction_global = -1.0; if (nDetTot > 0) fraction_global = 1.0 - ((nFaultyTot*1.0)/nDetTot); float ston_frac_global = 1.0; if (nSToNTot > 0) ston_frac_global = sToNTot/nSToNTot; SiStripCertification->Fill(fminf(fraction_global,ston_frac_global)); }
void SiStripCertificationInfo::fillSiStripCertificationMEsAtLumi | ( | ) | [private] |
Definition at line 409 of file SiStripCertificationInfo.cc.
References DQMStore::cd(), MonitorElement::DQM_KIND_REAL, dqmStore_, MonitorElement::Fill(), DQMStore::get(), MonitorElement::getFloatValue(), SiStripUtility::getTopFolderPath(), MonitorElement::kind(), MonitorElement::Reset(), resetSiStripCertificationMEs(), SiStripCertification, sistripCertificationBooked_, and SubDetMEsMap.
Referenced by endLuminosityBlock().
{ if (!sistripCertificationBooked_) { edm::LogError("SiStripCertificationInfo") << " SiStripCertificationInfo::fillSiStripCertificationMEsAtLumi : MEs missing "; return; } resetSiStripCertificationMEs(); dqmStore_->cd(); std::string strip_dir = ""; SiStripUtility::getTopFolderPath(dqmStore_, "SiStrip", strip_dir); if (strip_dir.size() == 0) strip_dir = "SiStrip"; std::string full_path; float dcs_flag = 1.0; float dqm_flag = 1.0; for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) { std::string type = it->first; full_path = strip_dir + "/EventInfo/DCSContents/SiStrip_" + type; MonitorElement* me_dcs = dqmStore_->get(full_path); if (me_dcs && me_dcs->kind() == MonitorElement::DQM_KIND_REAL) dcs_flag = me_dcs->getFloatValue(); full_path = strip_dir + "/EventInfo/reportSummaryContents/SiStrip_" + type; MonitorElement* me_dqm = dqmStore_->get(full_path); if (me_dqm && me_dqm->kind() == MonitorElement::DQM_KIND_REAL) dqm_flag = me_dqm->getFloatValue(); it->second.det_fractionME->Reset(); it->second.det_fractionME->Fill(fminf(dqm_flag,dcs_flag)); } dcs_flag = 1.0; dqm_flag = 1.0; full_path = strip_dir + "/EventInfo/reportSummary"; MonitorElement* me_dqm = dqmStore_->get(full_path); if (me_dqm && me_dqm->kind() == MonitorElement::DQM_KIND_REAL) dqm_flag = me_dqm->getFloatValue(); full_path = strip_dir + "/EventInfo/DCSSummary"; MonitorElement* me_dcs = dqmStore_->get(full_path); if (me_dcs && me_dcs->kind() == MonitorElement::DQM_KIND_REAL) dcs_flag = me_dcs->getFloatValue(); SiStripCertification->Reset(); SiStripCertification->Fill(fminf(dqm_flag,dcs_flag)); }
void SiStripCertificationInfo::fillTrackingCertificationMEs | ( | ) | [private] |
Definition at line 235 of file SiStripCertificationInfo.cc.
References MonitorElement::DQM_KIND_REAL, dqmStore_, MonitorElement::Fill(), fillDummyTrackingCertification(), DQMStore::getContents(), MonitorElement::getFloatValue(), MonitorElement::getName(), SiStripUtility::getTopFolderPath(), MonitorElement::kind(), mergeVDriftHistosByStation::name, TrackingCertification, trackingCertificationBooked_, and TrackingMEsMap.
Referenced by endLuminosityBlock(), and endRun().
{ if (!trackingCertificationBooked_) { edm::LogError("SiStripCertificationInfo") << " SiStripCertificationInfo::fillTrackingCertificationMEs : MEs missing "; return; } std::string tk_dir = ""; SiStripUtility::getTopFolderPath(dqmStore_, "Tracking", tk_dir); if (tk_dir.size() == 0) { fillDummyTrackingCertification(); return; } std::vector<MonitorElement*> all_mes = dqmStore_->getContents(tk_dir+"/EventInfo/reportSummaryContents"); float fval = 1.0; for (std::vector<MonitorElement *>::const_iterator it = all_mes.begin(); it!= all_mes.end(); it++) { MonitorElement * me = (*it); if (!me) continue; if (me->kind() == MonitorElement::DQM_KIND_REAL) { std::string name = me->getName(); float val = me->getFloatValue(); for (std::map<std::string, MonitorElement*>::const_iterator it = TrackingMEsMap.begin(); it != TrackingMEsMap.end(); it++) { std::string type = it->first; if (name.find(type) != std::string::npos) { it->second->Fill(val); break; } } fval *= val; } } TrackingCertification->Fill(fval); }
void SiStripCertificationInfo::resetSiStripCertificationMEs | ( | ) | [private] |
Definition at line 361 of file SiStripCertificationInfo.cc.
References bookSiStripCertificationMEs(), MonitorElement::Reset(), SiStripCertification, sistripCertificationBooked_, SiStripCertificationSummaryMap, and SubDetMEsMap.
Referenced by fillDummySiStripCertification(), fillSiStripCertificationMEs(), and fillSiStripCertificationMEsAtLumi().
{ if (!sistripCertificationBooked_) bookSiStripCertificationMEs(); if (sistripCertificationBooked_) { SiStripCertification->Reset(); for (std::map<std::string, SubDetMEs>::iterator it = SubDetMEsMap.begin(); it != SubDetMEsMap.end(); it++) { it->second.det_fractionME->Reset(); } SiStripCertificationSummaryMap->Reset(); } }
void SiStripCertificationInfo::resetTrackingCertificationMEs | ( | ) | [private] |
Definition at line 348 of file SiStripCertificationInfo.cc.
References bookTrackingCertificationMEs(), MonitorElement::Reset(), TrackingCertification, trackingCertificationBooked_, and TrackingMEsMap.
Referenced by fillDummyTrackingCertification().
{ if (!trackingCertificationBooked_) bookTrackingCertificationMEs(); if (trackingCertificationBooked_) { TrackingCertification->Reset(); for (std::map<std::string, MonitorElement*>::const_iterator it = TrackingMEsMap.begin(); it != TrackingMEsMap.end(); it++) { it->second->Reset(); } } }
Definition at line 107 of file SiStripCertificationInfo.h.
Referenced by beginRun(), and fillSiStripCertificationMEs().
DQMStore* SiStripCertificationInfo::dqmStore_ [private] |
Definition at line 84 of file SiStripCertificationInfo.h.
Referenced by bookSiStripCertificationMEs(), bookTrackingCertificationMEs(), fillSiStripCertificationMEs(), fillSiStripCertificationMEsAtLumi(), fillTrackingCertificationMEs(), and SiStripCertificationInfo().
unsigned long long SiStripCertificationInfo::m_cacheID_ [private] |
Definition at line 105 of file SiStripCertificationInfo.h.
Referenced by beginRun().
int SiStripCertificationInfo::nFEDConnected_ [private] |
Definition at line 109 of file SiStripCertificationInfo.h.
Referenced by beginRun(), endLuminosityBlock(), and endRun().
Definition at line 95 of file SiStripCertificationInfo.h.
Referenced by bookSiStripCertificationMEs(), fillDummySiStripCertification(), fillSiStripCertificationMEs(), fillSiStripCertificationMEsAtLumi(), and resetSiStripCertificationMEs().
bool SiStripCertificationInfo::sistripCertificationBooked_ [private] |
Definition at line 104 of file SiStripCertificationInfo.h.
Referenced by bookSiStripCertificationMEs(), fillDummySiStripCertification(), fillSiStripCertificationMEs(), fillSiStripCertificationMEsAtLumi(), resetSiStripCertificationMEs(), and SiStripCertificationInfo().
Definition at line 96 of file SiStripCertificationInfo.h.
Definition at line 99 of file SiStripCertificationInfo.h.
Referenced by bookSiStripCertificationMEs(), fillDummySiStripCertification(), fillSiStripCertificationMEs(), and resetSiStripCertificationMEs().
std::map<std::string, SubDetMEs> SiStripCertificationInfo::SubDetMEsMap [private] |
Definition at line 97 of file SiStripCertificationInfo.h.
Referenced by bookSiStripCertificationMEs(), fillDummySiStripCertification(), fillSiStripCertificationMEs(), fillSiStripCertificationMEsAtLumi(), and resetSiStripCertificationMEs().
Definition at line 101 of file SiStripCertificationInfo.h.
Referenced by bookTrackingCertificationMEs(), fillDummyTrackingCertification(), fillTrackingCertificationMEs(), and resetTrackingCertificationMEs().
bool SiStripCertificationInfo::trackingCertificationBooked_ [private] |
Definition at line 103 of file SiStripCertificationInfo.h.
Referenced by bookTrackingCertificationMEs(), fillDummyTrackingCertification(), fillTrackingCertificationMEs(), resetTrackingCertificationMEs(), and SiStripCertificationInfo().
std::map<std::string, MonitorElement*> SiStripCertificationInfo::TrackingMEsMap [private] |
Definition at line 98 of file SiStripCertificationInfo.h.
Referenced by bookTrackingCertificationMEs(), fillDummyTrackingCertification(), fillTrackingCertificationMEs(), and resetTrackingCertificationMEs().