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
InnerDetector
InDetConditions
TRT_ConditionsNN
src
TRTPIDNNCondAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRTPIDNNCONDALG_H
6
#define TRTPIDNNCONDALG_H
7
8
#include "
AthenaBaseComps/AthAlgorithm.h
"
9
#include "
StoreGate/WriteCondHandleKey.h
"
10
#include "
TRT_ConditionsNN/TRTPIDNN.h
"
11
#include "
AthenaPoolUtilities/CondAttrListCollection.h
"
12
#include "Gaudi/Property.h"
13
14
/****************************************************************************************\
15
16
Conditions algorithm to handle TRT PID NN.
17
18
Author: Christian Grefe (christian.grefe@cern.ch)
19
20
\****************************************************************************************/
21
22
class
TRTPIDNNCondAlg
:
public
AthAlgorithm
23
{
24
public
:
25
TRTPIDNNCondAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator);
26
virtual
~TRTPIDNNCondAlg
()
override
;
27
28
virtual
StatusCode
initialize
()
override
;
29
virtual
StatusCode
execute
()
override
;
30
31
private
:
32
SG::ReadCondHandleKey<CondAttrListCollection>
m_readKey
{
this
,
"TRTPIDNNReadKey"
,
"/TRT/Calib/PID_NN"
,
"TRTPIDNN in-key"
};
33
SG::WriteCondHandleKey<InDet::TRTPIDNN>
m_writeKey
{
this
,
"TRTPIDNNWriteKey"
,
"TRTPIDNN"
,
"TRTPIDNN out-key"
};
34
35
};
36
#endif
TRTPIDNNCondAlg::~TRTPIDNNCondAlg
virtual ~TRTPIDNNCondAlg() override
CondAttrListCollection.h
This file defines the class for a collection of AttributeLists where each one is associated with a ch...
TRTPIDNN.h
WriteCondHandleKey.h
AthAlgorithm.h
TRTPIDNNCondAlg::execute
virtual StatusCode execute() override
Definition:
TRTPIDNNCondAlg.cxx:25
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TRTPIDNNCondAlg::TRTPIDNNCondAlg
TRTPIDNNCondAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
TRTPIDNNCondAlg.cxx:8
AthAlgorithm
Definition:
AthAlgorithm.h:47
TRTPIDNNCondAlg::initialize
virtual StatusCode initialize() override
Definition:
TRTPIDNNCondAlg.cxx:14
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
TRTPIDNNCondAlg::m_writeKey
SG::WriteCondHandleKey< InDet::TRTPIDNN > m_writeKey
Definition:
TRTPIDNNCondAlg.h:33
SG::ReadCondHandleKey< CondAttrListCollection >
SG::WriteCondHandleKey< InDet::TRTPIDNN >
TRTPIDNNCondAlg::m_readKey
SG::ReadCondHandleKey< CondAttrListCollection > m_readKey
Definition:
TRTPIDNNCondAlg.h:32
TRTPIDNNCondAlg
Definition:
TRTPIDNNCondAlg.h:23
Generated on Sat May 31 2025 21:21:56 for ATLAS Offline Software by
1.8.18