ATLAS Offline Software
HistogramFillerFactory.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 
10 
11 #include "HistogramFiller1D.h"
15 #include "VecHistogramFiller1D.h"
16 #include "HistogramFillerProfile.h"
17 #include "HistogramFiller2D.h"
19 #include "HistogramFillerTree.h"
20 
21 #include "HistogramFillerFactory.h"
22 
23 using namespace Monitored;
24 
26  std::shared_ptr<IHistogramProvider> histogramProvider = createHistogramProvider(def);
27 
28  if (def.type.starts_with( "TH1")) {
29  if (def.kCumulative) {
30  return new CumulativeHistogramFiller1D(def, histogramProvider);
31  } else if (def.kAddBinsDynamically || def.kRebinAxes) {
32  return new HistogramFillerRebinable1D(def, histogramProvider);
33  } else if (def.kVec || def.kVecUO) {
34  return new VecHistogramFiller1D(def, histogramProvider);
35  } else {
36  return new HistogramFiller1D(def, histogramProvider);
37  }
38  } else if (def.type.starts_with( "TH2")) {
39  if (def.kAddBinsDynamically || def.kRebinAxes) {
40  return new HistogramFillerRebinable2D(def, histogramProvider);
41  } else {
42  return new HistogramFiller2D(def, histogramProvider);
43  }
44  } else if (def.type == "TProfile") {
45  if (def.kAddBinsDynamically || def.kRebinAxes) {
46  return new HistogramFillerProfileRebinable(def, histogramProvider);
47  } else {
48  return new HistogramFillerProfile(def, histogramProvider);
49  }
50  } else if (def.type == "TProfile2D") {
51  if (def.kAddBinsDynamically || def.kRebinAxes) {
52  return new HistogramFiller2DProfileRebinable(def, histogramProvider);
53  } else {
54  return new HistogramFiller2DProfile(def, histogramProvider);
55  }
56  } else if (def.type == "TEfficiency") {
57  return new HistogramFillerEfficiency(def, histogramProvider);
58  } else if (def.type == "TTree") {
59  return new HistogramFillerTree(def, histogramProvider);
60  }
61 
62  return nullptr;
63 }
64 
65 std::shared_ptr<IHistogramProvider> HistogramFillerFactory::createHistogramProvider(const HistogramDef& def) {
66  std::shared_ptr<IHistogramProvider> result;
67 
70  } else if (def.kLBNHistoryDepth) {
72  } else if (def.kLive) {
74  } else {
75  result.reset(new StaticHistogramProvider(m_factory, def));
76  }
77 
78  return result;
79 }
HistogramFiller2D.h
get_generator_info.result
result
Definition: get_generator_info.py:21
Monitored::HistogramDef::kAddBinsDynamically
bool kAddBinsDynamically
add new bins outside the existing range
Definition: HistogramDef.h:45
LiveHistogramProvider.h
Monitored::VecHistogramFiller1D
Definition: VecHistogramFiller1D.h:11
Monitored::LumiblockHistogramProvider
Implementation of IHistogramProvider for lumi block based histograms.
Definition: LumiblockHistogramProvider.h:25
Monitored::HistogramFillerProfile
HistogramFiller2DGeneric< TProfile > HistogramFillerProfile
TProfile filler.
Definition: HistogramFillerProfile.h:17
Monitored::HistogramFiller1D
Filler for plain 1D histograms.
Definition: HistogramFiller1D.h:22
Monitored::HistogramFillerTree
Filler for TTrees.
Definition: HistogramFillerTree.h:22
Monitored::LiveHistogramProvider
Provides latest-N-lumiblock histograms to be filled.
Definition: LiveHistogramProvider.h:24
Monitored::HistogramFiller2DProfile
Filler for profile 2D histogram.
Definition: HistogramFiller2DProfile.h:17
OfflineHistogramProvider.h
HistogramFiller2DProfile.h
HistogramFillerTree.h
Monitored::HistogramDef
the internal class used to keep parsed Filler properties
Definition: HistogramDef.h:15
Monitored::HistogramFillerEfficiency
Filler for TEfficiency graphs.
Definition: HistogramFillerEfficiency.h:17
Monitored::CumulativeHistogramFiller1D
Filler for 1D histograms filled in cummulative mode.
Definition: CumulativeHistogramFiller1D.h:14
Monitored::HistogramDef::kVec
bool kVec
add content to each bin from each element of a vector
Definition: HistogramDef.h:48
Monitored
Generic monitoring tool for athena components.
Definition: GenericMonitoringTool.h:30
Monitored::StaticHistogramProvider
Default implementation of IHistogramProvider interface.
Definition: StaticHistogramProvider.h:23
Monitored::HistogramFillerProfileRebinable
HistogramFillerRebinableAxis< HistogramFillerProfile, Axis::X > HistogramFillerProfileRebinable
TProfile filler with rebinable x-axis.
Definition: HistogramFillerProfile.h:19
Monitored::HistogramFillerFactory::createHistogramProvider
std::shared_ptr< IHistogramProvider > createHistogramProvider(const HistogramDef &def)
Definition: HistogramFillerFactory.cxx:65
Monitored::HistogramFillerFactory::m_gmTool
GenericMonitoringTool * m_gmTool
Definition: HistogramFillerFactory.h:51
Monitored::HistogramDef::kRebinAxes
bool kRebinAxes
increase the axis range without adding new bins
Definition: HistogramDef.h:46
Monitored::HistogramFiller
Base class for all histogram fillers.
Definition: HistogramFiller.h:44
HistogramFiller1D.h
Monitored::HistogramFiller2D
HistogramFiller2DGeneric< TH2 > HistogramFiller2D
Definition: HistogramFiller2D.h:80
Monitored::HistogramDef::runmode
RunMode runmode
online or offline
Definition: HistogramDef.h:40
Monitored::HistogramDef::kVecUO
bool kVecUO
add content to each bin from vector, including overflow/underflow
Definition: HistogramDef.h:49
Monitored::HistogramDef::type
std::string type
class name
Definition: HistogramDef.h:18
Monitored::OfflineHistogramProvider
Implementation of IHistogramProvider for offline histograms.
Definition: OfflineHistogramProvider.h:29
LumiblockHistogramProvider.h
Monitored::HistogramFillerFactory::m_factory
std::shared_ptr< HistogramFactory > m_factory
Definition: HistogramFillerFactory.h:52
CumulativeHistogramFiller1D.h
Monitored::HistogramDef::RunMode::Offline
@ Offline
monitoring data offline
Monitored::HistogramDef::kLive
int kLive
fill only the last N lumiblocks in y_vs_lb plots
Definition: HistogramDef.h:51
Monitored::HistogramDef::kCumulative
bool kCumulative
fill bin of monitored object's value, and every bin below it
Definition: HistogramDef.h:50
Monitored::HistogramFillerRebinable2D
HistogramFillerRebinableAxis< HistogramFillerRebinable2DX, Axis::Y > HistogramFillerRebinable2D
Rebinable 2D histogram (both axes)
Definition: HistogramFillerRebinable.h:78
Monitored::HistogramFillerFactory::create
HistogramFiller * create(const HistogramDef &def)
Creates HistogramFiller instance for given definition.
Definition: HistogramFillerFactory.cxx:25
HistogramFillerProfile.h
HistogramFillerFactory.h
Monitored::HistogramFiller2DProfileRebinable
HistogramFillerRebinableAxis< HistogramFiller2DProfile, Axis::X > HistogramFiller2DProfileRebinable
TProfile2D filler with rebinable x-axis.
Definition: HistogramFiller2DProfile.h:58
Monitored::HistogramDef::kLBNHistoryDepth
int kLBNHistoryDepth
length of lb history
Definition: HistogramDef.h:44
VecHistogramFiller1D.h
HistogramFillerRebinable.h
HistogramFillerEfficiency.h
Monitored::HistogramFillerRebinable1D
HistogramFillerRebinableAxis< HistogramFiller1D, Axis::X > HistogramFillerRebinable1D
Rebinable 1D histogram.
Definition: HistogramFillerRebinable.h:72
StaticHistogramProvider.h