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
loopTest
HiveAlgL1.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef ATHEXHIVE_ALGL1_H
6
#define ATHEXHIVE_ALGL1_H 1
7
8
#include "
StoreGate/WriteHandleKey.h
"
9
#include "
StoreGate/ReadHandleKey.h
"
10
#include "
AthExHive/HiveDataObj.h
"
11
#include "../HiveAlgBase.h"
12
13
#include <string>
14
15
class
HiveAlgL1
:
public
HiveAlgBase
{
16
17
public
:
18
19
// Standard Algorithm Constructor:
20
21
HiveAlgL1
(
const
std::string&
name
, ISvcLocator* pSvcLocator);
22
~HiveAlgL1
();
23
24
// Define the initialize, execute and finalize methods:
25
26
StatusCode
initialize
();
27
StatusCode
execute
();
28
StatusCode
finalize
();
29
30
private
:
31
32
SG::ReadHandleKey<HiveDataObj>
m_rdh1
{
this
,
"Key_R1"
,
"a2"
,
"read key"
};
33
SG::WriteHandleKey<HiveDataObj>
m_wrh1
{
this
,
"Key_W1"
,
"l1"
,
"write key"
};
34
35
};
36
#endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
HiveDataObj.h
SG::ReadHandleKey< HiveDataObj >
HiveAlgL1::initialize
StatusCode initialize()
Definition:
HiveAlgL1.cxx:18
HiveAlgL1::HiveAlgL1
HiveAlgL1(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
HiveAlgL1.cxx:11
SG::WriteHandleKey< HiveDataObj >
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
HiveAlgBase
Definition:
HiveAlgBase.h:26
WriteHandleKey.h
Property holding a SG store/key/clid from which a WriteHandle is made.
HiveAlgL1::finalize
StatusCode finalize()
Definition:
HiveAlgL1.cxx:27
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
HiveAlgL1
Definition:
HiveAlgL1.h:15
HiveAlgL1::execute
StatusCode execute()
Definition:
HiveAlgL1.cxx:32
HiveAlgL1::m_rdh1
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition:
HiveAlgL1.h:32
HiveAlgL1::~HiveAlgL1
~HiveAlgL1()
Definition:
HiveAlgL1.cxx:16
HiveAlgL1::m_wrh1
SG::WriteHandleKey< HiveDataObj > m_wrh1
Definition:
HiveAlgL1.h:33
Generated on Sun May 4 2025 21:10:28 for ATLAS Offline Software by
1.8.18