Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Trigger
TrigMonitoring
TrigMinBiasMonitoring
src
FwdAFPJetMonitoringAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGMINBIASMONITORING_FWDAFPJETMONITORINGALG_H
6
#define TRIGMINBIASMONITORING_FWDAFPJETMONITORINGALG_H
7
8
// Framework include(s):
9
#include <
AthenaMonitoring/AthMonitorAlgorithm.h
>
10
#include <
AthenaMonitoringKernel/Monitored.h
>
11
12
// xAOD
13
#include <
xAODForward/AFPTrackContainer.h
>
14
#include <
xAODJet/JetContainer.h
>
15
16
class
FwdAFPJetMonitoringAlg
:
public
AthMonitorAlgorithm
{
17
public
:
18
FwdAFPJetMonitoringAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator);
19
20
virtual
StatusCode
initialize
()
override
;
21
virtual
StatusCode
fillHistograms
(
const
EventContext& context)
const override
;
22
23
private
:
24
Gaudi::Property<std::vector<std::string>>
m_chains
{
this
,
"chains"
, {},
"Chains to monitor"
};
25
Gaudi::Property<SG::ReadHandleKey<xAOD::JetContainer>>
m_jetKey
{
this
,
"jetContainer"
,
"AntiKt4EMTopoJets"
,
26
"SG key for the jet container"
};
27
};
28
29
#endif
AFPTrackContainer.h
FwdAFPJetMonitoringAlg::fillHistograms
virtual StatusCode fillHistograms(const EventContext &context) const override
adds event to the monitoring histograms
Definition:
FwdAFPJetMonitoringAlg.cxx:23
FwdAFPJetMonitoringAlg::m_chains
Gaudi::Property< std::vector< std::string > > m_chains
Definition:
FwdAFPJetMonitoringAlg.h:24
AthMonitorAlgorithm
Base class for Athena Monitoring Algorithms.
Definition:
AthMonitorAlgorithm.h:36
FwdAFPJetMonitoringAlg::initialize
virtual StatusCode initialize() override
initialize
Definition:
FwdAFPJetMonitoringAlg.cxx:17
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthMonitorAlgorithm.h
FwdAFPJetMonitoringAlg
Definition:
FwdAFPJetMonitoringAlg.h:16
FwdAFPJetMonitoringAlg::FwdAFPJetMonitoringAlg
FwdAFPJetMonitoringAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
FwdAFPJetMonitoringAlg.cxx:14
Monitored.h
Header file to be included by clients of the Monitored infrastructure.
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:228
FwdAFPJetMonitoringAlg::m_jetKey
Gaudi::Property< SG::ReadHandleKey< xAOD::JetContainer > > m_jetKey
Definition:
FwdAFPJetMonitoringAlg.h:25
JetContainer.h
Generated on Sat Mar 29 2025 21:10:52 for ATLAS Offline Software by
1.8.18