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
LArRecUtils
src
LArOnOffMappingAlg.h
Go to the documentation of this file.
1
//Dear emacs, this is -*- C++ -*-
2
3
/*
4
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
#ifndef LARRECCONDITIONS_LARONOFFMAPPINGALG_H
8
#define LARRECCONDITIONS_LARONOFFMAPPINGALG_H
9
10
#include "
AthenaBaseComps/AthAlgorithm.h
"
11
#include "
StoreGate/ReadCondHandleKey.h
"
12
#include "
StoreGate/WriteCondHandleKey.h
"
13
14
#include "
AthenaPoolUtilities/CondAttrListCollection.h
"
15
#include "
LArCabling/LArOnOffIdMapping.h
"
16
17
class
LArOnOffMappingAlg
:
public
AthAlgorithm
{
18
19
public
:
20
//Delegate constructor:
21
using
AthAlgorithm::AthAlgorithm
;
22
23
virtual
~LArOnOffMappingAlg
() =
default
;
24
25
virtual
StatusCode
initialize
()
override
;
26
virtual
StatusCode
execute
()
override
;
27
28
29
private
:
30
SG::ReadCondHandleKey<AthenaAttributeList>
m_readKey
{
this
,
"ReadKey"
,
"/LAr/Identifier/OnOnffMap"
};
31
SG::WriteCondHandleKey<LArOnOffIdMapping>
m_writeKey
{
this
,
"WriteKey"
,
"LArOnOffIdMap"
};
32
Gaudi::Property<bool>
m_isSuperCell
{
this
,
"isSuperCell"
,
false
};
33
};
34
35
36
37
#endif
CondAttrListCollection.h
This file defines the class for a collection of AttributeLists where each one is associated with a ch...
WriteCondHandleKey.h
AthAlgorithm.h
LArOnOffIdMapping.h
LArOnOffMappingAlg::initialize
virtual StatusCode initialize() override
Definition:
LArOnOffMappingAlg.cxx:17
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
LArOnOffMappingAlg::m_readKey
SG::ReadCondHandleKey< AthenaAttributeList > m_readKey
Definition:
LArOnOffMappingAlg.h:30
LArOnOffMappingAlg::m_writeKey
SG::WriteCondHandleKey< LArOnOffIdMapping > m_writeKey
Definition:
LArOnOffMappingAlg.h:31
LArOnOffMappingAlg
Definition:
LArOnOffMappingAlg.h:17
AthAlgorithm
Definition:
AthAlgorithm.h:47
LArOnOffMappingAlg::execute
virtual StatusCode execute() override
Definition:
LArOnOffMappingAlg.cxx:29
ReadCondHandleKey.h
SG::ReadCondHandleKey< AthenaAttributeList >
SG::WriteCondHandleKey< LArOnOffIdMapping >
AthAlgorithm::AthAlgorithm
AthAlgorithm()
Default constructor:
LArOnOffMappingAlg::m_isSuperCell
Gaudi::Property< bool > m_isSuperCell
Definition:
LArOnOffMappingAlg.h:32
LArOnOffMappingAlg::~LArOnOffMappingAlg
virtual ~LArOnOffMappingAlg()=default
Generated on Sun Mar 23 2025 21:13:58 for ATLAS Offline Software by
1.8.18