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
w
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
PhysicsAnalysis
JetTagging
FlavorTagDiscriminants
src
LinkCounterAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef LINK_COUNTER_ALG_H
6
#define LINK_COUNTER_ALG_H
7
8
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
9
10
#include "
StoreGate/WriteDecorHandleKey.h
"
11
#include "
StoreGate/ReadDecorHandleKey.h
"
12
13
14
namespace
FlavorTagDiscriminants
{
15
16
template
<
typename
T,
typename
C>
17
class
LinkCounterAlg
:
public
AthReentrantAlgorithm
18
{
19
public
:
20
using
AthReentrantAlgorithm::AthReentrantAlgorithm;
21
virtual
StatusCode
initialize
()
override
;
22
virtual
StatusCode
execute
(
const
EventContext& cxt)
const override
;
23
protected
:
24
SG::ReadDecorHandleKey<C>
m_links
{
25
this
,
"links"
,
""
,
"name of linked container"
26
};
27
SG::WriteDecorHandleKey<C>
m_flag
{
28
this
,
"flag"
,
"applyGNN"
,
"flag to confirm GNN application"
29
};
30
Gaudi::Property<size_t>
m_minimumLinks
{
31
this
,
"minimumLinks"
, 0,
"minimum number of links required to tag a jet"
32
};
33
};
34
35
}
36
37
#include "
LinkCounterAlg.icc
"
38
39
#endif
SG::WriteDecorHandleKey< C >
FlavorTagDiscriminants::LinkCounterAlg::m_links
SG::ReadDecorHandleKey< C > m_links
Definition:
LinkCounterAlg.h:24
ReadDecorHandleKey.h
Property holding a SG store/key/clid/attr name from which a ReadDecorHandle is made.
FlavorTagDiscriminants
Definition:
BacklinkAlg.h:15
FlavorTagDiscriminants::LinkCounterAlg::m_flag
SG::WriteDecorHandleKey< C > m_flag
Definition:
LinkCounterAlg.h:27
FlavorTagDiscriminants::LinkCounterAlg
Definition:
LinkCounterAlg.h:18
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition:
AthReentrantAlgorithm.h:74
FlavorTagDiscriminants::LinkCounterAlg::initialize
virtual StatusCode initialize() override
WriteDecorHandleKey.h
Property holding a SG store/key/clid/attr name from which a WriteDecorHandle is made.
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
FlavorTagDiscriminants::LinkCounterAlg::m_minimumLinks
Gaudi::Property< size_t > m_minimumLinks
Definition:
LinkCounterAlg.h:30
AthReentrantAlgorithm.h
FlavorTagDiscriminants::LinkCounterAlg::execute
virtual StatusCode execute(const EventContext &cxt) const override
SG::ReadDecorHandleKey< C >
LinkCounterAlg.icc
Generated on Thu May 29 2025 21:13:50 for ATLAS Offline Software by
1.8.18