Belle II Software
release-08-02-06
Main Page
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
w
x
z
Typedefs
a
b
c
d
e
g
i
k
l
m
n
p
r
s
t
u
v
w
Enumerations
a
b
c
e
f
g
n
p
s
v
z
Enumerator
c
d
f
p
t
u
v
w
Classes
Class List
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
Enumerations
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
k
l
m
n
o
p
r
s
t
u
v
w
z
Related Functions
b
c
d
g
i
o
r
s
t
Files
File List
File Members
All
Functions
Typedefs
Macros
SetupGenfitExtrapolationModule.h
1
/**************************************************************************
2
* basf2 (Belle II Analysis Software Framework) *
3
* Author: The Belle II Collaboration *
4
* *
5
* See git log for contributors and copyright holders. *
6
* This file is licensed under LGPL-3.0, see LICENSE.md. *
7
**************************************************************************/
8
#pragma once
9
10
#include <framework/core/Module.h>
11
#include <framework/database/DBObjPtr.h>
12
#include <alignment/dbobjects/VXDAlignment.h>
13
14
#include <string>
15
16
namespace
Belle2
{
24
class
SetupGenfitExtrapolationModule
:
public
Module
{
25
26
public
:
28
SetupGenfitExtrapolationModule
();
29
33
void
initialize
()
override
;
34
35
private
:
39
bool
m_ignoreIfPresent
=
true
;
40
42
std::string
m_geometry
=
"Geant4"
;
43
45
bool
m_noEffects
=
false
;
47
bool
m_energyLossBetheBloch
=
true
;
49
bool
m_noiseBetheBloch
=
true
;
51
bool
m_noiseCoulomb
=
true
;
53
bool
m_energyLossBrems
=
true
;
55
bool
m_noiseBrems
=
true
;
57
std::string
m_mscModel
=
"Highland"
;
59
bool
m_useVXDAlignment
=
true
;
61
DBObjPtr<VXDAlignment>
m_vxdAlignment
;
62
};
64
}
Belle2::DBObjPtr
Class for accessing objects in the database.
Definition:
DBObjPtr.h:21
Belle2::Module
Base class for Modules.
Definition:
Module.h:72
Belle2::SetupGenfitExtrapolationModule
Setup material handling and magnetic fields for use by genfit's extrapolation code (RKTrackRep).
Definition:
SetupGenfitExtrapolationModule.h:24
Belle2::SetupGenfitExtrapolationModule::m_mscModel
std::string m_mscModel
Multiple scattering model.
Definition:
SetupGenfitExtrapolationModule.h:57
Belle2::SetupGenfitExtrapolationModule::m_geometry
std::string m_geometry
choice of geometry representation: 'TGeo' or 'Geant4'.
Definition:
SetupGenfitExtrapolationModule.h:42
Belle2::SetupGenfitExtrapolationModule::m_noEffects
bool m_noEffects
switch on/off ALL material effects in Genfit. "true" overwrites "true" flags for the individual effec...
Definition:
SetupGenfitExtrapolationModule.h:45
Belle2::SetupGenfitExtrapolationModule::initialize
void initialize() override
Initialize the Module.
Definition:
SetupGenfitExtrapolationModule.cc:106
Belle2::SetupGenfitExtrapolationModule::m_noiseBetheBloch
bool m_noiseBetheBloch
Determines if calculation of energy loss variance is on/off in Genfit.
Definition:
SetupGenfitExtrapolationModule.h:49
Belle2::SetupGenfitExtrapolationModule::m_noiseBrems
bool m_noiseBrems
Determines if calculation of bremsstrahlung energy loss variance is on/off in Genfit.
Definition:
SetupGenfitExtrapolationModule.h:55
Belle2::SetupGenfitExtrapolationModule::m_energyLossBrems
bool m_energyLossBrems
Determines if calculation of bremsstrahlung energy loss is on/off in Genfit.
Definition:
SetupGenfitExtrapolationModule.h:53
Belle2::SetupGenfitExtrapolationModule::SetupGenfitExtrapolationModule
SetupGenfitExtrapolationModule()
Constructor.
Definition:
SetupGenfitExtrapolationModule.cc:69
Belle2::SetupGenfitExtrapolationModule::m_noiseCoulomb
bool m_noiseCoulomb
Determines if calculation of multiple scattering covariance matrix on/off in Genfit.
Definition:
SetupGenfitExtrapolationModule.h:51
Belle2::SetupGenfitExtrapolationModule::m_vxdAlignment
DBObjPtr< VXDAlignment > m_vxdAlignment
DB object with VXD alignment.
Definition:
SetupGenfitExtrapolationModule.h:61
Belle2::SetupGenfitExtrapolationModule::m_useVXDAlignment
bool m_useVXDAlignment
Use VXD alignment from database?
Definition:
SetupGenfitExtrapolationModule.h:59
Belle2::SetupGenfitExtrapolationModule::m_energyLossBetheBloch
bool m_energyLossBetheBloch
Determines if calculation of energy loss is on/off in Genfit.
Definition:
SetupGenfitExtrapolationModule.h:47
Belle2::SetupGenfitExtrapolationModule::m_ignoreIfPresent
bool m_ignoreIfPresent
Whether or not this module will raise an error if the geometry is already present.
Definition:
SetupGenfitExtrapolationModule.h:39
Belle2
Abstract base class for different kinds of events.
Definition:
MillepedeAlgorithm.h:17
tracking
modules
genfitUtilities
include
SetupGenfitExtrapolationModule.h
Generated on Tue Jan 28 2025 01:56:41 for Belle II Software by
1.9.1