CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Public Attributes | Private Member Functions | Private Attributes
HistogramManager Class Reference

#include <HistogramManager.h>

Public Types

typedef dqm::legacy::DQMStore DQMStore
 
typedef dqm::legacy::MonitorElement MonitorElement
 
typedef std::map< GeometryInterface::Values, AbstractHistogramTable
 

Public Member Functions

void addSpec (SummationSpecification spec)
 
void book (DQMStore::IBooker &iBooker, edm::EventSetup const &iSetup)
 
void executeHarvesting (DQMStore::IBooker &iBooker, DQMStore::IGetter &iGetter)
 
void executePerEventHarvesting (edm::Event const *ev)
 
void executePerLumiHarvesting (DQMStore::IBooker &iBooker, DQMStore::IGetter &iGetter, edm::LuminosityBlock const &lumiBlock, edm::EventSetup const &iSetup)
 
void fill (DetId sourceModule, const edm::Event *sourceEvent=nullptr, int col=0, int row=0)
 
void fill (double value, DetId sourceModule, const edm::Event *sourceEvent=nullptr, int col=0, int row=0)
 
void fill (double x, double y, DetId sourceModule, const edm::Event *sourceEvent=nullptr, int col=0, int row=0)
 
 HistogramManager (const edm::ParameterSet &iConfig, GeometryInterface &geo)
 

Public Attributes

bool bookUndefined
 
int dimensions
 
bool enabled
 
edm::LuminosityBlock const * lumisection = nullptr
 
std::string name
 
bool perLumiHarvesting
 
double range_x_max
 
double range_x_min
 
int range_x_nbins
 
double range_y_max
 
double range_y_min
 
int range_y_nbins
 
bool statsOverflows
 
std::string title
 
std::string top_folder_name
 
std::string xlabel
 
std::string ylabel
 

Private Member Functions

void executeExtend (SummationStep const &step, Table &t, std::string const &reduction, DQMStore::IBooker &iBooker, SummationSpecification const &s)
 
void executeGroupBy (SummationStep const &step, Table &t, DQMStore::IBooker &iBooker, SummationSpecification const &s)
 
void fillInternal (double x, double y, int n_parameters, GeometryInterface::InterestingQuantities const &iq, std::vector< SummationStep >::iterator first, std::vector< SummationStep >::iterator last, AbstractHistogram &dest)
 
void loadFromDQMStore (SummationSpecification &s, Table &t, DQMStore::IGetter &iGetter)
 
std::pair< std::string, std::string > makePathName (SummationSpecification const &s, GeometryInterface::Values const &, SummationStep const *upto)
 

Private Attributes

std::vector< Tablecounters
 
std::vector< AbstractHistogram * > fastpath
 
GeometryInterfacegeometryInterface
 
GeometryInterface::InterestingQuantities iq
 
std::vector< GeometryInterface::Valuessignificantvalues
 
std::vector< SummationSpecificationspecs
 
std::vector< Tabletables
 

Detailed Description

Definition at line 31 of file HistogramManager.h.

Member Typedef Documentation

◆ DQMStore

Definition at line 33 of file HistogramManager.h.

◆ MonitorElement

Definition at line 34 of file HistogramManager.h.

◆ Table

Definition at line 59 of file HistogramManager.h.

Constructor & Destructor Documentation

◆ HistogramManager()

HistogramManager::HistogramManager ( const edm::ParameterSet iConfig,
GeometryInterface geo 
)
explicit

Definition at line 18 of file HistogramManager.cc.

References addSpec(), geometryInterface, and edm::ParameterSet::getParameter().

19  : geometryInterface(geo),
20  enabled(iconfig.getParameter<bool>("enabled")),
21  perLumiHarvesting(iconfig.getParameter<bool>("perLumiHarvesting")),
22  bookUndefined(iconfig.getParameter<bool>("bookUndefined")),
23  top_folder_name(iconfig.getParameter<std::string>("topFolderName")),
24  name(iconfig.getParameter<std::string>("name")),
25  title(iconfig.getParameter<std::string>("title")),
26  xlabel(iconfig.getParameter<std::string>("xlabel")),
27  ylabel(iconfig.getParameter<std::string>("ylabel")),
28  dimensions(iconfig.getParameter<int>("dimensions")),
29  range_x_nbins(iconfig.getParameter<int>("range_nbins")),
30  range_x_min(iconfig.getParameter<double>("range_min")),
31  range_x_max(iconfig.getParameter<double>("range_max")),
32  range_y_nbins(iconfig.getParameter<int>("range_y_nbins")),
33  range_y_min(iconfig.getParameter<double>("range_y_min")),
34  range_y_max(iconfig.getParameter<double>("range_y_max")),
35  statsOverflows(iconfig.getParameter<bool>("statsOverflows")) {
36  auto spec_configs = iconfig.getParameter<edm::VParameterSet>("specs");
37  for (const auto& spec : spec_configs) {
38  // this would fit better in SummationSpecification(...), but it has to
39  // happen here.
40  auto conf = spec.getParameter<edm::ParameterSet>("conf");
41  if (!conf.getParameter<bool>("enabled"))
42  continue;
44  }
45 }
void addSpec(SummationSpecification spec)
std::vector< ParameterSet > VParameterSet
Definition: ParameterSet.h:35
std::string top_folder_name
std::string xlabel
std::string ylabel
GeometryInterface & geometryInterface

Member Function Documentation

◆ addSpec()

void HistogramManager::addSpec ( SummationSpecification  spec)

Definition at line 47 of file HistogramManager.cc.

References counters, fastpath, significantvalues, specs, and tables.

Referenced by HistogramManager().

47  {
48  specs.push_back(spec);
49  tables.push_back(Table());
50  counters.push_back(Table());
52  fastpath.push_back(nullptr);
53 }
std::vector< SummationSpecification > specs
std::vector< std::pair< Column, Value > > Values
std::vector< AbstractHistogram * > fastpath
std::vector< GeometryInterface::Values > significantvalues
std::map< GeometryInterface::Values, AbstractHistogram > Table
std::vector< Table > tables
std::vector< Table > counters

◆ book()

void HistogramManager::book ( DQMStore::IBooker iBooker,
edm::EventSetup const &  iSetup 
)

Definition at line 276 of file HistogramManager.cc.

