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 162 of file NanoAODDQM.cc.

Constructor & Destructor Documentation

◆ Profile1D()

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

Definition at line 164 of file NanoAODDQM.cc.

165  : Plot(booker.bookProfile(cfg.getParameter<std::string>("name"),
166  cfg.getParameter<std::string>("title"),
167  cfg.getParameter<uint32_t>("nbins"),
168  cfg.getParameter<double>("min"),
169  cfg.getParameter<double>("max"),
170  0.,
171  0.,
172  "")),
173  ycol_(cfg.getParameter<std::string>("ycolumn")),
174  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:408
Plot(MonitorElement *me)
Definition: NanoAODDQM.cc:69

◆ ~Profile1D()

NanoAODDQM::Profile1D::~Profile1D ( )
inlineoverride

Definition at line 175 of file NanoAODDQM.cc.

175 {}

Member Function Documentation

◆ fill()

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

Implements NanoAODDQM::Plot.

Definition at line 176 of file NanoAODDQM.cc.

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

176  {
177  int icolx = table.columnIndex(xcol_);
178  int icoly = table.columnIndex(ycol_);
179  if (icolx == -1)
180  throw cms::Exception("LogicError", "Missing " + xcol_);
181  if (icoly == -1)
182  throw cms::Exception("LogicError", "Missing " + ycol_);
183  for (unsigned int irow = 0, n = table.size(); irow < n; ++irow) {
184  if (rowsel[irow])
185  plot_->Fill(table.getAnyValue(irow, icolx), table.getAnyValue(irow, icoly));
186  }
187  }
void Fill(long long x)
MonitorElement * plot_
Definition: NanoAODDQM.cc:75

Member Data Documentation

◆ xcol_

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

Definition at line 190 of file NanoAODDQM.cc.

Referenced by fill().

◆ ycol_

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

Definition at line 190 of file NanoAODDQM.cc.

Referenced by fill().