#include <MuonDQAHistMap.h>
|
| void | clear () |
| void | addHist (TH1 *p) |
| void | addHist (TH2 *p) |
| TH1 * | getH1 (const std::string &hist_name) const |
| TH2 * | getH2 (const std::string &hist_name) const |
|
| std::vector< TH1 * > | m_H1s |
| std::vector< TH2 * > | m_H2s |
Definition at line 26 of file MuonDQAHistMap.h.
◆ addHist() [1/2]
| void MuonDQAHistList::addHist |
( |
TH1 * | p | ) |
|
|
inline |
◆ addHist() [2/2]
| void MuonDQAHistList::addHist |
( |
TH2 * | p | ) |
|
|
inline |
◆ clear()
| void MuonDQAHistList::clear |
( |
| ) |
|
|
inline |
◆ getH1()
| TH1 * MuonDQAHistList::getH1 |
( |
const std::string & | hist_name | ) |
const |
|
inline |
Definition at line 38 of file MuonDQAHistMap.h.
38 {
39 std::vector<TH1*>::const_iterator
it =
m_H1s.begin(),
41 for ( ;
it != itEnd; ++
it ) {
42 if ( (*it)->GetName() == hist_name ) {
44 }
45 }
46 return 0;
47 }
◆ getH2()
| TH2 * MuonDQAHistList::getH2 |
( |
const std::string & | hist_name | ) |
const |
|
inline |
Definition at line 48 of file MuonDQAHistMap.h.
48 {
49 std::vector<TH2*>::const_iterator
it =
m_H2s.begin(),
51 for ( ;
it != itEnd; ++
it ) {
52 if ( (*it)->GetName() == hist_name ) {
54 }
55 }
56 return 0;
57 }
◆ m_H1s
| std::vector<TH1*> MuonDQAHistList::m_H1s |
|
private |
◆ m_H2s
| std::vector<TH2*> MuonDQAHistList::m_H2s |
|
private |
The documentation for this class was generated from the following file: