CMS 3D CMS Logo

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

Public Member Functions

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

Protected Attributes

std::string xcol_
 
std::string ycol_
 
- Protected Attributes inherited from NanoAODDQM::Plot
MonitorElementplot_
 

Detailed Description

Definition at line 126 of file NanoAODDQM.cc.

Constructor & Destructor Documentation

◆ Profile1D()

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

Definition at line 128 of file NanoAODDQM.cc.

129  : Plot(booker.bookProfile(cfg.getParameter<std::string>("name"),
130  cfg.getParameter<std::string>("title"),
131  cfg.getParameter<uint32_t>("nbins"),
132  cfg.getParameter<double>("min"),
133  cfg.getParameter<double>("max"),
134  0.,
135  0.,
136  "")),
137  ycol_(cfg.getParameter<std::string>("ycolumn")),
138  xcol_(cfg.getParameter<std::string>("xcolumn")) {}
MonitorElement * bookProfile(TString const &name, TString const &title, int nchX, double lowX, double highX, int, double lowY, double highY, char const *option="s", FUNC onbooking=NOOP())
Definition: DQMStore.h:399
Plot(MonitorElement *me)
Definition: NanoAODDQM.cc:58

◆ ~Profile1D()

NanoAODDQM::Profile1D::~Profile1D ( )
inlineoverride

Definition at line 139 of file NanoAODDQM.cc.

139 {}

Member Function Documentation

◆ fill()

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

Implements NanoAODDQM::Plot.

Definition at line 140 of file NanoAODDQM.cc.

References Exception, dqm::impl::MonitorElement::Fill(), dqmiodumpmetadata::n, NanoAODDQM::Plot::plot_, TableParser::table, xcol_, and ycol_.

140  {
141  int icolx = table.columnIndex(xcol_);
142  int icoly = table.columnIndex(ycol_);
143  if (icolx == -1)
144  throw cms::Exception("LogicError", "Missing " + xcol_);
145  if (icoly == -1)
146  throw cms::Exception("LogicError", "Missing " + ycol_);
147  for (unsigned int irow = 0, n = table.size(); irow < n; ++irow) {
148  if (rowsel[irow])
149  plot_->Fill(table.getAnyValue(irow, icolx), table.getAnyValue(irow, icoly));
150  }
151  }
void Fill(long long x)
MonitorElement * plot_
Definition: NanoAODDQM.cc:64

Member Data Documentation

◆ xcol_

std::string NanoAODDQM::Profile1D::xcol_
protected

Definition at line 154 of file NanoAODDQM.cc.

Referenced by fill().

◆ ycol_

std::string NanoAODDQM::Profile1D::ycol_
protected

Definition at line 154 of file NanoAODDQM.cc.

Referenced by fill().