References GeometryInterface::allModules(), cms::cuda::assert(), GeometryInterface::binWidth(), dqm::implementation::IBooker::book1D(), dqm::implementation::IBooker::book2D(), dqm::implementation::IBooker::bookProfile(), dqm::implementation::IBooker::bookProfile2D(), bookUndefined, HltBtagPostValidation_cff::c, reco::ceil(), cuy::col, counters, dimensions, MillePedeFileConverter_cfg::e, enabled, SummationStep::EXTEND_X, SummationStep::EXTEND_Y, GeometryInterface::extract(), GeometryInterface::extractColumns(), geometryInterface, SummationStep::GROUPBY, h, timingPdfMaker::histo, mps_fire::i, ALPAKA_ACCELERATOR_NAMESPACE::caPixelDoublets::if(), createfilelist::int, iq, ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, GeometryInterface::load(), GeometryInterface::loaded(), makePathName(), SiStripPI::max, GeometryInterface::maxValue(), SiStripPI::min, GeometryInterface::minValue(), name, convertSQLiteXML::ok, GeometryInterface::pretty(), SummationStep::PROFILE, FastTimerService_cff::range, range_x_max, range_x_min, range_x_nbins, range_y_max, range_y_min, range_y_nbins, alignCSCRings::s, SET_AXIS, dqm::implementation::NavigatorBase::setCurrentFolder(), significantvalues, specs, SummationStep::STAGE2, statsOverflows, AlCaHLTBitMon_QueryRunRegistry::string, submitPVValidationJobs::t, tables, title, GeometryInterface::UNDEFINED, SummationStep::USE_X, SummationStep::USE_Y, SummationStep::USE_Z, heppy_batch::val, x, xlabel, y, ylabel, and z.

