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
w
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
LArMCSymCondAlg.h
Go to the documentation of this file.
1
//Dear emacs, this is -*- C++ -*-
2
3
/*
4
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
#ifndef LARRECCONDITIONS_LARMCSYMCONDGALG_H
8
#define LARRECCONDITIONS_LARMCSYMCONDGALG_H
9
10
#include "
AthenaBaseComps/AthAlgorithm.h
"
11
#include "
StoreGate/ReadCondHandleKey.h
"
12
#include "
StoreGate/WriteCondHandleKey.h
"
13
14
#include "
LArCabling/LArOnOffIdMapping.h
"
15
#include "
LArRawConditions/LArMCSym.h
"
16
17
class
LArMCSymCondAlg
:
public
AthAlgorithm
{
18
19
public
:
20
using
AthAlgorithm::AthAlgorithm
;
21
22
~LArMCSymCondAlg
()=
default
;
23
24
StatusCode
initialize
();
25
StatusCode
execute
();
26
StatusCode
finalize
() {
return
StatusCode::SUCCESS;}
27
28
private
:
29
SG::ReadCondHandleKey<LArOnOffIdMapping>
m_readKey
{
this
,
"ReadKey"
,
"LArOnOffIdMap"
};
30
SG::WriteCondHandleKey<LArMCSym>
m_writeKey
{
this
,
"WriteKey"
,
"LArMCSym"
};
31
BooleanProperty
m_isSC
{
this
,
"SuperCell"
,
false
,
"Creating for SC ?"
};
32
};
33
34
35
36
#endif
LArMCSymCondAlg::m_isSC
BooleanProperty m_isSC
Definition:
LArMCSymCondAlg.h:31
LArMCSymCondAlg::~LArMCSymCondAlg
~LArMCSymCondAlg()=default
WriteCondHandleKey.h
LArMCSymCondAlg::m_writeKey
SG::WriteCondHandleKey< LArMCSym > m_writeKey
Definition:
LArMCSymCondAlg.h:30
LArMCSymCondAlg::m_readKey
SG::ReadCondHandleKey< LArOnOffIdMapping > m_readKey
Definition:
LArMCSymCondAlg.h:29
AthAlgorithm.h
LArOnOffIdMapping.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
LArMCSymCondAlg
Definition:
LArMCSymCondAlg.h:17
LArMCSymCondAlg::initialize
StatusCode initialize()
Definition:
LArMCSymCondAlg.cxx:14
AthAlgorithm
Definition:
AthAlgorithm.h:47
ReadCondHandleKey.h
SG::ReadCondHandleKey< LArOnOffIdMapping >
LArMCSymCondAlg::execute
StatusCode execute()
Definition:
LArMCSymCondAlg.cxx:26
SG::WriteCondHandleKey< LArMCSym >
AthAlgorithm::AthAlgorithm
AthAlgorithm()
Default constructor:
LArMCSymCondAlg::finalize
StatusCode finalize()
Definition:
LArMCSymCondAlg.h:26
LArMCSym.h
Generated on Tue May 13 2025 21:13:02 for ATLAS Offline Software by
1.8.18