![]() |
ATLAS Offline Software
|
#include <ReconElectronsPlots.h>
Public Member Functions | |
| ReconElectronsPlots (PlotBase *pParent, const std::string &sDir, const std::string &sParticleType) | |
| void | fill (const xAOD::Electron *electron, int level) |
| void | fillinAcc (const xAOD::Electron *electron, int level) |
| void | fill (const xAOD::EventInfo *eventInfo, const xAOD::VertexContainer *vertices) |
| void | fillShowerShape (const xAOD::Electron *electron) |
| void | fillTrackCaloMatch (const xAOD::Electron *electron, const xAOD::TrackParticle *track) |
| void | fillIsolation (const xAOD::Electron *electron) |
| void | fillHitInfo (const xAOD::Electron *electron) |
| void | makeEfficiencyPlot (TH1 *hDenom, TH1 *hNom, TProfile *hEff) |
| void | initialize () |
| void | finalize () |
| void | setDetailLevel (int iDetailLevel) |
| void | RegisterSubPlot (PlotBase *pPlotBase) |
| std::vector< HistData > | retrieveBookedHistograms () |
| Retrieve all booked histograms. | |
| std::vector< TreeData > | retrieveBookedTrees () |
| Retrieve all booked trees. | |
| std::vector< EfficiencyData > | retrieveBookedEfficiencies () |
| Retrieve all booked efficiency objects. | |
| TTree * | BookTree (const std::string &name, bool prependDir=true) |
| Book a TTree. | |
| const std::string & | getDirectory () |
Methods to book monitoring histograms | |
Note: methods starting with capitals should be deprecated in favour of camel-cased methods | |
| TH1D * | Book1D (const std::string &name, const std::string &labels, int nBins, float start, float end, bool prependDir=true) |
| Book a TH1D histogram. | |
| TH1D * | Book1D (const std::string &name, TH1 *refHist, const std::string &labels, bool prependDir=true) |
| Book a TH1D histogram using refHist as reference for number of bins and axis range. | |
| TH2F * | Book2D (const std::string &name, const std::string &labels, int nBinsX, float startX, float endX, int nBinsY, float startY, float endY, bool prependDir=true) |
| Book a TH2F histogram. | |
| TH2F * | Book2D (const std::string &name, TH2 *refHist, const std::string &labels, bool prependDir=true) |
| Book a TH2D histogram using refHist as reference for number of bins and axis range. | |
| TH2F * | Book2D (const std::string &name, const std::string &labels, int nBinsX, Double_t *binsX, int nBinsY, Double_t startY, Double_t endY, bool prependDir=true) |
| Book a TH2F histogram with variable x axis binning. | |
| TH3F * | Book3D (const std::string &name, const std::string &labels, int nBinsX, float startX, float endX, int nBinsY, float startY, float endY, int nBinsZ, float startZ, float endZ, bool prependDir=true) |
| Book a TH3F histogram. | |
| TH3F * | Book3D (const std::string &name, TH3 *refHist, const std::string &labels, bool prependDir=true) |
| Book a TH3F histogram using refHist as reference for number of bins and axis range. | |
| TProfile * | BookTProfile (const std::string &name, const std::string &labels, int nBinsX, float startX, float endX, float startY=-1, float endY=-1, bool prependDir=true, bool useRMS=false) |
| Book a TProfile histogram. | |
| TProfile * | BookTProfile (const std::string &name, const std::string &labels, int nBinsX, float *binsX, bool prependDir=true) |
| Book a TProfile histogram with variable binning in x-axis. | |
| TProfile * | BookTProfileRangeY (const std::string &name, const std::string &labels, int nBinsX, double *binsX, double startY, double endY, bool prependDir=true) |
| Book a TProfile histogram with variable binning in x-axis and limits in y-values. | |
| TProfile2D * | BookTProfile2D (const std::string &name, const std::string &labels, const int nBinsX, const double xlo, const double xhi, const int nBinsY, const double ylo, const double yhi, bool prependDir=true, bool useRMS=false) |
| Book a TProfile 2D histogram with variable binning in x-axis and limits in y-values. | |
| TProfile2D * | BookTProfile2D (const std::string &name, const std::string &labels, const int nBinsX, double *binsX, const int nBinsY, double *binsY, bool prependDir=true, bool useRMS=false) |
| Book a TProfile 2D histogram with variable binning in x-axis and limits in y-values. | |
| TEfficiency * | BookTEfficiency (const std::string &name, const std::string &labels, const int nBinsX, const float xlo, const float xhi, const bool prependDir=true) |
| Book a (1-D) TEfficiency histogram. | |
| TEfficiency * | BookTEfficiency (const std::string &name, const std::string &labels, const int nBinsX, const float xlo, const float xhi, const int nBinsy, const float ylo, const float yhi, const bool prependDir=true) |
| Book a (2-D) TEfficiency histogram. | |
Static Public Attributes | |
| static const int | nLevels = 8 |
| static const std::string | cLevelLabel [nLevels] |
Protected Attributes | |
| std::vector< PlotBase * > | m_vSubNodes |
| std::vector< HistData > | m_vBookedHistograms |
| std::vector< TreeData > | m_vBookedTrees |
| std::vector< EfficiencyData > | m_vBookedEfficiencies |
| std::string | m_sDirectory |
| int | m_iDetailLevel |
Private Member Functions | |
| virtual void | initializePlots () |
| virtual void | finalizePlots () |
Static Private Member Functions | |
| static std::string | constructPrefix (std::string dir, bool prependDir) |
Definition at line 17 of file ReconElectronsPlots.h.
| ZeeValidation::ReconElectronsPlots::ReconElectronsPlots | ( | PlotBase * | pParent, |
| const std::string & | sDir, | ||
| const std::string & | sParticleType ) |
Definition at line 12 of file ReconElectronsPlots.cxx.
|
inherited |
Book a TH1D histogram.
Definition at line 94 of file PlotBase.cxx.
|
inherited |
Book a TH1D histogram using refHist as reference for number of bins and axis range.
Definition at line 108 of file PlotBase.cxx.
|
inherited |
Book a TH2F histogram with variable x axis binning.
Definition at line 144 of file PlotBase.cxx.
|
inherited |
Book a TH2F histogram.
Definition at line 123 of file PlotBase.cxx.
|
inherited |
Book a TH2D histogram using refHist as reference for number of bins and axis range.
Definition at line 138 of file PlotBase.cxx.
|
inherited |
Book a TH3F histogram.
Definition at line 157 of file PlotBase.cxx.
|
inherited |
Book a TH3F histogram using refHist as reference for number of bins and axis range.
Definition at line 171 of file PlotBase.cxx.
|
inherited |
Book a (1-D) TEfficiency histogram.
Definition at line 257 of file PlotBase.cxx.
|
inherited |
Book a (2-D) TEfficiency histogram.
Definition at line 270 of file PlotBase.cxx.
|
inherited |
Book a TProfile histogram with variable binning in x-axis.
Definition at line 204 of file PlotBase.cxx.
|
inherited |
Book a TProfile histogram.
Definition at line 186 of file PlotBase.cxx.
|
inherited |
Book a TProfile 2D histogram with variable binning in x-axis and limits in y-values.
Definition at line 231 of file PlotBase.cxx.
|
inherited |
Book a TProfile 2D histogram with variable binning in x-axis and limits in y-values.
Definition at line 245 of file PlotBase.cxx.
|
inherited |
Book a TProfile histogram with variable binning in x-axis and limits in y-values.
Definition at line 217 of file PlotBase.cxx.
|
inherited |
Book a TTree.
Definition at line 281 of file PlotBase.cxx.
|
staticprivateinherited |
Definition at line 293 of file PlotBase.cxx.
| void ZeeValidation::ReconElectronsPlots::fill | ( | const xAOD::Electron * | electron, |
| int | level ) |
Definition at line 180 of file ReconElectronsPlots.cxx.
| void ZeeValidation::ReconElectronsPlots::fill | ( | const xAOD::EventInfo * | eventInfo, |
| const xAOD::VertexContainer * | vertices ) |
Definition at line 162 of file ReconElectronsPlots.cxx.
| void ZeeValidation::ReconElectronsPlots::fillHitInfo | ( | const xAOD::Electron * | electron | ) |
Definition at line 277 of file ReconElectronsPlots.cxx.
| void ZeeValidation::ReconElectronsPlots::fillinAcc | ( | const xAOD::Electron * | electron, |
| int | level ) |
Definition at line 184 of file ReconElectronsPlots.cxx.
| void ZeeValidation::ReconElectronsPlots::fillIsolation | ( | const xAOD::Electron * | electron | ) |
Definition at line 255 of file ReconElectronsPlots.cxx.
| void ZeeValidation::ReconElectronsPlots::fillShowerShape | ( | const xAOD::Electron * | electron | ) |
Definition at line 189 of file ReconElectronsPlots.cxx.
| void ZeeValidation::ReconElectronsPlots::fillTrackCaloMatch | ( | const xAOD::Electron * | electron, |
| const xAOD::TrackParticle * | track ) |
Definition at line 235 of file ReconElectronsPlots.cxx.
|
inherited |
Definition at line 47 of file PlotBase.cxx.
|
privatevirtual |
Reimplemented from PlotBase.
Definition at line 312 of file ReconElectronsPlots.cxx.
|
inlineinherited |
Definition at line 88 of file PlotBase.h.
|
inherited |
Definition at line 39 of file PlotBase.cxx.
|
privatevirtual |
Reimplemented from PlotBase.
Definition at line 66 of file ReconElectronsPlots.cxx.
| void ZeeValidation::ReconElectronsPlots::makeEfficiencyPlot | ( | TH1 * | hDenom, |
| TH1 * | hNom, | ||
| TProfile * | hEff ) |
Definition at line 321 of file ReconElectronsPlots.cxx.
|
inlineinherited |
Definition at line 41 of file PlotBase.h.
|
inherited |
Retrieve all booked efficiency objects.
Definition at line 83 of file PlotBase.cxx.
|
inherited |
Retrieve all booked histograms.
Definition at line 63 of file PlotBase.cxx.
|
inherited |
Retrieve all booked trees.
Definition at line 73 of file PlotBase.cxx.
|
inherited |
Definition at line 55 of file PlotBase.cxx.
|
static |
Definition at line 34 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_bcid |
Definition at line 44 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_d0 |
Definition at line 112 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_demm1 |
Definition at line 78 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_deta1 |
Definition at line 82 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_deta2 |
Definition at line 83 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_dphi1 |
Definition at line 84 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_dphi2 |
Definition at line 85 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_dphires2 |
Definition at line 86 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_e233 |
Definition at line 62 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_e237 |
Definition at line 63 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_e277 |
Definition at line 64 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_e2tsts1 |
Definition at line 74 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_electron_author |
Definition at line 41 of file ReconElectronsPlots.h.
| TProfile* ZeeValidation::ReconElectronsPlots::h_electron_eff_eta[nLevels-1] |
Definition at line 55 of file ReconElectronsPlots.h.
| TProfile* ZeeValidation::ReconElectronsPlots::h_electron_eff_phi[nLevels-1] |
Definition at line 56 of file ReconElectronsPlots.h.
| TProfile* ZeeValidation::ReconElectronsPlots::h_electron_eff_pt[nLevels-1] |
Definition at line 54 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_electron_eta[nLevels] |
Definition at line 51 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_electron_n |
Definition at line 39 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_electron_phi[nLevels] |
Definition at line 52 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_electron_pt[nLevels] |
Definition at line 50 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_emaxs1 |
Definition at line 77 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_emins1 |
Definition at line 76 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_eoverp |
Definition at line 114 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_eoverpq |
Definition at line 115 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_eratio |
Definition at line 80 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_etcone20 |
Definition at line 88 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_etcone30 |
Definition at line 89 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_etcone40 |
Definition at line 90 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_ethad |
Definition at line 70 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_ethad1 |
Definition at line 71 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_f1 |
Definition at line 58 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_f1core |
Definition at line 60 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_f3 |
Definition at line 59 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_f3core |
Definition at line 61 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_fetcone20 |
Definition at line 91 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_fetcone30 |
Definition at line 92 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_fetcone40 |
Definition at line 93 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_fethad |
Definition at line 72 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_fethad1 |
Definition at line 73 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_fracs1 |
Definition at line 75 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_iso |
Definition at line 79 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_mu |
Definition at line 43 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_blayer_hits |
Definition at line 98 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_blayer_hits_outliers |
Definition at line 105 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_pixel_hits |
Definition at line 99 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_pixel_hits_outliers |
Definition at line 106 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_si_hits |
Definition at line 100 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_si_hits_outliers |
Definition at line 107 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_trt_hits |
Definition at line 101 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_trt_hits_high |
Definition at line 102 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_trt_hits_high_outliers |
Definition at line 109 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_n_trt_hits_outliers |
Definition at line 108 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_nvtx |
Definition at line 42 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_photon_n |
Definition at line 40 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_ptcone20 |
Definition at line 94 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_ptcone30 |
Definition at line 95 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_ptcone40 |
Definition at line 96 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_pv_x |
Definition at line 46 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_pv_y |
Definition at line 47 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_pv_z |
Definition at line 48 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_r_trt_hits |
Definition at line 103 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_r_trt_hits_outliers |
Definition at line 110 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_reta |
Definition at line 65 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_rphi |
Definition at line 66 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_sigmad0 |
Definition at line 113 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_track_n |
Definition at line 45 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_weta1 |
Definition at line 67 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_weta2 |
Definition at line 68 of file ReconElectronsPlots.h.
| TH1* ZeeValidation::ReconElectronsPlots::h_wtots1 |
Definition at line 69 of file ReconElectronsPlots.h.
|
protectedinherited |
Definition at line 101 of file PlotBase.h.
|
protectedinherited |
Definition at line 100 of file PlotBase.h.
| std::string ZeeValidation::ReconElectronsPlots::m_sParticleType |
Definition at line 37 of file ReconElectronsPlots.h.
|
protectedinherited |
Definition at line 99 of file PlotBase.h.
|
protectedinherited |
Definition at line 97 of file PlotBase.h.
|
protectedinherited |
Definition at line 98 of file PlotBase.h.
|
protectedinherited |
Definition at line 96 of file PlotBase.h.
|
static |
Definition at line 33 of file ReconElectronsPlots.h.