276  {
277  if (!geometryInterface.loaded()) {
278  geometryInterface.load(iSetup);
279  }
280  if (!enabled)
281  return;
282 
283  struct MEInfo {
284  int dimensions = 1;
285  double range_x_min = 1e12;
286  double range_x_max = -1e12;
287  double range_y_min = 1e12;
288  double range_y_max = -1e12;
289  double range_z_min = 1e12; // z range carried around but unused
290  double range_z_max = -1e12;
291  int range_x_nbins = 0;
292  int range_y_nbins = 0;
293  int range_z_nbins = 0;
294  GeometryInterface::Value binwidth_x = 0; // override nbins for geom-things
295  GeometryInterface::Value binwidth_y = 0;
296  std::string title, xlabel, ylabel, zlabel;
297  bool do_profile = false;
298  bool statsOverflows = true;
299  ;
300  };
301  std::map<GeometryInterface::Values, MEInfo> toBeBooked;
302 
303  for (unsigned int i = 0; i < specs.size(); i++) {
304  auto& s = specs[i];
305  auto& t = tables[i];
306  auto& c = counters[i];
307  toBeBooked.clear();
308  bool bookCounters = false;
309 
310  auto firststep = s.steps.begin();
311  int n_parameters = this->dimensions;
312 
313  if (firststep->type != SummationStep::GROUPBY) {
314  ++firststep;
315  n_parameters = 1;
316  bookCounters = true;
317  }
318 
319  auto laststep = std::find_if(
320  s.steps.begin(), s.steps.end(), [](SummationStep const& step) { return step.stage == SummationStep::STAGE2; });
321 
323 
324  for (auto iq : geometryInterface.allModules()) {
325  if (bookCounters) {
326  // add an entry for the counting step if present
328  c[significantvalues].iq_sample = iq;
329  }
330 
332  if (!bookUndefined) {
333  // skip if any column is UNDEFINED
334  bool ok = true;
335  for (auto e : significantvalues)
336  if (e.second == GeometryInterface::UNDEFINED)
337  ok = false;
338  if (!ok)
339  continue;
340  }
341 
342  auto histo = toBeBooked.find(significantvalues);
343  if (histo == toBeBooked.end()) {
344  // create new histo
345  MEInfo& mei = toBeBooked[significantvalues];
346  mei.title = this->title;
347  mei.statsOverflows = this->statsOverflows;
348  if (bookCounters)
349  mei.title =
350  "Number of " + mei.title + " per Event and " + geometryInterface.pretty(*(s.steps[0].columns.end() - 1));
351  std::string xlabel = bookCounters ? "#" + this->xlabel : this->xlabel;
352 
353  // refer to fillInternal() for the actual execution
354  // compute labels, title, type, user-set ranges here
355  int tot_parameters = n_parameters;
356 
357 #define SET_AXIS(to, from) \
358  mei.to##label = from##label; \
359  mei.range_##to##_min = ((it->nbins == -1) ? this->range_##from##_min : it->xmin); \
360  mei.range_##to##_max = ((it->nbins == -1) ? this->range_##from##_max : it->xmax); \
361  mei.range_##to##_nbins = ((it->nbins == -1) ? this->range_##from##_nbins : it->nbins)
362 
363  for (auto it = firststep + 1; it != laststep; ++it) {
364  switch (it->type) {
366  if (it->arg[0] == '1' && n_parameters >= 1) {
367  SET_AXIS(x, x);
368  } // TODO: make use of current nbins, xmin, xmax if set
369  if (it->arg[0] == '2' && n_parameters >= 2) {
370  SET_AXIS(x, y);
371  }
372  break;
374  if (it->arg[0] == '1' && n_parameters >= 1) {
375  SET_AXIS(y, x);
376  }
377  if (it->arg[0] == '2' && n_parameters >= 2) {
378  SET_AXIS(y, y);
379  }
380  break;
382  if (it->arg[0] == '1' && n_parameters >= 1) {
383  SET_AXIS(z, x);
384  }
385  if (it->arg[0] == '2' && n_parameters >= 2) {
386  SET_AXIS(z, y);
387  }
388  break;
390  assert(mei.range_x_nbins == 0);
391  auto col = it->columns[0];
392  mei.xlabel = geometryInterface.pretty(col);
393  mei.title = mei.title + " by " + mei.xlabel;
395  mei.range_x_min = geometryInterface.minValue(col);
397  mei.range_x_max = geometryInterface.maxValue(col);
398  mei.binwidth_x = geometryInterface.binWidth(col);
399  tot_parameters++;
400  } break;
402  auto col = it->columns[0];
403  mei.ylabel = geometryInterface.pretty(col);
404  mei.title = mei.title + " by " + mei.ylabel;
406  mei.range_y_min = geometryInterface.minValue(col);
408  mei.range_y_max = geometryInterface.maxValue(col);
409  mei.binwidth_y = geometryInterface.binWidth(col);
410  tot_parameters++;
411  } break;
413  mei.do_profile = true;
414  break;
415  default:
416  assert(!"illegal step in STAGE1! (booking)");
417  }
418  }
419  mei.dimensions = tot_parameters;
420  if (mei.do_profile)
421  mei.title = "Profile of " + mei.title;
422  if (!mei.zlabel.empty())
423  mei.title = mei.title + " (Z: " + mei.zlabel + ")";
424  }
425  // only update range
426  MEInfo& mei = toBeBooked[significantvalues];
427  double val;
428 
429  for (auto it = firststep + 1; it != laststep; ++it) {
430  switch (it->type) {
432  val = geometryInterface.extract(it->columns[0], iq).second;
434  break;
435  mei.range_x_min = std::min(mei.range_x_min, val);
436  mei.range_x_max = std::max(mei.range_x_max, val);
437  break;
439  val = geometryInterface.extract(it->columns[0], iq).second;
441  break;
442  mei.range_y_min = std::min(mei.range_y_min, val);
443  mei.range_y_max = std::max(mei.range_y_max, val);
444  break;
445  default: // ignore the rest, code above will catch bugs
446  break;
447  }
448  }
449  }
450 
451  // Now do the actual booking.
452  for (auto& e : toBeBooked) {
453  AbstractHistogram& h = t[e.first];
454  MEInfo& mei = e.second;
455  auto name = makePathName(s, e.first, &(*laststep));
456  iBooker.setCurrentFolder(name.first);
457 
458  // determine nbins for geometry derived quantities
459  // due to how we counted above, we need to include lower and upper bound
460  // For Coord-values, which are not precisely aligned with the bins, we force
461  // alignment.
462  if (mei.binwidth_x != 0) {
463  double range = (mei.range_x_max - mei.range_x_min) / mei.binwidth_x;
464  if ((range - int(range)) == 0.0) {
465  mei.range_x_min -= mei.binwidth_x / 2;
466  mei.range_x_max += mei.binwidth_x / 2;
467  } else {
468  mei.range_x_min = std::floor(mei.range_x_min / mei.binwidth_x) * mei.binwidth_x;
469  mei.range_x_max = std::ceil(mei.range_x_max / mei.binwidth_x) * mei.binwidth_x;
470  }
471  mei.range_x_nbins = int((mei.range_x_max - mei.range_x_min) / mei.binwidth_x);
472  }
473  if (mei.binwidth_y != 0) {
474  double range = (mei.range_y_max - mei.range_y_min) / mei.binwidth_y;
475  if ((range - int(range)) == 0.0) {
476  mei.range_y_min -= mei.binwidth_y / 2;
477  mei.range_y_max += mei.binwidth_y / 2;
478  } else {
479  mei.range_y_min = std::floor(mei.range_y_min / mei.binwidth_y) * mei.binwidth_y;
480  mei.range_y_max = std::ceil(mei.range_y_max / mei.binwidth_y) * mei.binwidth_y;
481  }
482  mei.range_y_nbins = int((mei.range_y_max - mei.range_y_min) / mei.binwidth_y);
483  }
484 
485  if (mei.dimensions == 1) {
486  h.me = iBooker.book1D(
487  name.second, (mei.title + ";" + mei.xlabel).c_str(), mei.range_x_nbins, mei.range_x_min, mei.range_x_max);
488  } else if (mei.dimensions == 2 && !mei.do_profile) {
489  h.me = iBooker.book2D(name.second,
490  (mei.title + ";" + mei.xlabel + ";" + mei.ylabel).c_str(),
491  mei.range_x_nbins,
492  mei.range_x_min,
493  mei.range_x_max,
494  mei.range_y_nbins,
495  mei.range_y_min,
496  mei.range_y_max);
497  } else if (mei.dimensions == 2 && mei.do_profile) {
498  h.me = iBooker.bookProfile(name.second,
499  (mei.title + ";" + mei.xlabel + ";" + mei.ylabel).c_str(),
500  mei.range_x_nbins,
501  mei.range_x_min,
502  mei.range_x_max,
503  0.0,
504  0.0,
505  "");
506  } else if (mei.dimensions == 3 && mei.do_profile) {
507  h.me = iBooker.bookProfile2D(name.second,
508  (mei.title + ";" + mei.xlabel + ";" + mei.ylabel).c_str(),
509  mei.range_x_nbins,
510  mei.range_x_min,
511  mei.range_x_max,
512  mei.range_y_nbins,
513  mei.range_y_min,
514  mei.range_y_max,
515  0.0,
516  0.0); // Z range is ignored if min==max
517  } else {
518  edm::LogError("HistogramManager") << "Illegal Histogram!\n"
519  << "name " << name.second << "\n"
520  << "dim " << mei.dimensions << " profile " << mei.do_profile << "\n";
521  assert(!"Illegal Histogram kind.");
522  }
523  h.th1 = h.me->getTH1();
524  h.me->setStatOverflows(mei.statsOverflows);
525  }
526  }
527 }
constexpr int32_t ceil(float num)
MonitorElement * bookProfile2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, double lowZ, double highZ, char const *option="s", FUNC onbooking=NOOP())
Definition: DQMStore.h:476
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:36
std::string pretty(Column col)
std::vector< SummationSpecification > specs
std::pair< std::string, std::string > makePathName(SummationSpecification const &s, GeometryInterface::Values const &, SummationStep const *upto)
Log< level::Error, false > LogError
assert(be >=bs)
std::string xlabel
void load(edm::EventSetup const &iSetup)
void extractColumns(std::vector< Column > const &names, InterestingQuantities const &iq, Values &out)
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
static const Value UNDEFINED
std::string ylabel
std::vector< std::pair< Column, Value > > Values
std::vector< GeometryInterface::Values > significantvalues
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
Definition: DQMStore.h:212
std::vector< Table > tables
std::pair< Column, Value > extract(Column const &col, InterestingQuantities const &iq)
col
Definition: cuy.py:1009
std::vector< Table > counters
std::vector< InterestingQuantities > const & allModules()
step
Definition: StallMonitor.cc:83
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
GeometryInterface::InterestingQuantities iq
if(threadIdxLocalY==0 &&threadIdxLocalX==0)
#define SET_AXIS(to, from)
GeometryInterface & geometryInterface

◆ executeExtend()

void HistogramManager::executeExtend ( SummationStep const &  step,
Table t,
std::string const &  reduction,
DQMStore::IBooker iBooker,
SummationSpecification const &  s 
)
private

Definition at line 612 of file HistogramManager.cc.

References cms::cuda::assert(), trigObjTnPSource_cfi::bins, dqm::implementation::IBooker::book1D(), AbstractHistogram::count, MillePedeFileConverter_cfg::e, GeometryInterface::extractColumns(), dqmdumpme::first, geometryInterface, dqm::legacy::MonitorElement::getTH1(), mps_fire::i, AbstractHistogram::iq_sample, makePathName(), AbstractHistogram::me, dqmiodumpmetadata::n, name, LaserClient_cfi::nbins, MillePedeFileConverter_cfg::out, GeometryInterface::pretty(), alignCSCRings::s, mps_merge::separator, dqm::implementation::NavigatorBase::setCurrentFolder(), dqm::impl::MonitorElement::setStatOverflows(), significantvalues, AlCaHLTBitMon_QueryRunRegistry::string, submitPVValidationJobs::t, AbstractHistogram::th1, title, and to_string().

