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
Generators
GeneratorObjectsTPCnv
GeneratorObjectsTPCnv
HepMcParticleLink_p3.h
Go to the documentation of this file.
1
3
/*
4
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
#ifndef GENERATOROBJECTSTPCNV_HEPMCPARTICLELINK_P3_H
8
#define GENERATOROBJECTSTPCNV_HEPMCPARTICLELINK_P3_H
9
10
// STL includes
11
#include <string>
12
13
// Forward declaration
14
class
HepMcParticleLinkCnv_p3
;
15
16
class
HepMcParticleLink_p3
17
{
18
// Make HepMcParticleLinkCnv_p3 our friend
19
friend
class
HepMcParticleLinkCnv_p3
;
20
22
// Public methods:
24
public
:
25
28
HepMcParticleLink_p3
();
29
31
HepMcParticleLink_p3
(
32
const
unsigned
short
genEvtIndex,
33
const
unsigned
long
id
,
34
char
truthSupp );
35
37
// Protected data:
39
protected
:
40
43
unsigned
short
m_mcEvtIndex
{0};
44
46
unsigned
long
m_id
{0};
// TODO could this be an unsigned int instead?
47
48
// indicates whether the truth particle has been suppressed
49
char
m_truthSupp
{
'a'
};
50
};
51
55
56
inline
HepMcParticleLink_p3::HepMcParticleLink_p3
() {}
57
58
inline
59
HepMcParticleLink_p3::HepMcParticleLink_p3
(
60
const
unsigned
short
genEvtIndex,
61
const
unsigned
long
id
,
62
char
truthSupp) :
63
m_mcEvtIndex( genEvtIndex ),
64
m_id(
id
),
65
m_truthSupp( truthSupp )
66
{}
67
68
#endif //> GENERATOROBJECTSTPCNV_HEPMCPARTICLELINK_P3_H
HepMcParticleLink_p3::m_truthSupp
char m_truthSupp
Definition:
HepMcParticleLink_p3.h:49
HepMcParticleLinkCnv_p3
Definition:
HepMcParticleLinkCnv_p3.h:29
HepMcParticleLink_p3::HepMcParticleLink_p3
HepMcParticleLink_p3()
Default constructor:
Definition:
HepMcParticleLink_p3.h:56
HepMcParticleLink_p3
Definition:
HepMcParticleLink_p3.h:17
HepMcParticleLink_p3::m_id
unsigned long m_id
id of the HepMC::GenParticle we are pointing to.
Definition:
HepMcParticleLink_p3.h:46
id
SG::auxid_t id
Definition:
Control/AthContainers/Root/debug.cxx:227
HepMcParticleLink_p3::m_mcEvtIndex
unsigned short m_mcEvtIndex
index of the HepMC::GenEvent holding the HepMC::GenParticle we are pointing to.
Definition:
HepMcParticleLink_p3.h:43
Generated on Sat Mar 15 2025 21:11:19 for ATLAS Offline Software by
1.8.18