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
AthViews
src
ViewTestAlg.h
Go to the documentation of this file.
1
/*
3
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
4
*/
5
6
// ViewTestAlg.h
7
// Header file for class ViewTestAlg
8
// Author: B. Wynne <bwynne@cern.ch>
10
11
#ifndef ATHVIEWS_VIEWTESTALG_H
12
#define ATHVIEWS_VIEWTESTALG_H 1
13
14
#include <string>
15
#include "
AthenaBaseComps/AthAlgorithm.h
"
16
#include "
StoreGate/WriteHandleKey.h
"
17
18
namespace
AthViews
{
19
20
class
ViewTestAlg
:
public
AthAlgorithm
21
{
22
public
:
23
24
// Constructor with parameters
25
ViewTestAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator );
26
27
// Destructor
28
virtual
~ViewTestAlg
();
29
30
// Athena algorithm hooks
31
virtual
StatusCode
initialize
();
32
virtual
StatusCode
execute
();
33
virtual
StatusCode
finalize
();
34
35
private
:
36
37
// Default constructor
38
ViewTestAlg
();
39
40
SG::WriteHandleKey< int >
m_output
{
this
,
"Output"
,
""
,
"Optional output object"
};
41
};
42
43
}
//> end namespace AthViews
44
45
#endif //> !ATHVIEWS_VIEWTESTALG_H
AthViews::ViewTestAlg::initialize
virtual StatusCode initialize()
Definition:
ViewTestAlg.cxx:26
AthViews::ViewTestAlg
Definition:
ViewTestAlg.h:21
AthAlgorithm.h
AthViews::ViewTestAlg::m_output
SG::WriteHandleKey< int > m_output
Definition:
ViewTestAlg.h:40
AthViews::ViewTestAlg::~ViewTestAlg
virtual ~ViewTestAlg()
Definition:
ViewTestAlg.cxx:22
SG::WriteHandleKey< int >
AthViews::ViewTestAlg::execute
virtual StatusCode execute()
Definition:
ViewTestAlg.cxx:49
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgorithm
Definition:
AthAlgorithm.h:47
WriteHandleKey.h
Property holding a SG store/key/clid from which a WriteHandle is made.
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
AthViews
Definition:
ViewDataVerifier.cxx:18
AthViews::ViewTestAlg::finalize
virtual StatusCode finalize()
Definition:
ViewTestAlg.cxx:42
AthViews::ViewTestAlg::ViewTestAlg
ViewTestAlg()
Generated on Tue May 6 2025 21:22:06 for ATLAS Offline Software by
1.8.18