Referenced by executeHarvesting().

616  {
617  // For the moment only X.
618  // first pass determines the range.
619  std::map<GeometryInterface::Values, int> nbins;
620  // separators collects meta info for the render plugin about the boundaries.
621  // for each EXTEND, this is added to the axis label. In total this is not
622  // fully correct since we have to assume the the substructure of each sub-
623  // histogram is the same, which is e.g. not true for layers. It still works
624  // since layers only contain leaves (ladders).
625  std::map<GeometryInterface::Values, std::string> separators;
626 
628 
629  for (auto& e : t) {
630  geometryInterface.extractColumns(step.columns, e.second.iq_sample, significantvalues);
631  int& n = nbins[significantvalues];
632  assert(e.second.th1 || !"invalid histogram");
633  // if we reduce, every histogram only needs one bin
634  int bins = !reduce_type.empty() ? 1 : e.second.th1->GetXaxis()->GetNbins();
635  if (bins > 1)
636  separators[significantvalues] += std::to_string(n) + ",";
637  n += bins;
638  }
639  for (auto& e : separators)
640  e.second = "(" + e.second + ")/";
641 
642  Table out;
643  for (auto& e : t) {
644  geometryInterface.extractColumns(step.columns, e.second.iq_sample, significantvalues);
645  TH1* th1 = e.second.th1;
646  assert(th1);
647 
649  if (!new_histo.me) {
650  // we put the name of the actual, last column of a input histo there.
651  std::string colname = geometryInterface.pretty((e.first.end() - 1)->first);
652 
653  auto separator = separators[significantvalues];
654 
656  auto title =
657  std::string("") + th1->GetTitle() + " per " + colname + ";" + colname + separator +
658  (!reduce_type.empty() ? th1->GetYaxis()->GetTitle() : th1->GetXaxis()->GetTitle()) + ";" +
659  (!reduce_type.empty() ? reduce_type + " of " + th1->GetXaxis()->GetTitle() : th1->GetYaxis()->GetTitle());
660  iBooker.setCurrentFolder(name.first);
661 
662  if (th1->GetDimension() == 1) {
663  new_histo.me =
664  iBooker.book1D(name.second, title, nbins[significantvalues], 0.5, nbins[significantvalues] + 0.5);
665  } else {
666  assert(!"2D extend not implemented in harvesting.");
667  }
668  new_histo.th1 = new_histo.me->getTH1();
669  new_histo.iq_sample = e.second.iq_sample;
670  new_histo.count = 1; // used as a fill pointer. Assumes histograms are
671  // ordered correctly (map should provide that)
672  }
673 
674  // now add data.
675  if (new_histo.th1->GetDimension() == 1) {
676  if (reduce_type.empty()) { // no reduction, concatenate
677  for (int i = 1; i <= th1->GetXaxis()->GetNbins(); i++) {
678  new_histo.th1->SetBinContent(new_histo.count, th1->GetBinContent(i));
679  new_histo.th1->SetBinError(new_histo.count, th1->GetBinError(i));
680  new_histo.count += 1;
681  }
682  } else if (reduce_type == "MEAN") {
683  new_histo.th1->SetBinContent(new_histo.count, th1->GetMean());
684  new_histo.th1->SetBinError(new_histo.count, th1->GetMeanError());
685  new_histo.count += 1;
686  } else {
687  assert(!"Reduction type not supported");
688  }
689  new_histo.me->setStatOverflows(e.second.me->getStatOverflows());
690  } else {
691  assert(!"2D extend not implemented in harvesting.");
692  }
693  }
694  t.swap(out);
695 }
string separator
Definition: mps_merge.py:79
GeometryInterface::InterestingQuantities iq_sample
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:36
std::string pretty(Column col)
std::pair< std::string, std::string > makePathName(SummationSpecification const &s, GeometryInterface::Values const &, SummationStep const *upto)
assert(be >=bs)
static std::string to_string(const XMLCh *ch)
void extractColumns(std::vector< Column > const &names, InterestingQuantities const &iq, Values &out)
std::vector< std::pair< Column, Value > > Values
std::vector< GeometryInterface::Values > significantvalues
virtual DQM_DEPRECATED void setStatOverflows(bool value)
virtual TH1 * getTH1() const
dqm::legacy::MonitorElement * me
step
Definition: StallMonitor.cc:83
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
GeometryInterface & geometryInterface

◆ executeGroupBy()

void HistogramManager::executeGroupBy ( SummationStep const &  step,
Table t,
DQMStore::IBooker iBooker,
SummationSpecification const &  s 
)
private

Definition at line 578 of file HistogramManager.cc.

References cms::cuda::assert(), dqm::implementation::IBooker::book1D(), dqm::implementation::IBooker::book2D(), dqm::implementation::IBooker::bookProfile(), dqm::implementation::IBooker::bookProfile2D(), MillePedeFileConverter_cfg::e, GeometryInterface::extractColumns(), geometryInterface, dqm::legacy::MonitorElement::getTH1(), AbstractHistogram::iq_sample, makePathName(), AbstractHistogram::me, name, MillePedeFileConverter_cfg::out, alignCSCRings::s, dqm::implementation::NavigatorBase::setCurrentFolder(), dqm::impl::MonitorElement::setStatOverflows(), significantvalues, submitPVValidationJobs::t, and AbstractHistogram::th1.

Referenced by executeHarvesting().

