ATLAS Offline Software
LeptonNFEValidationPlots.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
7 LeptonNFEValidationPlots::LeptonNFEValidationPlots(PlotBase* pParent, const std::string& sDir, const std::string& LeptonContainerName) : PlotBase(pParent, sDir),
8  m_PhotonMatchedNFEPlots(this,"/Leptonlinks/",LeptonContainerName,true,22),
9  m_ElectronMatchedNFEPlots(this,"/Leptonlinks/",LeptonContainerName,true,11),
10  m_MuonMatchedNFEPlots(this,"/Leptonlinks/",LeptonContainerName,true,13),
11  m_TauJetMatchedNFEPlots(this,"/Leptonlinks/",LeptonContainerName,true,17)
12 {}
13 
14 void LeptonNFEValidationPlots::fill(const xAOD::Photon& phot, const xAOD::EventInfo& eventInfo){
15  // photon plots
16  m_PhotonMatchedNFEPlots.fill(phot,eventInfo);
17 }
19  //electron plots
21 }
23  //muon plots
24  m_MuonMatchedNFEPlots.fill(muon,eventInfo);
25 }
26 
27 void LeptonNFEValidationPlots::fill(const xAOD::TauJet& tau, const xAOD::EventInfo& eventInfo){
28  // taujet plots
29  m_TauJetMatchedNFEPlots.fill(tau,eventInfo);
30 }
31 
32 
xAOD::muon
@ muon
Definition: TrackingPrimitives.h:195
LeptonNFEValidationPlots::fill
void fill(const xAOD::Electron &el, const xAOD::EventInfo &eventInfo)
fill the histograms up
Definition: LeptonNFEValidationPlots.cxx:18
PlotBase
Definition: PlotBase.h:33
python.copyTCTOutput.sDir
sDir
Definition: copyTCTOutput.py:60
xAOD::Muon_v1
Class describing a Muon.
Definition: Muon_v1.h:38
xAOD::TauJet_v3
Class describing a tau jet.
Definition: TauJet_v3.h:41
plotIsoValidation.el
el
Definition: plotIsoValidation.py:197
LeptonNFEValidationPlots.h
LeptonNFEValidationPlots::LeptonNFEValidationPlots
LeptonNFEValidationPlots(PlotBase *pParent, const std::string &sDir, const std::string &LeptonContainerName)
Standard Constructor.
Definition: LeptonNFEValidationPlots.cxx:7
xAOD::Electron_v1
Definition: Electron_v1.h:34
PFO::LeptonFELinkerPlots::fill
void fill(const xAOD::Electron &el, const xAOD::EventInfo &eventInfo)
Definition: LeptonFELinkerPlots.cxx:71
xAOD::EventInfo_v1
Class describing the basic event information.
Definition: EventInfo_v1.h:43
xAOD::Photon_v1
Definition: Photon_v1.h:37
LeptonNFEValidationPlots::m_TauJetMatchedNFEPlots
PFO::LeptonFELinkerPlots m_TauJetMatchedNFEPlots
Definition: LeptonNFEValidationPlots.h:35
LeptonNFEValidationPlots::m_ElectronMatchedNFEPlots
PFO::LeptonFELinkerPlots m_ElectronMatchedNFEPlots
Definition: LeptonNFEValidationPlots.h:33
LeptonNFEValidationPlots::m_MuonMatchedNFEPlots
PFO::LeptonFELinkerPlots m_MuonMatchedNFEPlots
Definition: LeptonNFEValidationPlots.h:34
LeptonNFEValidationPlots::m_PhotonMatchedNFEPlots
PFO::LeptonFELinkerPlots m_PhotonMatchedNFEPlots
Definition: LeptonNFEValidationPlots.h:32