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
LArCalorimeter
LArCondTools
src
LArOFCtoOFC.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef LARCONDITIONSTEST_LAROFCTOOFC_H
6
#define LARCONDITIONSTEST_LAROFCTOOFC_H 1
7
8
// STL includes
9
#include <string>
10
11
#include "
AthenaBaseComps/AthAlgorithm.h
"
12
13
14
class
LArOFCtoOFC
15
:
public
::AthAlgorithm
16
{
17
19
// Public methods:
21
public
:
22
24
LArOFCtoOFC
(
const
std::string&
name
, ISvcLocator* pSvcLocator );
25
27
virtual
~LArOFCtoOFC
(){};
28
29
virtual
StatusCode
initialize
()
override
{
return
StatusCode::SUCCESS;};
30
virtual
StatusCode
execute
()
override
{
return
StatusCode::SUCCESS;};
31
virtual
StatusCode
stop
()
override
;
32
33
private
:
34
36
LArOFCtoOFC
();
37
38
std::string
m_inKey
;
39
std::string
m_inShapeKey
;
40
std::string
m_outKey
;
41
std::string
m_outShapeKey
;
42
bool
m_HECshift
;
// add 0 in front for HEC ?
43
bool
m_doShape
;
// fill also the shape ?
44
unsigned
m_numAdd
;
// How many 0 to add
45
46
};
47
48
#endif //> !LARCONDITIONSTEST_LArOFCtoOFC_H
LArOFCtoOFC::execute
virtual StatusCode execute() override
Definition:
LArOFCtoOFC.h:30
LArOFCtoOFC::m_HECshift
bool m_HECshift
Definition:
LArOFCtoOFC.h:42
LArOFCtoOFC::stop
virtual StatusCode stop() override
Definition:
LArOFCtoOFC.cxx:38
LArOFCtoOFC::m_doShape
bool m_doShape
Definition:
LArOFCtoOFC.h:43
LArOFCtoOFC::m_numAdd
unsigned m_numAdd
Definition:
LArOFCtoOFC.h:44
LArOFCtoOFC::~LArOFCtoOFC
virtual ~LArOFCtoOFC()
Destructor:
Definition:
LArOFCtoOFC.h:27
AthAlgorithm.h
LArOFCtoOFC
Definition:
LArOFCtoOFC.h:16
LArOFCtoOFC::m_inShapeKey
std::string m_inShapeKey
Definition:
LArOFCtoOFC.h:39
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
LArOFCtoOFC::m_outKey
std::string m_outKey
Definition:
LArOFCtoOFC.h:40
LArOFCtoOFC::initialize
virtual StatusCode initialize() override
Definition:
LArOFCtoOFC.h:29
AthAlgorithm
Definition:
AthAlgorithm.h:47
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
LArOFCtoOFC::m_inKey
std::string m_inKey
Definition:
LArOFCtoOFC.h:38
LArOFCtoOFC::m_outShapeKey
std::string m_outShapeKey
Definition:
LArOFCtoOFC.h:41
LArOFCtoOFC::LArOFCtoOFC
LArOFCtoOFC()
Default constructor:
Generated on Mon May 5 2025 21:13:24 for ATLAS Offline Software by
1.8.18