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
Calorimeter
CaloAlignment
CaloAlignmentAlgs
src
CaloAlignCondAlg.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 CALOALIGNMENTALGS_CALOALIGNCONDALG_H
6
#define CALOALIGNMENTALGS_CALOALIGNCONDALG_H
7
8
#include "
AthenaBaseComps/AthAlgorithm.h
"
9
#include "
StoreGate/ReadCondHandleKey.h
"
10
#include "
StoreGate/WriteCondHandleKey.h
"
11
12
#include "
GeoModelUtilities/GeoAlignmentStore.h
"
13
#include "
CaloConditions/CaloCellPositionShift.h
"
14
#include "
CaloDetDescr/CaloDetDescrManager.h
"
15
23
class
CaloAlignCondAlg
final
:
public
AthAlgorithm
24
{
25
public
:
26
using
AthAlgorithm::AthAlgorithm
;
27
virtual
~CaloAlignCondAlg
() =
default
;
28
29
virtual
StatusCode
initialize
()
override
;
30
virtual
StatusCode
execute
()
override
;
31
32
private
:
33
SG::ReadCondHandleKey<GeoAlignmentStore>
m_readKeyGeoAlign
{this
34
,
"LArAlignmentStore"
35
,
"LArAlignmentStore"
36
,
"SG key of the GeoAlignmentStore for LAr"
};
37
38
SG::ReadCondHandleKey<CaloRec::CaloCellPositionShift>
m_readKeyCellPosShift
{this
39
,
"CaloCellPositionShiftFolder"
40
,
"LArCellPositionShift"
41
,
"SG key of the CaloCellPositionShift"
};
42
43
SG::WriteCondHandleKey<CaloDetDescrManager>
m_writeCaloMgrKey
{this
44
,
"CaloDetDescrManager"
45
,
"CaloDetDescrManager"
46
,
"SG key of the resulting CaloDetDescrManager"
};
47
};
48
49
#endif
columnar::final
CM final
Definition:
ColumnAccessor.h:106
WriteCondHandleKey.h
CaloAlignCondAlg::~CaloAlignCondAlg
virtual ~CaloAlignCondAlg()=default
CaloDetDescrManager.h
Definition of CaloDetDescrManager.
CaloAlignCondAlg::m_readKeyCellPosShift
SG::ReadCondHandleKey< CaloRec::CaloCellPositionShift > m_readKeyCellPosShift
Definition:
CaloAlignCondAlg.h:38
AthAlgorithm.h
CaloAlignCondAlg::m_writeCaloMgrKey
SG::WriteCondHandleKey< CaloDetDescrManager > m_writeCaloMgrKey
Definition:
CaloAlignCondAlg.h:43
CaloAlignCondAlg
Condition Algorithm for making CaloDetDescrManager condition object.
Definition:
CaloAlignCondAlg.h:24
CaloAlignCondAlg::m_readKeyGeoAlign
SG::ReadCondHandleKey< GeoAlignmentStore > m_readKeyGeoAlign
Definition:
CaloAlignCondAlg.h:33
CaloAlignCondAlg::execute
virtual StatusCode execute() override
Definition:
CaloAlignCondAlg.cxx:24
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgorithm
Definition:
AthAlgorithm.h:47
ReadCondHandleKey.h
GeoAlignmentStore.h
SG::ReadCondHandleKey< GeoAlignmentStore >
SG::WriteCondHandleKey< CaloDetDescrManager >
AthAlgorithm::AthAlgorithm
AthAlgorithm()
Default constructor:
CaloAlignCondAlg::initialize
virtual StatusCode initialize() override
Definition:
CaloAlignCondAlg.cxx:13
CaloCellPositionShift.h
Container for a cell-level position corrections to account for distorsion of calo shape in reconstruc...
Generated on Sat Mar 15 2025 21:07:53 for ATLAS Offline Software by
1.8.18