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
MuonSpectrometer
MuonPhaseII
MuonPatternRecognition
MuonTruthAlgsR4
src
SdoMultiTruthMaker.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
#ifndef MUONTRUTHALGSR4_SDOMULTITRUTHMAKER_H
5
#define MUONTRUTHALGSR4_SDOMULTITRUTHMAKER_H
6
7
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
8
9
#include "
StoreGate/ReadHandleKeyArray.h
"
10
#include "
StoreGate/WriteHandleKey.h
"
11
12
#include "
TrkTruthData/PRD_MultiTruthCollection.h
"
13
#include "
xAODMuonSimHit/MuonSimHitContainer.h
"
14
#include "
MuonIdHelpers/IMuonIdHelperSvc.h
"
15
16
namespace
MuonR4
{
17
class
SdoMultiTruthMaker
:
public
AthReentrantAlgorithm
{
18
public
:
19
using
AthReentrantAlgorithm::AthReentrantAlgorithm;
20
21
virtual
StatusCode
initialize
()
override
final
;
22
virtual
StatusCode
execute
(
const
EventContext& ctx)
const
override
final
;
23
private
:
24
25
ServiceHandle<Muon::IMuonIdHelperSvc>
m_idHelperSvc
{
this
,
"MuonIdHelperSvc"
,
"Muon::MuonIdHelperSvc/MuonIdHelperSvc"
};
26
SG::ReadHandleKey<xAOD::MuonSimHitContainer>
m_simHitKey
{
this
,
"SimContainer"
,
""
};
27
SG::WriteHandleKey<PRD_MultiTruthCollection>
m_writeKey
{
this
,
"WriteKey"
,
""
};
28
};
29
}
30
#endif
ReadHandleKeyArray.h
MuonR4::SdoMultiTruthMaker::initialize
virtual StatusCode initialize() override final
Definition:
SdoMultiTruthMaker.cxx:13
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition:
StoreGate/StoreGate/ReadHandleKey.h:39
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition:
AthReentrantAlgorithm.h:74
MuonR4::SdoMultiTruthMaker
Definition:
SdoMultiTruthMaker.h:17
SG::WriteHandleKey< PRD_MultiTruthCollection >
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
MuonR4::SdoMultiTruthMaker::m_writeKey
SG::WriteHandleKey< PRD_MultiTruthCollection > m_writeKey
Definition:
SdoMultiTruthMaker.h:27
MuonSimHitContainer.h
MuonR4::SdoMultiTruthMaker::m_idHelperSvc
ServiceHandle< Muon::IMuonIdHelperSvc > m_idHelperSvc
Definition:
SdoMultiTruthMaker.h:25
AthReentrantAlgorithm.h
WriteHandleKey.h
Property holding a SG store/key/clid from which a WriteHandle is made.
MuonR4
This header ties the generic definitions in this package.
Definition:
HoughEventData.h:16
PRD_MultiTruthCollection.h
MuonR4::SdoMultiTruthMaker::execute
virtual StatusCode execute(const EventContext &ctx) const override final
Definition:
SdoMultiTruthMaker.cxx:20
IMuonIdHelperSvc.h
MuonR4::SdoMultiTruthMaker::m_simHitKey
SG::ReadHandleKey< xAOD::MuonSimHitContainer > m_simHitKey
Definition:
SdoMultiTruthMaker.h:26
ServiceHandle< Muon::IMuonIdHelperSvc >
Generated on Tue Mar 25 2025 21:18:20 for ATLAS Offline Software by
1.8.18