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
Tracking
TrkAlignment
TrkAlignGenTools
src
TrkAlignDBTool.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// TrkAlignDBTool.cxx
6
7
#include "GaudiKernel/StatusCode.h"
8
#include "GaudiKernel/MsgStream.h"
9
#include "GaudiKernel/AlgTool.h"
10
11
#include "
TrkAlignGenTools/TrkAlignDBTool.h
"
12
13
namespace
Trk
{
14
15
//_______________________________________________________________________
16
TrkAlignDBTool::TrkAlignDBTool
(
const
std::string&
type
,
const
std::string&
name
,
17
const
IInterface*
parent
)
18
:
AthAlgTool
(
type
,
name
,
parent
)
19
{
20
declareInterface<ITrkAlignDBTool>(
this
);
21
22
m_logStream
=
nullptr
;
23
}
24
25
//_______________________________________________________________________
26
TrkAlignDBTool::~TrkAlignDBTool
()
27
=
default
;
28
//_______________________________________________________________________
29
StatusCode
TrkAlignDBTool::initialize
()
30
{
31
msg
(
MSG::DEBUG
) <<
"initialize() of TrkAlignDBTool"
<<
endmsg
;
32
33
return
StatusCode::SUCCESS;
34
}
35
36
//_______________________________________________________________________
37
StatusCode
TrkAlignDBTool::finalize
()
38
{
39
msg
(
MSG::DEBUG
) <<
"finalize() of TrkAlignDBTool"
<<
endmsg
;
40
41
return
StatusCode::SUCCESS;
42
}
43
44
45
}
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
Trk::TrkAlignDBTool::~TrkAlignDBTool
virtual ~TrkAlignDBTool()
Virtual destructor.
TrkAlignDBTool.h
endmsg
#define endmsg
Definition:
AnalysisConfig_Ntuple.cxx:63
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
Trk::TrkAlignDBTool::finalize
StatusCode finalize()
initialize
Definition:
TrkAlignDBTool.cxx:37
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
Trk::TrkAlignDBTool::TrkAlignDBTool
TrkAlignDBTool(const std::string &type, const std::string &name, const IInterface *parent)
Constructor.
Definition:
TrkAlignDBTool.cxx:16
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
Trk::ITrkAlignDBTool::m_logStream
std::ostream * m_logStream
logfile output stream
Definition:
ITrkAlignDBTool.h:55
DEBUG
#define DEBUG
Definition:
page_access.h:11
AthCommonMsg< AlgTool >::msg
MsgStream & msg() const
Definition:
AthCommonMsg.h:24
AthAlgTool
Definition:
AthAlgTool.h:26
Trk::TrkAlignDBTool::initialize
StatusCode initialize()
initialize
Definition:
TrkAlignDBTool.cxx:29
Generated on Sat Apr 5 2025 21:21:24 for ATLAS Offline Software by
1.8.18