ATLAS Offline Software
Loading...
Searching...
No Matches
PFOChargedValidationPlots.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
6
8 PlotBase* pParent,
9 const std::string& sDir,
10 const std::string& sFEContainerName)
11 : PlotBase(pParent, sDir)
12 , m_FEPlots(this, "", sFEContainerName)
13 , m_FEPVMatchedPlots(this, "", sFEContainerName)
14 , m_FEAlgPropertyPlots(this, "", sFEContainerName)
15 , m_FELinkerPlots(this, "", sFEContainerName, false)
16{
17}
18
19void PFOChargedValidationPlots::fill(const xAOD::FlowElement& theFE, const xAOD::Vertex* theVertex, const xAOD::EventInfo& eventInfo ){
20 m_FEPlots.fill(theFE,eventInfo);
21 m_FEAlgPropertyPlots.fill(theFE,eventInfo);
22 if (theVertex) m_FEPVMatchedPlots.fill(theFE, *theVertex,eventInfo);
23 m_FELinkerPlots.fill(theFE,eventInfo);
24}
25
26
void fill(const xAOD::FlowElement &theFE, const xAOD::Vertex *theVertex, const xAOD::EventInfo &eventInfo)
fill the histograms up
PFO::PFOPlots m_FEPlots
4-vector and charge histograms
PFOChargedValidationPlots(PlotBase *pParent, const std::string &sDir, const std::string &sFEContainerName)
Standard Constructor.
PFO::PFOPVMatchedPlots m_FEPVMatchedPlots
4-vector and charge histograms with PV match cut applied
PFO::PFOAlgPropertyPlots m_FEAlgPropertyPlots
Algorithm property plots.
PFO::FlowElement_LinkerPlots m_FELinkerPlots
PlotBase(PlotBase *parent, const std::string &sDir)
Definition PlotBase.cxx:29
EventInfo_v1 EventInfo
Definition of the latest event info version.
FlowElement_v1 FlowElement
Definition of the current "pfo version".
Definition FlowElement.h:16
Vertex_v1 Vertex
Define the latest version of the vertex class.