Belle II Software
release-06-00-14
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
z
Typedefs
a
b
c
d
e
i
k
l
m
n
p
r
s
t
u
v
w
Enumerations
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
BBBremInputModule.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
9
#ifndef BBBREMINPUTMODULE_H
10
#define BBBREMINPUTMODULE_H
11
12
#include <framework/core/Module.h>
13
14
#include <generators/bbbrem/BBBrem.h>
15
#include <generators/utilities/InitialParticleGeneration.h>
16
17
#include <mdst/dataobjects/MCParticleGraph.h>
18
19
namespace
Belle2
{
32
class
BBBremInputModule
:
public
Module
{
33
34
public
:
35
40
BBBremInputModule
();
41
43
virtual
~BBBremInputModule
();
44
46
virtual
void
initialize
()
override
;
47
49
virtual
void
event
()
override
;
50
52
virtual
void
terminate
()
override
;
53
54
55
protected
:
56
58
double
m_photonEFrac
;
59
bool
m_unweighted
;
60
double
m_maxWeight
;
61
int
m_densityCorrectionMode
;
62
double
m_DensityCorrectionParameter
;
65
BBBrem
m_generator
;
66
MCParticleGraph
m_mcGraph
;
68
private
:
69
70
void
initializeGenerator
();
72
bool
m_initialized
{
false
};
74
DBObjPtr<BeamParameters>
m_beamParams
;
76
InitialParticleGeneration
m_initial
;
78
};
79
81
}
// end namespace Belle2
82
83
84
#endif
/* BBBREMINPUTMODULE_H */
Belle2::BBBremInputModule
The BBBrem Generator module.
Definition:
BBBremInputModule.h:32
Belle2::BBBremInputModule::m_beamParams
DBObjPtr< BeamParameters > m_beamParams
BeamParameter.
Definition:
BBBremInputModule.h:74
Belle2::BBBremInputModule::m_initialized
bool m_initialized
True if generator has been initialized.
Definition:
BBBremInputModule.h:72
Belle2::BBBremInputModule::m_DensityCorrectionParameter
double m_DensityCorrectionParameter
Density correction parameter tc.
Definition:
BBBremInputModule.h:62
Belle2::BBBremInputModule::initialize
virtual void initialize() override
Initializes the module.
Definition:
BBBremInputModule.cc:52
Belle2::BBBremInputModule::m_generator
BBBrem m_generator
Variables.
Definition:
BBBremInputModule.h:65
Belle2::BBBremInputModule::m_unweighted
bool m_unweighted
True if BBBrem should produce unweighted events.
Definition:
BBBremInputModule.h:59
Belle2::BBBremInputModule::event
virtual void event() override
Method is called for each event.
Definition:
BBBremInputModule.cc:63
Belle2::BBBremInputModule::terminate
virtual void terminate() override
Method is called at the end of the event processing.
Definition:
BBBremInputModule.cc:95
Belle2::BBBremInputModule::BBBremInputModule
BBBremInputModule()
Constructor.
Definition:
BBBremInputModule.cc:30
Belle2::BBBremInputModule::m_maxWeight
double m_maxWeight
The maximum weight.
Definition:
BBBremInputModule.h:60
Belle2::BBBremInputModule::m_mcGraph
MCParticleGraph m_mcGraph
The MCParticle graph object.
Definition:
BBBremInputModule.h:66
Belle2::BBBremInputModule::~BBBremInputModule
virtual ~BBBremInputModule()
Destructor.
Definition:
BBBremInputModule.cc:46
Belle2::BBBremInputModule::m_initial
InitialParticleGeneration m_initial
initial particle used by BeamParameter class
Definition:
BBBremInputModule.h:76
Belle2::BBBremInputModule::m_photonEFrac
double m_photonEFrac
Module parameters.
Definition:
BBBremInputModule.h:58
Belle2::BBBremInputModule::m_densityCorrectionMode
int m_densityCorrectionMode
Mode for bunch density correction.
Definition:
BBBremInputModule.h:61
Belle2::BBBremInputModule::initializeGenerator
void initializeGenerator()
Method is called to initialize the generator.
Definition:
BBBremInputModule.cc:106
Belle2::BBBrem
Generator for low scattering angle radiative Bhabha events (Beam-Beam Bremsstrahlung).
Definition:
BBBrem.h:30
Belle2::DBObjPtr
Class for accessing objects in the database.
Definition:
DBObjPtr.h:21
Belle2::InitialParticleGeneration
Generate Collision.
Definition:
InitialParticleGeneration.h:33
Belle2::MCParticleGraph
Class to build, validate and sort a particle decay chain.
Definition:
MCParticleGraph.h:37
Belle2::Module
Base class for Modules.
Definition:
Module.h:72
Belle2
Abstract base class for different kinds of events.
Definition:
MillepedeAlgorithm.h:17
generators
modules
bbbreminput
include
BBBremInputModule.h
Generated on Thu Jul 14 2022 08:01:08 for Belle II Software by
1.9.1