581  {
582  // Simple regrouping, sum histos if they end up in the same place.
583  Table out;
585  for (auto& e : t) {
586  TH1* th1 = e.second.th1;
587  geometryInterface.extractColumns(step.columns, e.second.iq_sample, significantvalues);
589  if (!new_histo.me) {
591  iBooker.setCurrentFolder(name.first);
592  if (dynamic_cast<TH1F*>(th1))
593  new_histo.me = iBooker.book1D(name.second, (TH1F*)th1);
594  else if (dynamic_cast<TH2F*>(th1))
595  new_histo.me = iBooker.book2D(name.second, (TH2F*)th1);
596  else if (dynamic_cast<TProfile*>(th1))
597  new_histo.me = iBooker.bookProfile(name.second, (TProfile*)th1);
598  else if (dynamic_cast<TProfile2D*>(th1))
599  new_histo.me = iBooker.bookProfile2D(name.second, (TProfile2D*)th1);
600  else
601  assert(!"No idea how to book this.");
602  new_histo.th1 = new_histo.me->getTH1();
603  new_histo.iq_sample = e.second.iq_sample;
604  } else {
605  new_histo.th1->Add(th1);
606  }
607  new_histo.me->setStatOverflows(e.second.me->getStatOverflows());
608  }
609  t.swap(out);
610 }
GeometryInterface::InterestingQuantities iq_sample
MonitorElement * bookProfile2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, double lowZ, double highZ, char const *option="s", FUNC onbooking=NOOP())
Definition: DQMStore.h:476
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:36
std::pair< std::string, std::string > makePathName(SummationSpecification const &s, GeometryInterface::Values const &, SummationStep const *upto)
assert(be >=bs)
void extractColumns(std::vector< Column > const &names, InterestingQuantities const &iq, Values &out)
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
std::vector< std::pair< Column, Value > > Values
std::vector< GeometryInterface::Values > significantvalues
MonitorElement * book2D(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
Definition: DQMStore.h:212
virtual DQM_DEPRECATED void setStatOverflows(bool value)
virtual TH1 * getTH1() const
dqm::legacy::MonitorElement * me
step
Definition: StallMonitor.cc:83
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
GeometryInterface & geometryInterface

◆ executeHarvesting()

void HistogramManager::executeHarvesting ( DQMStore::IBooker iBooker,
DQMStore::IGetter iGetter 
)

Definition at line 697 of file HistogramManager.cc.

References cms::cuda::assert(), enabled, executeExtend(), executeGroupBy(), SummationStep::EXTEND_X, SummationStep::EXTEND_Y, geometryInterface, SummationStep::GROUPBY, mps_fire::i, loadFromDQMStore(), dqm-mbProfile::log, name, SummationStep::REDUCE, alignCSCRings::s, SummationStep::SAVE, specs, SummationStep::STAGE2, AlCaHLTBitMon_QueryRunRegistry::string, submitPVValidationJobs::t, and tables.

Referenced by executePerLumiHarvesting().

697  {
698  if (!enabled)
699  return;
700  // Debug output
701  for (auto& s : specs) {
702  edm::LogInfo log("HistogramManager");
703  log << "Specs for " << name << " ";
704  s.dump(log, geometryInterface);
705  }
706 
707  for (unsigned int i = 0; i < specs.size(); i++) {
708  auto& s = specs[i];
709  auto& t = tables[i];
710  loadFromDQMStore(s, t, iGetter);
711 
712  std::string reduce_type = "";
713 
714  // now execute step2.
715  for (SummationStep const& step : s.steps) {
716  if (step.stage == SummationStep::STAGE2) {
717  switch (step.type) {
718  case SummationStep::SAVE:
719  // no explicit implementation atm.
720  break;
722  executeGroupBy(step, t, iBooker, s);
723  break;
725  // reduction is done in the following EXTEND
726  reduce_type = step.arg;
727  break;
729  executeExtend(step, t, reduce_type, iBooker, s);
730  reduce_type = "";
731  break;
733  assert(!"EXTEND_Y currently not supported in harvesting.");
734  break;
735  default:
736  assert(!"Operation not supported in harvesting.");
737  }
738  }
739  }
740  }
741 }
void executeGroupBy(SummationStep const &step, Table &t, DQMStore::IBooker &iBooker, SummationSpecification const &s)
std::vector< SummationSpecification > specs
assert(be >=bs)
void executeExtend(SummationStep const &step, Table &t, std::string const &reduction, DQMStore::IBooker &iBooker, SummationSpecification const &s)
void loadFromDQMStore(SummationSpecification &s, Table &t, DQMStore::IGetter &iGetter)
std::vector< Table > tables
step
Definition: StallMonitor.cc:83
GeometryInterface & geometryInterface

◆ executePerEventHarvesting()

void HistogramManager::executePerEventHarvesting ( edm::Event const *  ev)

Definition at line 189 of file HistogramManager.cc.

References cms::cuda::assert(), bookUndefined, HltBtagPostValidation_cff::c, SummationStep::COUNT, counters, MillePedeFileConverter_cfg::e, enabled, GeometryInterface::extractColumns(), fillInternal(), geometryInterface, SummationStep::GROUPBY, timingPdfMaker::histo, mps_fire::i, iq, alignCSCRings::s, significantvalues, GeometryInterface::InterestingQuantities::sourceEvent, GeometryInterface::InterestingQuantities::sourceModule, specs, submitPVValidationJobs::t, and tables.

189  {
190  if (!enabled)
191  return;
192  for (unsigned int i = 0; i < specs.size(); i++) {
193  auto& s = specs[i];
194  auto& t = tables[i];
195  auto& c = counters[i];
196  if (s.steps[0].type != SummationStep::COUNT)
197  continue; // no counting, done
198  assert((s.steps.size() >= 2 && s.steps[1].type == SummationStep::GROUPBY) ||
199  !"Incomplete spec (but this cannot be caught in Python)");
200  for (auto& e : c) {
201  // the iq on the counter can only be a _sample_, since many modules
202  // could be grouped on one counter. Even worse, the sourceEvent ptr
203  // could be dangling if the counter was not touched in this event, so
204  // we replace it. row/col are most likely useless as well.
205  auto iq = e.second.iq_sample;
206  iq.sourceEvent = sourceEvent;
207 
208  significantvalues[i].clear();
210  auto histo = t.find(significantvalues[i]);
211  if (histo == t.end()) {
212  if (!bookUndefined)
213  continue;
214  edm::LogError("HistogramManager") << "Histogram Missing!\n"
215  << "name " << t.begin()->second.th1->GetName() << "\n"
216  << "ctr "
217  << " detid " << iq.sourceModule << "\n";
218  assert(!"Histogram not booked! (per-event) Probably inconsistent geometry description.");
219  }
220  fillInternal(e.second.count, 0, 1, iq, s.steps.begin() + 2, s.steps.end(), histo->second);
221  e.second.count = 0;
222  }
223  }
224 }
std::vector< SummationSpecification > specs
Log< level::Error, false > LogError
assert(be >=bs)
void fillInternal(double x, double y, int n_parameters, GeometryInterface::InterestingQuantities const &iq, std::vector< SummationStep >::iterator first, std::vector< SummationStep >::iterator last, AbstractHistogram &dest)
void extractColumns(std::vector< Column > const &names, InterestingQuantities const &iq, Values &out)
std::vector< GeometryInterface::Values > significantvalues
std::vector< Table > tables
std::vector< Table > counters
GeometryInterface::InterestingQuantities iq
GeometryInterface & geometryInterface

◆ executePerLumiHarvesting()

void HistogramManager::executePerLumiHarvesting ( DQMStore::IBooker iBooker,
DQMStore::IGetter iGetter,
edm::LuminosityBlock const &  lumiBlock,
edm::EventSetup const &  iSetup 
)

Definition at line 529 of file HistogramManager.cc.

References enabled, executeHarvesting(), geometryInterface, GeometryInterface::load(), GeometryInterface::loaded(), lumisection, and perLumiHarvesting.

532  {
533  if (!enabled)
534  return;
535  // this should also give us the GeometryInterface for offline, though it is a
536  // bit dirty and might explode.
537  if (!geometryInterface.loaded()) {
538  geometryInterface.load(iSetup);
539  }
540  if (perLumiHarvesting) {
541  this->lumisection = &lumiBlock; // "custom" steps can use this
542  executeHarvesting(iBooker, iGetter);
543  this->lumisection = nullptr;
544  }
545 }
void executeHarvesting(DQMStore::IBooker &iBooker, DQMStore::IGetter &iGetter)
void load(edm::EventSetup const &iSetup)
edm::LuminosityBlock const * lumisection
GeometryInterface & geometryInterface

◆ fill() [1/3]

void HistogramManager::fill ( DetId  sourceModule,
const edm::Event sourceEvent = nullptr,
int  col = 0,
int  row = 0 
)

Definition at line 116 of file HistogramManager.cc.

References cms::cuda::assert(), cuy::col, and dimensions.

Referenced by fill().

116  {
117  assert(this->dimensions == 0);
118  fill(0.0, 0.0, sourceModule, sourceEvent, col, row);
119 }
void fill(DetId sourceModule, const edm::Event *sourceEvent=nullptr, int col=0, int row=0)
assert(be >=bs)
col
Definition: cuy.py:1009

◆ fill() [2/3]

void HistogramManager::fill ( double  value,
DetId  sourceModule,
const edm::Event sourceEvent = nullptr,
int  col = 0,
int  row = 0 
)

Definition at line 112 of file HistogramManager.cc.

References cms::cuda::assert(), cuy::col, dimensions, and fill().

112  {
113  assert(this->dimensions == 1);
114  fill(x, 0.0, sourceModule, sourceEvent, col, row);
115 }
void fill(DetId sourceModule, const edm::Event *sourceEvent=nullptr, int col=0, int row=0)
assert(be >=bs)
col
Definition: cuy.py:1009

◆ fill() [3/3]

void HistogramManager::fill ( double  x,
double  y,
DetId  sourceModule,
const edm::Event sourceEvent = nullptr,
int  col = 0,
int  row = 0 
)

Definition at line 64 of file HistogramManager.cc.

References cms::cuda::assert(), bookUndefined, cuy::col, SummationStep::COUNT, counters, dimensions, enabled, GeometryInterface::extractColumns(), fastpath, fillInternal(), geometryInterface, timingPdfMaker::histo, mps_fire::i, iq, alignCSCRings::s, significantvalues, GeometryInterface::InterestingQuantities::sourceModule, specs, submitPVValidationJobs::t, tables, x, and y.

64  {
65  if (!enabled)
66  return;
67 
68  // We only need to check the module here, since the fastpath is only used to
69  // determine which plot is filled (not which bin inside) and fillInternal
70  // re-extracts whatever it needs for the axis.
71  // Since do not support booking based on ROC or time, the plot can only depend
72  // on the module.
73  // The sourceEvent check is not really effective (pointer is always the same)
74  // but needed for initialisation.
75  // NOTE that this might change if we want to support per-ROC booking
76  // NOTE that we could even cache the bin to fill if iq and spec are identical,
77  // also across HistogramManagers.
78  bool cached = false;
79  if (sourceModule == this->iq.sourceModule && sourceEvent == this->iq.sourceEvent) {
80  cached = true;
81  }
82  iq = GeometryInterface::InterestingQuantities{sourceEvent, sourceModule, int16_t(col), int16_t(row)};
83  for (unsigned int i = 0; i < specs.size(); i++) {
84  auto& s = specs[i];
85  auto& t = s.steps[0].type == SummationStep::COUNT ? counters[i] : tables[i];
86  if (!cached) { // recompute ME to fill (aka fastpath)
87  significantvalues[i].clear();
89  auto histo = t.find(significantvalues[i]);
90  if (histo == t.end()) {
91  if (bookUndefined) {
92  edm::LogError("HistogramManager") << "Missing Histogram!\n"
93  << "name " << tables[i].begin()->second.th1->GetName() << "\n";
94  assert(!"Histogram not booked! Probably inconsistent geometry description.");
95  }
96  fastpath[i] = nullptr;
97  } else {
98  fastpath[i] = &(histo->second);
99  }
100  }
101  // A fastpath of nullptr means there is no ME for this iq, which can be
102  // a valid cached result.
103  if (fastpath[i]) {
104  if (s.steps[0].type == SummationStep::COUNT) {
105  fastpath[i]->count++;
106  } else {
107  fillInternal(x, y, this->dimensions, iq, s.steps.begin() + 1, s.steps.end(), *(fastpath[i]));
108  }
109  }
110  }
111 }
std::vector< SummationSpecification > specs
Log< level::Error, false > LogError
assert(be >=bs)
void fillInternal(double x, double y, int n_parameters, GeometryInterface::InterestingQuantities const &iq, std::vector< SummationStep >::iterator first, std::vector< SummationStep >::iterator last, AbstractHistogram &dest)
void extractColumns(std::vector< Column > const &names, InterestingQuantities const &iq, Values &out)
std::vector< AbstractHistogram * > fastpath
std::vector< GeometryInterface::Values > significantvalues
std::vector< Table > tables
col
Definition: cuy.py:1009
std::vector< Table > counters
GeometryInterface::InterestingQuantities iq
GeometryInterface & geometryInterface

◆ fillInternal()

void HistogramManager::fillInternal ( double  x,
double  y,
int  n_parameters,
GeometryInterface::InterestingQuantities const &  iq,
std::vector< SummationStep >::iterator  first,
std::vector< SummationStep >::iterator  last,
AbstractHistogram dest 
)
private

Definition at line 121 of file HistogramManager.cc.

References cms::cuda::assert(), mps_fire::dest, SummationStep::EXTEND_X, SummationStep::EXTEND_Y, GeometryInterface::extract(), dqmdumpme::first, multPhiCorr_741_25nsDY_cfi::fx, multPhiCorr_741_25nsDY_cfi::fy, geometryInterface, iq, ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, dqmdumpme::last, SummationStep::PROFILE, SummationStep::STAGE1, SummationStep::USE_X, SummationStep::USE_Y, SummationStep::USE_Z, x, and y.

Referenced by executePerEventHarvesting(), and fill().

127  {
128  double fx = 0, fy = 0, fz = 0;
129  int tot_parameters = n_parameters;
130  for (auto it = first; it != last; ++it) {
131  if (it->stage != SummationStep::STAGE1)
132  break;
133  // The specification builder precomputes where x and y go, this loop will
134  // always do 3 iterations to set x, y, z. The builder does not know how
135  // many parameters we have, so we have to check that and count the total.
136  switch (it->type) {
138  if (it->arg[0] == '1' && n_parameters >= 1)
139  fx = x;
140  if (it->arg[0] == '2' && n_parameters >= 2)
141  fx = y;
142  break;
144  if (it->arg[0] == '1' && n_parameters >= 1)
145  fy = x;
146  if (it->arg[0] == '2' && n_parameters >= 2)
147  fy = y;
148  break;
150  if (it->arg[0] == '1' && n_parameters >= 1)
151  fz = x;
152  if (it->arg[0] == '2' && n_parameters >= 2)
153  fz = y;
154  break;
156  fx = geometryInterface.extract(it->columns[0], iq).second;
157  tot_parameters++;
158  break;
160  fy = geometryInterface.extract(it->columns[0], iq).second;
161  tot_parameters++;
162  break;
164  break; // profile does not make a difference here, only in booking
165  default:
166  assert(!"illegal step in STAGE1!");
167  }
168  }
169 
170  switch (tot_parameters) {
171  case 1:
172  dest.me->Fill(fx);
173  break;
174  case 2:
175  dest.me->Fill(fx, fy);
176  break;
177  case 3:
178  dest.me->Fill(fx, fy, fz);
179  break;
180  default:
181  edm::LogError("HistogramManager") << "got " << tot_parameters << " dimensions\n"
182  << "name " << dest.th1->GetName() << "\n";
183  assert(!"More than 3 dimensions should never occur.");
184  }
185 }
Log< level::Error, false > LogError
assert(be >=bs)
std::pair< Column, Value > extract(Column const &col, InterestingQuantities const &iq)
GeometryInterface::InterestingQuantities iq
GeometryInterface & geometryInterface

◆ loadFromDQMStore()

void HistogramManager::loadFromDQMStore ( SummationSpecification s,
Table t,
DQMStore::IGetter iGetter 
)
private

Definition at line 547 of file HistogramManager.cc.

References GeometryInterface::allModules(), bookUndefined, GeometryInterface::extractColumns(), geometryInterface, dqm::implementation::IGetter::get(), SummationStep::GROUPBY, timingPdfMaker::histo, iq, makePathName(), hlt_dqm_clientPB-live_cfg::me, name, castor_dqm_sourceclient_file_cfg::path, alignCSCRings::s, significantvalues, SummationStep::STAGE2, AlCaHLTBitMon_QueryRunRegistry::string, and submitPVValidationJobs::t.

Referenced by executeHarvesting().

547  {
548  t.clear();
550  auto firststep = s.steps.begin();
551  if (firststep->type != SummationStep::GROUPBY)
552  ++firststep;
553  auto laststep = std::find_if(
554  s.steps.begin(), s.steps.end(), [](SummationStep const& step) { return step.stage == SummationStep::STAGE2; });
555 
556  for (auto iq : geometryInterface.allModules()) {
558 
559  auto histo = t.find(significantvalues);
560  if (histo == t.end()) {
561  auto name = makePathName(s, significantvalues, &(*laststep));
562  std::string path = name.first + name.second;
563  MonitorElement* me = iGetter.get(path);
564  if (!me) {
565  if (bookUndefined)
566  edm::LogError("HistogramManager") << "ME " << path << " not found\n";
567  // else this will happen quite often
568  } else {
570  histo.me = me;
571  histo.th1 = histo.me->getTH1();
572  histo.iq_sample = iq;
573  }
574  }
575  }
576 }
std::pair< std::string, std::string > makePathName(SummationSpecification const &s, GeometryInterface::Values const &, SummationStep const *upto)
Log< level::Error, false > LogError
void extractColumns(std::vector< Column > const &names, InterestingQuantities const &iq, Values &out)
std::vector< std::pair< Column, Value > > Values
std::vector< GeometryInterface::Values > significantvalues
virtual MonitorElement * get(std::string const &fullpath) const
Definition: DQMStore.cc:712
std::vector< InterestingQuantities > const & allModules()
step
Definition: StallMonitor.cc:83
GeometryInterface::InterestingQuantities iq
GeometryInterface & geometryInterface

◆ makePathName()

std::pair< std::string, std::string > HistogramManager::makePathName ( SummationSpecification const &  s,
GeometryInterface::Values const &  significantvalues,
SummationStep const *  upto 
)
private

Definition at line 226 of file HistogramManager.cc.

References SummationStep::COUNT, DeadROC_duringRun::dir, MillePedeFileConverter_cfg::e, SummationStep::EXTEND_X, SummationStep::EXTEND_Y, GeometryInterface::formatValue(), geometryInterface, ALPAKA_ACCELERATOR_NAMESPACE::vertexFinder::it, name, GeometryInterface::pretty(), DivergingColor::red, SummationStep::REDUCE, alignCSCRings::s, significantvalues, SummationStep::STAGE1, AlCaHLTBitMon_QueryRunRegistry::string, makePlotsFromDump::suffix, to_lower(), and top_folder_name.

Referenced by book(), executeExtend(), executeGroupBy(), and loadFromDQMStore().

228  {
229  std::ostringstream dir("");
230  std::string suffix = "";
231 
232  // we omit the last value here, to get all disks next to each other etc.
233  if (!significantvalues.empty()) {
234  for (auto it = significantvalues.begin(); it != (significantvalues.end() - 1); ++it) {
235  auto name = geometryInterface.formatValue(it->first, it->second);
236  if (name.empty())
237  continue;
238  dir << name << "/";
239  }
240  auto e = significantvalues[significantvalues.size() - 1];
241  suffix = "_" + geometryInterface.formatValue(e.first, e.second);
242  }
243 
244  // PERF: this is actually independent of significantvalues and iq
245  std::string name = this->name;
246  for (SummationStep const& step : s.steps) {
247  if (&step == upto)
248  break;
249  switch (step.type) {
251  name = "num_" + name;
252  break;
255  if (step.stage != SummationStep::STAGE1)
256  break;
257  GeometryInterface::Column col0 = step.columns[0];
258  std::string colname = geometryInterface.pretty(col0);
259  name = name + "_per_" + colname;
260  break;
261  }
262  case SummationStep::REDUCE: {
263  auto red = step.arg;
265  name = red + "_" + name;
266  break;
267  }
268  default:
269  // Maybe PROFILE is worth showing.
270  break; // not visible in name
271  }
272  }
273  return std::make_pair(top_folder_name + "/" + dir.str(), name + suffix);
274 }
std::string pretty(Column col)
std::string formatValue(Column, Value)
std::string to_lower(const std::string &s)
std::string top_folder_name
std::vector< GeometryInterface::Values > significantvalues
step
Definition: StallMonitor.cc:83
GeometryInterface & geometryInterface

