CMS 3D CMS Logo

List of all members | Public Member Functions
NanoAODDQM::Count1D Class Reference
Inheritance diagram for NanoAODDQM::Count1D:
NanoAODDQM::Plot

Public Member Functions

 Count1D (DQMStore::IBooker &booker, const edm::ParameterSet &cfg)
 
void fill (const FlatTable &table, const std::vector< bool > &rowsel) override
 
 ~Count1D () override
 
- Public Member Functions inherited from NanoAODDQM::Plot
const std::string & name () const
 
 Plot (MonitorElement *me)
 
virtual ~Plot ()
 

Additional Inherited Members

- Protected Attributes inherited from NanoAODDQM::Plot
MonitorElementplot_
 

Detailed Description

Definition at line 70 of file NanoAODDQM.cc.

Constructor & Destructor Documentation

◆ Count1D()

NanoAODDQM::Count1D::Count1D ( DQMStore::IBooker booker,
const edm::ParameterSet cfg 
)
inline

Definition at line 72 of file NanoAODDQM.cc.

73  : Plot(booker.book1D(cfg.getParameter<std::string>("name"),
74  cfg.getParameter<std::string>("title"),
75  cfg.getParameter<uint32_t>("nbins"),
76  cfg.getParameter<double>("min"),
77  cfg.getParameter<double>("max"))) {}
Plot(MonitorElement *me)
Definition: NanoAODDQM.cc:62
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98

◆ ~Count1D()

NanoAODDQM::Count1D::~Count1D ( )
inlineoverride

Definition at line 78 of file NanoAODDQM.cc.

78 {}

Member Function Documentation

◆ fill()

void NanoAODDQM::Count1D::fill ( const FlatTable table,
const std::vector< bool > &  rowsel 
)
inlineoverridevirtual

Implements NanoAODDQM::Plot.

Definition at line 79 of file NanoAODDQM.cc.

References dqm::impl::MonitorElement::Fill(), and NanoAODDQM::Plot::plot_.

79  {
80  plot_->Fill(std::accumulate(rowsel.begin(), rowsel.end(), 0u));
81  }
void Fill(long long x)
MonitorElement * plot_
Definition: NanoAODDQM.cc:68