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
AlgC.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_ALGC_H
6
#define ATHEXHIVE_CONDEX_ALGC_H
7
8
#include "
AthenaBaseComps/AthAlgorithm.h
"
9
#include "
StoreGate/ReadHandleKey.h
"
10
#include "
StoreGate/ReadCondHandleKey.h
"
11
12
#include "
AthExHive/HiveDataObj.h
"
13
#include "
AthExHive/CondDataObj.h
"
14
15
class
AlgC
:
public
AthAlgorithm
{
16
17
public
:
18
19
AlgC
(
const
std::string&
name
, ISvcLocator* pSvcLocator);
20
virtual
~AlgC
() =
default
;
21
22
virtual
bool
isClonable
()
const override
{
return
true
; }
23
24
virtual
StatusCode
initialize
()
override
;
25
virtual
StatusCode
execute
()
override
;
26
27
private
:
28
29
SG::ReadHandleKey<HiveDataObj>
m_rdh1
{
this
,
"Key_R1"
,
"a2"
,
"read key 1"
};
30
31
SG::ReadCondHandleKey<CondDataObj>
m_rch
{
this
,
"Key_CH"
,
"X1"
,
"cond read key"
};
32
33
};
34
#endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
AlgC
Definition:
AlgC.h:15
AlgC::AlgC
AlgC(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
AlgC.cxx:9
HiveDataObj.h
AlgC::m_rdh1
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition:
AlgC.h:29
CondDataObj.h
SG::ReadHandleKey< HiveDataObj >
AthAlgorithm.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AlgC::m_rch
SG::ReadCondHandleKey< CondDataObj > m_rch
Definition:
AlgC.h:31
AthAlgorithm
Definition:
AthAlgorithm.h:47
ReadCondHandleKey.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
AlgC::~AlgC
virtual ~AlgC()=default
AlgC::initialize
virtual StatusCode initialize() override
Definition:
AlgC.cxx:16
SG::ReadCondHandleKey< CondDataObj >
AlgC::isClonable
virtual bool isClonable() const override
Definition:
AlgC.h:22
AlgC::execute
virtual StatusCode execute() override
Definition:
AlgC.cxx:31
Generated on Wed Apr 2 2025 21:07:05 for ATLAS Offline Software by
1.8.18