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
Control
AthenaExamples
AthExHive
src
condEx
CondAlgX.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef ATHEXHIVE_CONDEX_CONDALGX_H
6
#define ATHEXHIVE_CONDEX_CONDALGX_H
7
8
#include "
AthenaBaseComps/AthAlgorithm.h
"
9
#include "
StoreGate/ReadHandle.h
"
10
#include "
StoreGate/WriteCondHandleKey.h
"
11
12
#include "
AthExHive/CondDataObj.h
"
13
#include "
AthExHive/IASCIICondDbSvc.h
"
14
15
#include "
xAODEventInfo/EventInfo.h
"
16
#include "GaudiKernel/ICondSvc.h"
17
18
class
CondAlgX
:
public
AthAlgorithm
{
19
20
public
:
21
22
CondAlgX
(
const
std::string&
name
, ISvcLocator* pSvcLocator);
23
virtual
~CondAlgX
() =
default
;
24
25
virtual
StatusCode
initialize
()
override
;
26
virtual
StatusCode
execute
()
override
;
27
28
private
:
29
30
SG::ReadHandleKey<xAOD::EventInfo>
m_evt
{
this
,
"EvtInfo"
,
"EventInfo"
,
"EventInfo name"
};
31
32
SG::WriteCondHandleKey<CondDataObj>
m_wchk
{
this
,
"Key_CH"
,
"X2"
,
"cond handle key"
};
33
34
Gaudi::Property<std::string>
m_dbKey
{
this
,
"Key_DB"
,
"X2"
,
"explicit dbKey for cond handle"
};
35
36
ServiceHandle<IASCIICondDbSvc>
m_cds
{
this
,
"ASCIICondDbSvc"
,
"ASCIICondDbSvc"
,
"Handle to the ASCII CondDb service"
};
37
};
38
39
#endif
CondAlgX::initialize
virtual StatusCode initialize() override
Definition:
CondAlgX.cxx:23
IASCIICondDbSvc.h
WriteCondHandleKey.h
CondDataObj.h
CondAlgX::m_dbKey
Gaudi::Property< std::string > m_dbKey
Definition:
CondAlgX.h:34
SG::ReadHandleKey< xAOD::EventInfo >
CondAlgX::m_cds
ServiceHandle< IASCIICondDbSvc > m_cds
Definition:
CondAlgX.h:36
AthAlgorithm.h
CondAlgX
Definition:
CondAlgX.h:18
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
CondAlgX::~CondAlgX
virtual ~CondAlgX()=default
AthAlgorithm
Definition:
AthAlgorithm.h:47
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
CondAlgX::CondAlgX
CondAlgX(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
CondAlgX.cxx:17
EventInfo.h
CondAlgX::m_evt
SG::ReadHandleKey< xAOD::EventInfo > m_evt
Definition:
CondAlgX.h:30
SG::WriteCondHandleKey< CondDataObj >
CondAlgX::m_wchk
SG::WriteCondHandleKey< CondDataObj > m_wchk
Definition:
CondAlgX.h:32
ReadHandle.h
Handle class for reading from StoreGate.
CondAlgX::execute
virtual StatusCode execute() override
Definition:
CondAlgX.cxx:36
ServiceHandle< IASCIICondDbSvc >
Generated on Wed Apr 2 2025 21:08:44 for ATLAS Offline Software by
1.8.18