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
Tracking
TrkG4Components
TrkG4UserActions
TrkG4UserActions
IGeantFollowerMSHelper.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// IGeantFollowerMSHelperFollowerHelper.h, (c) ATLAS Detector software
8
9
#ifndef IGeantFollowerMSHelper_H
10
#define IGeantFollowerMSHelper_H
11
12
// Gaudi
13
#include "GaudiKernel/IAlgTool.h"
14
15
#include "G4ThreeVector.hh"
16
17
namespace
Trk
{
18
20
static
const
InterfaceID IID_IGeantFollowerMSHelper(
"IGeantFollowerMSHelper"
, 1, 0);
21
26
class
IGeantFollowerMSHelper
:
virtual
public
IAlgTool {
27
public
:
28
30
virtual
~IGeantFollowerMSHelper
(){}
31
33
static
const
InterfaceID&
interfaceID
() {
return
IID_IGeantFollowerMSHelper; }
34
35
// Follower interface
36
// a) begin event - initialize follower process
37
virtual
void
beginEvent
() = 0;
38
// b) track the particle
39
virtual
void
trackParticle
(
const
G4ThreeVector&
pos
,
const
G4ThreeVector&
mom
,
int
pdg,
double
charge
,
float
t
,
float
X0
) = 0;
40
// c) end event - ntuple writing
41
virtual
void
endEvent
() = 0;
42
43
};
44
45
46
}
// end of namespace
47
48
#endif // IGeantFollowerMSHelper_H
Trk::IGeantFollowerMSHelper::trackParticle
virtual void trackParticle(const G4ThreeVector &pos, const G4ThreeVector &mom, int pdg, double charge, float t, float X0)=0
Trk::IGeantFollowerMSHelper::beginEvent
virtual void beginEvent()=0
read_hist_ntuple.t
t
Definition:
read_hist_ntuple.py:5
Trk::IGeantFollowerMSHelper
Definition:
IGeantFollowerMSHelper.h:26
pdg_comparison.X0
X0
Definition:
pdg_comparison.py:314
ParticleGun_EoverP_Config.mom
mom
Definition:
ParticleGun_EoverP_Config.py:63
Trk::IGeantFollowerMSHelper::interfaceID
static const InterfaceID & interfaceID()
AlgTool and IAlgTool interface methods.
Definition:
IGeantFollowerMSHelper.h:33
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
Trk::IGeantFollowerMSHelper::endEvent
virtual void endEvent()=0
charge
double charge(const T &p)
Definition:
AtlasPID.h:931
python.LumiBlobConversion.pos
pos
Definition:
LumiBlobConversion.py:18
Trk::IGeantFollowerMSHelper::~IGeantFollowerMSHelper
virtual ~IGeantFollowerMSHelper()
Virtual destructor.
Definition:
IGeantFollowerMSHelper.h:30
Generated on Tue Apr 22 2025 21:11:48 for ATLAS Offline Software by
1.8.18