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
TileCalorimeter
TileConditions
TileConditions
TileCondProxyCool.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TILECONDITIONS_TILECONDPROXYCOOL_H
6
#define TILECONDITIONS_TILECONDPROXYCOOL_H
7
8
// Tile includes
9
#include "
TileConditions/ITileCondProxy.h
"
10
#include "
TileConditions/Exception.h
"
11
12
// Athena includes
13
#include "
AthenaBaseComps/AthAlgTool.h
"
14
#include "
StoreGate/ReadCondHandleKey.h
"
15
#include "
AthenaPoolUtilities/CondAttrListCollection.h
"
16
17
#include <string>
18
24
template
<
typename
T>
25
class
TileCondProxyCool
:
public
AthAlgTool
,
virtual
public
ITileCondProxy
<T> {
26
public
:
27
TileCondProxyCool
(
const
std::string&
type
,
const
std::string&
name
,
const
IInterface*
parent
);
28
virtual
~TileCondProxyCool
() {};
29
30
virtual
StatusCode
initialize
()
override
;
31
virtual
StatusCode
finalize
()
override
;
32
38
virtual
StatusCode
fillCalibData
(
TileCalibData<T>
& calibData, EventIDRange& eventRange)
const override
;
39
40
private
:
41
42
SG::ReadCondHandleKey<CondAttrListCollection>
m_sourceKey
{
this
,
"Source"
,
""
,
"The COOL folder name"
};
43
44
};
45
46
#endif
TileCondProxyCool::finalize
virtual StatusCode finalize() override
CondAttrListCollection.h
This file defines the class for a collection of AttributeLists where each one is associated with a ch...
TileCondProxyCool::~TileCondProxyCool
virtual ~TileCondProxyCool()
Definition:
TileCondProxyCool.h:28
TileCalibData
Templated condition object to keep TileCalibDrawers.
Definition:
TileCalibData.h:26
TileCondProxyCool
The tool to get Tile conditions data from DB.
Definition:
TileCondProxyCool.h:25
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
TileCondProxyCool::TileCondProxyCool
TileCondProxyCool(const std::string &type, const std::string &name, const IInterface *parent)
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.h
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
ITileCondProxy.h
TileCondProxyCool::m_sourceKey
SG::ReadCondHandleKey< CondAttrListCollection > m_sourceKey
Definition:
TileCondProxyCool.h:42
TileCondProxyCool::initialize
virtual StatusCode initialize() override
ReadCondHandleKey.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:228
SG::ReadCondHandleKey< CondAttrListCollection >
ITileCondProxy
An abstract interface to get Tile conditions data from source (file, DB)
Definition:
ITileCondProxy.h:19
Exception.h
AthAlgTool
Definition:
AthAlgTool.h:26
TileCondProxyCool::fillCalibData
virtual StatusCode fillCalibData(TileCalibData< T > &calibData, EventIDRange &eventRange) const override
Fill TileCalibData with Tile conditions data from DB.
Generated on Fri Mar 14 2025 21:20:13 for ATLAS Offline Software by
1.8.18