Member Data Documentation

◆ bookUndefined

bool HistogramManager::bookUndefined

Definition at line 91 of file HistogramManager.h.

Referenced by book(), executePerEventHarvesting(), fill(), and loadFromDQMStore().

◆ counters

std::vector<Table> HistogramManager::counters
private

◆ dimensions

int HistogramManager::dimensions

Definition at line 98 of file HistogramManager.h.

Referenced by book(), and fill().

◆ enabled

bool HistogramManager::enabled

◆ fastpath

std::vector<AbstractHistogram*> HistogramManager::fastpath
private

Definition at line 120 of file HistogramManager.h.

Referenced by addSpec(), and fill().

◆ geometryInterface

GeometryInterface& HistogramManager::geometryInterface
private

◆ iq

GeometryInterface::InterestingQuantities HistogramManager::iq
private

◆ lumisection

edm::LuminosityBlock const* HistogramManager::lumisection = nullptr

Definition at line 108 of file HistogramManager.h.

Referenced by executePerLumiHarvesting().

◆ name

std::string HistogramManager::name

Definition at line 94 of file HistogramManager.h.

Referenced by ElectronMVAID.ElectronMVAID::__call__(), FWLite.ElectronMVAID::__call__(), dirstructure.Directory::__create_pie_image(), DisplayManager.DisplayManager::__del__(), dqm_interfaces.DirID::__eq__(), dirstructure.Directory::__get_full_path(), dirstructure.Comparison::__get_img_name(), dirstructure.Comparison::__make_image(), core.autovars.NTupleVariable::__repr__(), core.autovars.NTupleObjectType::__repr__(), core.autovars.NTupleObject::__repr__(), core.autovars.NTupleCollection::__repr__(), dirstructure.Directory::__repr__(), dqm_interfaces.DirID::__repr__(), dirstructure.Comparison::__repr__(), config.Service::__setattr__(), config.CFG::__str__(), counter.Counter::__str__(), average.Average::__str__(), FWLite.WorkingPoints::_reformat_cut_definitions(), core.autovars.NTupleObjectType::addSubObjects(), core.autovars.NTupleObjectType::addVariables(), core.autovars.NTupleObjectType::allVars(), book(), dataset.CMSDataset::buildListOfFiles(), dataset.LocalDataset::buildListOfFiles(), dataset.CMSDataset::buildListOfFilesDBS(), dirstructure.Directory::calcStats(), validation.Sample::digest(), python.rootplot.utilities.Hist::divide(), python.rootplot.utilities.Hist::divide_wilson(), DisplayManager.DisplayManager::Draw(), TreeCrawler.Package::dump(), executeExtend(), executeGroupBy(), executeHarvesting(), core.autovars.NTupleVariable::fillBranch(), core.autovars.NTupleObject::fillBranches(), core.autovars.NTupleCollection::fillBranchesScalar(), core.autovars.NTupleCollection::fillBranchesVector(), core.autovars.NTupleCollection::get_cpp_declaration(), core.autovars.NTupleCollection::get_cpp_wrapper_class(), core.autovars.NTupleCollection::get_py_wrapper_class(), utils.StatisticalTest::get_status(), production_tasks.Task::getname(), dataset.CMSDataset::getPrimaryDatasetEntries(), dataset.PrivateDataset::getPrimaryDatasetEntries(), VIDSelectorBase.VIDSelectorBase::initialize(), loadFromDQMStore(), personalPlayback.Applet::log(), core.autovars.NTupleVariable::makeBranch(), core.autovars.NTupleObject::makeBranches(), core.autovars.NTupleCollection::makeBranchesScalar(), core.autovars.NTupleCollection::makeBranchesVector(), makePathName(), dirstructure.Directory::print_report(), dataset.BaseDataset::printInfo(), dataset.Dataset::printInfo(), production_tasks.MonitorJobs::run(), python.rootplot.utilities.Hist::TGraph(), python.rootplot.utilities.Hist::TH1F(), counter.Counter::write(), and average.Average::write().

