#include <DQMOffline/RecoB/interface/HistoProviderDQM.h>
Public Member Functions | |
virtual MonitorElement * | access (const TString &name) |
virtual MonitorElement * | book1D (const TString &name, const TString &title, int nchX, float *xbinsize) |
virtual MonitorElement * | book1D (const TString &name, const TString &title, int nchX, double lowX, double highX) |
HistoProviderDQM (std::string prefix, std::string label) | |
void | setDir (std::string) |
void | show () |
virtual | ~HistoProviderDQM () |
Private Attributes | |
DQMStore * | dqmStore_ |
std::string | label_ |
Definition at line 11 of file HistoProviderDQM.h.
HistoProviderDQM::HistoProviderDQM | ( | std::string | prefix, | |
std::string | label | |||
) |
virtual HistoProviderDQM::~HistoProviderDQM | ( | ) | [inline, virtual] |
MonitorElement * HistoProviderDQM::access | ( | const TString & | name | ) | [virtual] |
Definition at line 38 of file HistoProviderDQM.cc.
References dqmStore_, DQMStore::get(), and label_.
Referenced by FlavourHistograms< T >::FlavourHistograms().
MonitorElement * HistoProviderDQM::book1D | ( | const TString & | name, | |
const TString & | title, | |||
int | nchX, | |||
float * | xbinsize | |||
) | [virtual] |
Definition at line 32 of file HistoProviderDQM.cc.
References DQMStore::book1D(), and dqmStore_.
00034 { 00035 return (dqmStore_->book1D ((const char *)name, (const char *)title,nchX, xbinsize)); 00036 }
MonitorElement * HistoProviderDQM::book1D | ( | const TString & | name, | |
const TString & | title, | |||
int | nchX, | |||
double | lowX, | |||
double | highX | |||
) | [virtual] |
Definition at line 24 of file HistoProviderDQM.cc.
References DQMStore::book1D(), and dqmStore_.
Referenced by BTagDifferentialPlot::bookHisto(), EffPurFromHistos::compute(), and FlavourHistograms< T >::FlavourHistograms().
00026 { 00027 return (dqmStore_->book1D ((const char *)name,(const char *) title, nchX,lowX,highX)); 00028 00029 }
void HistoProviderDQM::setDir | ( | std::string | name | ) |
Definition at line 20 of file HistoProviderDQM.cc.
References dqmStore_, and DQMStore::setCurrentFolder().
Referenced by HistoProviderDQM().
00020 { 00021 dqmStore_->setCurrentFolder(name); 00022 }
void HistoProviderDQM::show | ( | ) |
Definition at line 15 of file HistoProviderDQM.cc.
References dqmStore_, and DQMStore::showDirStructure().
00015 { 00016 dqmStore_->showDirStructure(); 00017 }
DQMStore* HistoProviderDQM::dqmStore_ [private] |
Definition at line 29 of file HistoProviderDQM.h.
Referenced by access(), book1D(), HistoProviderDQM(), setDir(), and show().
std::string HistoProviderDQM::label_ [private] |