ATLAS Offline Software
Toggle main menu visibility
Loading...
Searching...
No Matches
InnerDetector
InDetMonitoring
InDetGlobalMonitoringRun3Test
src
InDetGlobalTrackMonAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
15
16
#ifndef InDetGlobalTrackMonAlg_H
17
#define InDetGlobalTrackMonAlg_H
18
19
#include "
AthenaMonitoring/AthMonitorAlgorithm.h
"
20
#include "
AthenaMonitoringKernel/Monitored.h
"
21
22
#include "GaudiKernel/EventContext.h"
23
24
#include "
PixelGeoModel/IIBLParameterSvc.h
"
25
#include "
xAODTracking/VertexContainer.h
"
26
#include "
xAODJet/JetContainer.h
"
27
28
29
//Detector Managers
30
#include "
StoreGate/ReadHandleKey.h
"
31
32
33
//------------TrackMon------------
34
#include "
TrkToolInterfaces/ITrackHoleSearchTool.h
"
35
#include "
InDetTrackSelectionTool/IInDetTrackSelectionTool.h
"
36
37
#include "
xAODTracking/TrackParticleContainer.h
"
38
39
#include "
TrkVertexFitterInterfaces/ITrackToVertexIPEstimator.h
"
40
//Standard c++
41
#include <string>
42
#include <memory>
43
44
//------------------------------
45
46
namespace
InDet
{
47
class
IInDetTrackSelectionTool
;
48
class
ITrackToVertexIPEstimator;
49
}
50
51
class
InDetGlobalTrackMonAlg
:
public
AthMonitorAlgorithm
{
52
53
public
:
54
55
InDetGlobalTrackMonAlg
(
const
std::string& name, ISvcLocator* pSvcLocator );
56
virtual
~InDetGlobalTrackMonAlg
();
57
virtual
StatusCode
initialize
()
override
;
58
virtual
StatusCode
fillHistograms
(
const
EventContext& ctx )
const override
;
59
std::string
findComponentString
(
int
bec,
int
ld)
const
;
60
61
private
:
62
63
ToolHandle <InDet::IInDetTrackSelectionTool>
m_trackSelTool
{
this
,
"TrackSelectionTool"
,
"InDet::InDetTrackSelectionTool/TrackSelectionTool"
,
""
};
64
ToolHandle <InDet::IInDetTrackSelectionTool>
m_tight_trackSelTool
{
this
,
"Tight_TrackSelectionTool"
,
"InDet::InDetTrackSelectionTool/TrackSelectionTool"
,
""
};
65
ToolHandle <InDet::IInDetTrackSelectionTool>
m_loose_trackSelTool
{
this
,
"Loose_TrackSelectionTool"
,
"InDet::InDetTrackSelectionTool/TrackSelectionTool"
,
""
};
66
ToolHandle <Trk::ITrackToVertexIPEstimator>
m_trackToVertexIPEstimator
{
this
,
"TrackToVertexIPEstimator"
,
"Trk::TrackToVertexIPEstimator"
,
""
};
67
68
SG::ReadHandleKey<xAOD::TrackParticleContainer>
m_trackParticleName
{
this
,
"TrackParticleContainerName"
,
"InDetTrackParticles"
,
"TrackParticle Collection for Global Monitoring"
};
69
SG::ReadHandleKey<xAOD::VertexContainer>
m_vxContainerName
{
this
,
"vxContainerName"
,
"PrimaryVertices"
,
"Primary Vertices for Global Monitoring"
};
70
SG::ReadHandleKey<xAOD::JetContainer>
m_jetContainerName
{
this
,
"jetCollection"
,
"AntiKt4EMTopoJets"
,
"Jet Collection for Global Track Monitoring"
};
71
72
ServiceHandle<IIBLParameterSvc>
m_IBLParameterSvc
{
this
,
"IBLParameterSvc"
,
"IBLParameterSvc"
};
73
74
BooleanProperty
m_doIBL
{
this
,
"DoIBL"
,
true
,
"IBL present?"
};
75
BooleanProperty
m_doTide
{
this
,
"DoTide"
,
true
,
"Make TIDE plots?"
};
76
77
};
78
#endif
AthMonitorAlgorithm.h
TrackParticleContainer.h
IIBLParameterSvc.h
IInDetTrackSelectionTool.h
ITrackHoleSearchTool.h
ITrackToVertexIPEstimator.h
JetContainer.h
Monitored.h
Header file to be included by clients of the Monitored infrastructure.
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
VertexContainer.h
AthMonitorAlgorithm::AthMonitorAlgorithm
AthMonitorAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor.
Definition
AthMonitorAlgorithm.cxx:8
InDetGlobalTrackMonAlg::m_trackToVertexIPEstimator
ToolHandle< Trk::ITrackToVertexIPEstimator > m_trackToVertexIPEstimator
Definition
InDetGlobalTrackMonAlg.h:66
InDetGlobalTrackMonAlg::InDetGlobalTrackMonAlg
InDetGlobalTrackMonAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition
InDetGlobalTrackMonAlg.cxx:25
InDetGlobalTrackMonAlg::m_trackParticleName
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_trackParticleName
Definition
InDetGlobalTrackMonAlg.h:68
InDetGlobalTrackMonAlg::m_loose_trackSelTool
ToolHandle< InDet::IInDetTrackSelectionTool > m_loose_trackSelTool
Definition
InDetGlobalTrackMonAlg.h:65
InDetGlobalTrackMonAlg::m_trackSelTool
ToolHandle< InDet::IInDetTrackSelectionTool > m_trackSelTool
Definition
InDetGlobalTrackMonAlg.h:63
InDetGlobalTrackMonAlg::~InDetGlobalTrackMonAlg
virtual ~InDetGlobalTrackMonAlg()
Definition
InDetGlobalTrackMonAlg.cxx:29
InDetGlobalTrackMonAlg::initialize
virtual StatusCode initialize() override
initialize
Definition
InDetGlobalTrackMonAlg.cxx:32
InDetGlobalTrackMonAlg::m_jetContainerName
SG::ReadHandleKey< xAOD::JetContainer > m_jetContainerName
Definition
InDetGlobalTrackMonAlg.h:70
InDetGlobalTrackMonAlg::findComponentString
std::string findComponentString(int bec, int ld) const
InDetGlobalTrackMonAlg::m_vxContainerName
SG::ReadHandleKey< xAOD::VertexContainer > m_vxContainerName
Definition
InDetGlobalTrackMonAlg.h:69
InDetGlobalTrackMonAlg::m_doIBL
BooleanProperty m_doIBL
Definition
InDetGlobalTrackMonAlg.h:74
InDetGlobalTrackMonAlg::fillHistograms
virtual StatusCode fillHistograms(const EventContext &ctx) const override
adds event to the monitoring histograms
Definition
InDetGlobalTrackMonAlg.cxx:50
InDetGlobalTrackMonAlg::m_doTide
BooleanProperty m_doTide
Definition
InDetGlobalTrackMonAlg.h:75
InDetGlobalTrackMonAlg::m_tight_trackSelTool
ToolHandle< InDet::IInDetTrackSelectionTool > m_tight_trackSelTool
Definition
InDetGlobalTrackMonAlg.h:64
InDetGlobalTrackMonAlg::m_IBLParameterSvc
ServiceHandle< IIBLParameterSvc > m_IBLParameterSvc
Definition
InDetGlobalTrackMonAlg.h:72
InDet::IInDetTrackSelectionTool
Interface for track selection tool.
Definition
IInDetTrackSelectionTool.h:52
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition
StoreGate/StoreGate/ReadHandleKey.h:40
ServiceHandle
Definition
ClusterMakerTool.h:36
InDet
Primary Vertex Finder.
Definition
VP1ErrorUtils.h:36
Generated on
for ATLAS Offline Software by
1.17.0