|
ATLAS Offline Software
|
#include <ElectronPlots.h>
Definition at line 24 of file ElectronPlots.h.
◆ ElectronPlots()
Egamma::ElectronPlots::ElectronPlots |
( |
PlotBase * |
pParent, |
|
|
const std::string & |
sDir, |
|
|
const std::string & |
sParticleType |
|
) |
| |
Definition at line 16 of file ElectronPlots.cxx.
40 m_oKinPromptRecoPlots(
this,
"Truth_matched/KinPlots/",
"Truth matched Reco "+ sParticleType +
" Electron"),
44 m_oKinPromptLHLoosePlots(
this,
"Truth_matched_LHLoose/KinPlots/",
"Truth matched LHLoose "+ sParticleType +
" Electron"),
48 m_oKinPromptLHMediumPlots(
this,
"Truth_matched_LHMedium/KinPlots/",
"Truth matched LHMedium "+ sParticleType +
" Electron"),
52 m_oKinPromptLHTightPlots(
this,
"Truth_matched_LHTight/KinPlots/",
"Truth matched LHTight "+ sParticleType +
" Electron"),
◆ Book1D() [1/2]
TH1D * PlotBase::Book1D |
( |
const std::string & |
name, |
|
|
const std::string & |
labels, |
|
|
int |
nBins, |
|
|
float |
start, |
|
|
float |
end, |
|
|
bool |
prependDir = true |
|
) |
| |
|
inherited |
Book a TH1D histogram.
Definition at line 94 of file PlotBase.cxx.
97 Bool_t oldstat = TH1::AddDirectoryStatus();
98 TH1::AddDirectory(
false);
100 TH1::AddDirectory(oldstat);
◆ Book1D() [2/2]
TH1D * PlotBase::Book1D |
( |
const std::string & |
name, |
|
|
TH1 * |
refHist, |
|
|
const std::string & |
labels, |
|
|
bool |
prependDir = true |
|
) |
| |
|
inherited |
Book a TH1D histogram using refHist as reference for number of bins and axis range.
Definition at line 108 of file PlotBase.cxx.
110 Bool_t oldstat = TH1::AddDirectoryStatus();
111 TH1::AddDirectory(
false);
113 refHist->GetXaxis()->GetXbins()->GetArray());
115 TH1::AddDirectory(oldstat);
◆ Book2D() [1/3]
TH2F * PlotBase::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 |
|
) |
| |
|
inherited |
Book a TH2F histogram with variable x axis binning.
Definition at line 144 of file PlotBase.cxx.
147 Bool_t oldstat = TH2::AddDirectoryStatus();
148 TH2::AddDirectory(
false);
151 TH2::AddDirectory(oldstat);
◆ Book2D() [2/3]
TH2F * PlotBase::Book2D |
( |
const std::string & |
name, |
|
|
const std::string & |
labels, |
|
|
int |
nBinsX, |
|
|
float |
startX, |
|
|
float |
endX, |
|
|
int |
nBinsY, |
|
|
float |
startY, |
|
|
float |
endY, |
|
|
bool |
prependDir = true |
|
) |
| |
|
inherited |
Book a TH2F histogram.
Definition at line 123 of file PlotBase.cxx.
126 Bool_t oldstat = TH2::AddDirectoryStatus();
127 TH2::AddDirectory(
false);
130 TH2::AddDirectory(oldstat);
◆ Book2D() [3/3]
TH2F * PlotBase::Book2D |
( |
const std::string & |
name, |
|
|
TH2 * |
refHist, |
|
|
const std::string & |
labels, |
|
|
bool |
prependDir = true |
|
) |
| |
|
inherited |
Book a TH2D histogram using refHist as reference for number of bins and axis range.
Definition at line 138 of file PlotBase.cxx.
139 return Book2D(
name,
labels, refHist->GetNbinsX(), refHist->GetXaxis()->GetXmin(), refHist->GetXaxis()->GetXmax(),
140 refHist->GetNbinsY(), refHist->GetYaxis()->GetXmin(), refHist->GetYaxis()->GetXmax(), prependDir);
◆ Book3D() [1/2]
TH3F * PlotBase::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 |
|
) |
| |
|
inherited |
Book a TH3F histogram.
Definition at line 157 of file PlotBase.cxx.
160 Bool_t oldstat = TH3::AddDirectoryStatus();
161 TH3::AddDirectory(
false);
163 labels.c_str(), nBinsX, startX, endX, nBinsY, startY, endY, nBinsZ, startZ, endZ);
165 TH3::AddDirectory(oldstat);
◆ Book3D() [2/2]
TH3F * PlotBase::Book3D |
( |
const std::string & |
name, |
|
|
TH3 * |
refHist, |
|
|
const std::string & |
labels, |
|
|
bool |
prependDir = true |
|
) |
| |
|
inherited |
Book a TH3F histogram using refHist as reference for number of bins and axis range.
Definition at line 171 of file PlotBase.cxx.
173 Bool_t oldstat = TH3::AddDirectoryStatus();
174 TH3::AddDirectory(
false);
176 refHist->GetXaxis()->GetXbins()->GetArray(), refHist->GetNbinsY(),
177 refHist->GetYaxis()->GetXbins()->GetArray(), refHist->GetNbinsZ(),
178 refHist->GetZaxis()->GetXbins()->GetArray());
179 TH3::AddDirectory(oldstat);
◆ BookTEfficiency() [1/2]
TEfficiency * PlotBase::BookTEfficiency |
( |
const std::string & |
name, |
|
|
const std::string & |
labels, |
|
|
const int |
nBinsX, |
|
|
const float |
xlo, |
|
|
const float |
xhi, |
|
|
const bool |
prependDir = true |
|
) |
| |
|
inherited |
Book a (1-D) TEfficiency histogram.
Definition at line 257 of file PlotBase.cxx.
263 hist->SetDirectory(
nullptr);
◆ BookTEfficiency() [2/2]
TEfficiency * PlotBase::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 |
|
) |
| |
|
inherited |
Book a (2-D) TEfficiency histogram.
Definition at line 270 of file PlotBase.cxx.
274 hist->SetDirectory(
nullptr);
◆ BookTProfile() [1/2]
TProfile * PlotBase::BookTProfile |
( |
const std::string & |
name, |
|
|
const std::string & |
labels, |
|
|
int |
nBinsX, |
|
|
float * |
binsX, |
|
|
bool |
prependDir = true |
|
) |
| |
|
inherited |
Book a TProfile histogram with variable binning in x-axis.
Definition at line 204 of file PlotBase.cxx.
207 Bool_t oldstat = TProfile::AddDirectoryStatus();
208 TProfile::AddDirectory(
false);
211 TProfile::AddDirectory(oldstat);
◆ BookTProfile() [2/2]
TProfile * PlotBase::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 |
|
) |
| |
|
inherited |
Book a TProfile histogram.
Definition at line 186 of file PlotBase.cxx.
190 Bool_t oldstat = TProfile::AddDirectoryStatus();
191 TProfile::AddDirectory(
false);
192 std::string
opt = useRMS ?
"S" :
"";
193 if ((startY == -1) and (endY == -1)) {
198 TProfile::AddDirectory(oldstat);
◆ BookTProfile2D() [1/2]
TProfile2D * PlotBase::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 |
|
) |
| |
|
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.
235 Bool_t oldstat = TProfile2D::AddDirectoryStatus();
236 TProfile2D::AddDirectory(
false);
237 std::string
opt = useRMS ?
"S" :
"";
239 TProfile2D::AddDirectory(oldstat);
◆ BookTProfile2D() [2/2]
TProfile2D * PlotBase::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 |
|
) |
| |
|
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.
247 Bool_t oldstat = TProfile2D::AddDirectoryStatus();
248 TProfile2D::AddDirectory(
false);
249 std::string
opt = useRMS ?
"S" :
"";
251 TProfile2D::AddDirectory(oldstat);
◆ BookTProfileRangeY()
TProfile * PlotBase::BookTProfileRangeY |
( |
const std::string & |
name, |
|
|
const std::string & |
labels, |
|
|
int |
nBinsX, |
|
|
double * |
binsX, |
|
|
double |
startY, |
|
|
double |
endY, |
|
|
bool |
prependDir = true |
|
) |
| |
|
inherited |
Book a TProfile histogram with variable binning in x-axis and limits in y-values.
Definition at line 217 of file PlotBase.cxx.
221 Bool_t oldstat = TProfile::AddDirectoryStatus();
222 TProfile::AddDirectory(
false);
225 TProfile::AddDirectory(oldstat);
◆ BookTree()
TTree * PlotBase::BookTree |
( |
const std::string & |
name, |
|
|
bool |
prependDir = true |
|
) |
| |
|
inherited |
Book a TTree.
Definition at line 281 of file PlotBase.cxx.
285 tree->SetAutoSave(0);
286 tree->SetAutoFlush(0);
287 tree->SetDirectory(
nullptr);
◆ constructPrefix()
std::string PlotBase::constructPrefix |
( |
std::string |
dir, |
|
|
bool |
prependDir |
|
) |
| |
|
staticprivateinherited |
◆ fill()
Definition at line 67 of file ElectronPlots.cxx.
86 bool val_LHloose=
false;
87 electron.passSelection(val_LHloose,
"LHLoose");
100 bool val_LHmed=
false;
101 electron.passSelection(val_LHmed,
"LHMedium");
114 bool val_LHtight=
false;
115 electron.passSelection(val_LHtight,
"LHTight");
◆ finalize()
void PlotBase::finalize |
( |
| ) |
|
|
inherited |
◆ finalizePlots()
virtual void PlotBase::finalizePlots |
( |
| ) |
|
|
inlineprivatevirtualinherited |
Reimplemented in TCCPlots, JetTagDQA::BTaggingValidationPlots, InDetPerfPlot_VertexTruthMatching, ZeeValidation::ReconElectronsPlots, InDetPerfPlot_Efficiency, InDetPerfPlot_Resolution, InDetPerfPlot_TRTExtension, InDetPerfPlot_TrackParameters, IDTPM::HitsOnTracksPlots, ZeeValidation::TrueElectronsPlots, ZeeValidation::TrueFwdElectronsPlots, IDTPM::OfflineElectronPlots, IDTPM::DuplicateRatePlots, IDTPM::EfficiencyPlots, IDTPM::FakeRatePlots, InDetPerfPlot_FakeRate, IDTPM::NtracksPlots, IDTPM::ResolutionPlots, IDTPM::TrackParametersPlots, InDetPerfPlot_Duplicate, InDetBasicPlot, and Trk::EfficiencyPlots.
Definition at line 92 of file PlotBase.h.
◆ getDirectory()
const std::string& PlotBase::getDirectory |
( |
| ) |
|
|
inlineinherited |
◆ initialize()
void PlotBase::initialize |
( |
| ) |
|
|
inherited |
◆ initializePlots()
void Egamma::ElectronPlots::initializePlots |
( |
| ) |
|
|
privatevirtual |
◆ Match()
◆ RegisterSubPlot()
void PlotBase::RegisterSubPlot |
( |
PlotBase * |
pPlotBase | ) |
|
|
inlineinherited |
◆ retrieveBookedEfficiencies()
std::vector< EfficiencyData > PlotBase::retrieveBookedEfficiencies |
( |
| ) |
|
|
inherited |
Retrieve all booked efficiency objects.
Definition at line 83 of file PlotBase.cxx.
86 std::vector<EfficiencyData> subNodeHists = subNode->retrieveBookedEfficiencies();
87 vBookedEfficiencies.insert(vBookedEfficiencies.end(), subNodeHists.begin(), subNodeHists.end());
89 return vBookedEfficiencies;
◆ retrieveBookedHistograms()
std::vector< HistData > PlotBase::retrieveBookedHistograms |
( |
| ) |
|
|
inherited |
Retrieve all booked histograms.
Definition at line 63 of file PlotBase.cxx.
66 std::vector<HistData> subNodeHists = subNode->retrieveBookedHistograms();
67 vBookedHistograms.insert(vBookedHistograms.end(), subNodeHists.begin(), subNodeHists.end());
69 return vBookedHistograms;
◆ retrieveBookedTrees()
std::vector< TreeData > PlotBase::retrieveBookedTrees |
( |
| ) |
|
|
inherited |
Retrieve all booked trees.
Definition at line 73 of file PlotBase.cxx.
76 std::vector<TreeData> subNodeTrees = subNode->retrieveBookedTrees();
77 vBookedTrees.insert(vBookedTrees.end(), subNodeTrees.begin(), subNodeTrees.end());
◆ Set_d0_Bins()
void Egamma::ElectronPlots::Set_d0_Bins |
( |
const std::vector< double > & |
d0Range | ) |
|
|
inline |
◆ Set_d0_nBins()
void Egamma::ElectronPlots::Set_d0_nBins |
( |
unsigned |
d0_nBins | ) |
|
|
inline |
◆ Set_d0sig_Bins()
void Egamma::ElectronPlots::Set_d0sig_Bins |
( |
const std::vector< double > & |
d0Range | ) |
|
|
inline |
◆ Set_d0sig_nBins()
void Egamma::ElectronPlots::Set_d0sig_nBins |
( |
unsigned |
d0_nBins | ) |
|
|
inline |
◆ Set_z0_Bins()
void Egamma::ElectronPlots::Set_z0_Bins |
( |
const std::vector< double > & |
z0Range | ) |
|
|
inline |
◆ Set_z0_nBins()
void Egamma::ElectronPlots::Set_z0_nBins |
( |
unsigned |
z0_nBins | ) |
|
|
inline |
◆ setDetailLevel()
void PlotBase::setDetailLevel |
( |
int |
iDetailLevel | ) |
|
|
inherited |
Definition at line 55 of file PlotBase.cxx.
57 subNode->setDetailLevel(iDetailLevel);
◆ m_iDetailLevel
int PlotBase::m_iDetailLevel |
|
protectedinherited |
◆ m_oIsolationAllRecoPlots
◆ m_oIsolationIsoLHLoosePlots
◆ m_oIsolationIsoLHMediumPlots
◆ m_oIsolationIsoLHTightPlots
◆ m_oIsolationIsoRecoPlots
◆ m_oIsolationPromptLHLoosePlots
◆ m_oIsolationPromptLHMediumPlots
◆ m_oIsolationPromptLHTightPlots
◆ m_oIsolationPromptRecoPlots
◆ m_oKinAllRecoPlots
◆ m_oKinIsoLHLoosePlots
◆ m_oKinIsoLHMediumPlots
◆ m_oKinIsoLHTightPlots
◆ m_oKinIsoRecoPlots
◆ m_oKinPromptLHLoosePlots
◆ m_oKinPromptLHMediumPlots
◆ m_oKinPromptLHTightPlots
◆ m_oKinPromptRecoPlots
◆ m_oShowerShapesAllRecoPlots
◆ m_oShowerShapesIsoLHLoosePlots
◆ m_oShowerShapesIsoLHMediumPlots
◆ m_oShowerShapesIsoLHTightPlots
◆ m_oShowerShapesIsoRecoPlots
◆ m_oShowerShapesPromptLHLoosePlots
◆ m_oShowerShapesPromptLHMediumPlots
◆ m_oShowerShapesPromptLHTightPlots
◆ m_oShowerShapesPromptRecoPlots
◆ m_oTrackAllRecoPlots
◆ m_oTrackIsoLHLoosePlots
◆ m_oTrackIsoLHMediumPlots
◆ m_oTrackIsoLHTightPlots
◆ m_oTrackIsoRecoPlots
◆ m_oTrackPromptLHLoosePlots
◆ m_oTrackPromptLHMediumPlots
◆ m_oTrackPromptLHTightPlots
◆ m_oTrackPromptRecoPlots
◆ m_sDirectory
std::string PlotBase::m_sDirectory |
|
protectedinherited |
◆ m_sParticleType
std::string Egamma::ElectronPlots::m_sParticleType |
◆ m_vBookedEfficiencies
◆ m_vBookedHistograms
std::vector<HistData> PlotBase::m_vBookedHistograms |
|
protectedinherited |
◆ m_vBookedTrees
std::vector<TreeData> PlotBase::m_vBookedTrees |
|
protectedinherited |
◆ m_vSubNodes
std::vector<PlotBase*> PlotBase::m_vSubNodes |
|
protectedinherited |
◆ nParticles
TH1* Egamma::ElectronPlots::nParticles |
◆ nParticles_weighted
TH1* Egamma::ElectronPlots::nParticles_weighted |
◆ nTypeParticles
TH1* Egamma::ElectronPlots::nTypeParticles |
The documentation for this class was generated from the following files:
static std::string constructPrefix(std::string dir, bool prependDir)
std::string replace(std::string s, const std::string &s2, const std::string &s3)
Egamma::IsolationPlots m_oIsolationPromptLHTightPlots
void Set_d0sig_nBins(unsigned d0sig_nBins)
std::vector< HistData > m_vBookedHistograms
Egamma::ShowerShapesPlots m_oShowerShapesIsoLHMediumPlots
void fill(const xAOD::Egamma &egamma, const xAOD::EventInfo &eventInfo)
Egamma::IsolationPlots m_oIsolationIsoLHTightPlots
Egamma::TrackPlots m_oTrackPromptLHTightPlots
void fill(const xAOD::Electron &electron, const xAOD::EventInfo &eventInfo)
Egamma::TrackPlots m_oTrackPromptRecoPlots
virtual void initializePlots()
std::vector< EfficiencyData > m_vBookedEfficiencies
Egamma::TrackPlots m_oTrackPromptLHMediumPlots
Egamma::KinematicsPlots m_oKinIsoLHTightPlots
TH1 * nParticles_weighted
Egamma::ShowerShapesPlots m_oShowerShapesPromptLHLoosePlots
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.
Egamma::ShowerShapesPlots m_oShowerShapesPromptLHMediumPlots
std::string m_sParticleType
Egamma::KinematicsPlots m_oKinIsoLHMediumPlots
void Set_d0_Bins(const std::vector< double > &d0Range)
def TH2F(name, title, nxbins, bins_par2, bins_par3, bins_par4, bins_par5=None, bins_par6=None, path='', **kwargs)
PlotBase(PlotBase *parent, const std::string &sDir)
void Set_z0_nBins(unsigned z0_nBins)
Egamma::TrackPlots m_oTrackIsoLHMediumPlots
Egamma::KinematicsPlots m_oKinIsoLHLoosePlots
TH1D * Book1D(const std::string &name, const std::string &labels, int nBins, float start, float end, bool prependDir=true)
Book a TH1D histogram.
Egamma::KinematicsPlots m_oKinPromptLHLoosePlots
Egamma::KinematicsPlots m_oKinPromptLHTightPlots
void fill(const xAOD::Egamma &egamma, const xAOD::EventInfo &eventInfo)
std::vector< PlotBase * > m_vSubNodes
Egamma::ShowerShapesPlots m_oShowerShapesAllRecoPlots
Egamma::IsolationPlots m_oIsolationIsoLHLoosePlots
Egamma::ShowerShapesPlots m_oShowerShapesIsoRecoPlots
Egamma::TrackPlots m_oTrackIsoRecoPlots
Egamma::KinematicsPlots m_oKinAllRecoPlots
Egamma::KinematicsPlots m_oKinPromptRecoPlots
def TProfile(*args, **kwargs)
Egamma::TrackPlots m_oTrackIsoLHLoosePlots
void fill(const xAOD::IParticle &part, const xAOD::EventInfo &eventInfo)
void Set_d0sig_Bins(const std::vector< double > &d0sigRange)
Egamma::ShowerShapesPlots m_oShowerShapesPromptLHTightPlots
Egamma::ShowerShapesPlots m_oShowerShapesIsoLHLoosePlots
Egamma::TrackPlots m_oTrackIsoLHTightPlots
Egamma::KinematicsPlots m_oKinPromptLHMediumPlots
Egamma::IsolationPlots m_oIsolationPromptLHLoosePlots
void Set_z0_Bins(const std::vector< double > &z0Range)
Egamma::IsolationPlots m_oIsolationIsoLHMediumPlots
int isPrompt(const unsigned int classify, bool allow_prompt_tau_decays=true)
Egamma::IsolationPlots m_oIsolationPromptLHMediumPlots
Egamma::KinematicsPlots m_oKinIsoRecoPlots
Egamma::IsolationPlots m_oIsolationPromptRecoPlots
Egamma::TrackPlots m_oTrackAllRecoPlots
Egamma::IsolationPlots m_oIsolationIsoRecoPlots
Egamma::ShowerShapesPlots m_oShowerShapesPromptRecoPlots
void Set_d0_nBins(unsigned d0_nBins)
virtual void finalizePlots()
std::vector< TreeData > m_vBookedTrees
Egamma::TrackPlots m_oTrackPromptLHLoosePlots
Egamma::IsolationPlots m_oIsolationAllRecoPlots
Egamma::ShowerShapesPlots m_oShowerShapesIsoLHTightPlots