◆ perLumiHarvesting

bool HistogramManager::perLumiHarvesting

Definition at line 90 of file HistogramManager.h.

Referenced by executePerLumiHarvesting().

◆ range_x_max

double HistogramManager::range_x_max

Definition at line 101 of file HistogramManager.h.

Referenced by book().

◆ range_x_min

double HistogramManager::range_x_min

Definition at line 100 of file HistogramManager.h.

Referenced by book().

◆ range_x_nbins

int HistogramManager::range_x_nbins

Definition at line 99 of file HistogramManager.h.

Referenced by book().

◆ range_y_max

double HistogramManager::range_y_max

Definition at line 104 of file HistogramManager.h.

Referenced by book().

◆ range_y_min

double HistogramManager::range_y_min

Definition at line 103 of file HistogramManager.h.

Referenced by book().

◆ range_y_nbins

int HistogramManager::range_y_nbins

Definition at line 102 of file HistogramManager.h.

Referenced by book().

◆ significantvalues

std::vector<GeometryInterface::Values> HistogramManager::significantvalues
private

◆ specs

std::vector<SummationSpecification> HistogramManager::specs
private

Definition at line 64 of file HistogramManager.h.

Referenced by addSpec(), book(), executeHarvesting(), executePerEventHarvesting(), and fill().

◆ statsOverflows

bool HistogramManager::statsOverflows

Definition at line 105 of file HistogramManager.h.

Referenced by book().

◆ tables

std::vector<Table> HistogramManager::tables
private

Definition at line 65 of file HistogramManager.h.

Referenced by addSpec(), book(), executeHarvesting(), executePerEventHarvesting(), and fill().

◆ title

std::string HistogramManager::title

◆ top_folder_name

std::string HistogramManager::top_folder_name

Definition at line 92 of file HistogramManager.h.

Referenced by makePathName().

◆ xlabel

std::string HistogramManager::xlabel

◆ ylabel

std::string HistogramManager::ylabel