Belle II Software development
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
16namespace Belle2 {
25
26 public:
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;
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;
62 };
64}
Class for accessing objects in the database.
Definition: DBObjPtr.h:21
Base class for Modules.
Definition: Module.h:72
Setup material handling and magnetic fields for use by genfit's extrapolation code (RKTrackRep).
std::string m_mscModel
Multiple scattering model.
std::string m_geometry
choice of geometry representation: 'TGeo' or 'Geant4'.
bool m_noEffects
switch on/off ALL material effects in Genfit. "true" overwrites "true" flags for the individual effec...
void initialize() override
Initialize the Module.
bool m_noiseBetheBloch
Determines if calculation of energy loss variance is on/off in Genfit.
bool m_noiseBrems
Determines if calculation of bremsstrahlung energy loss variance is on/off in Genfit.
bool m_energyLossBrems
Determines if calculation of bremsstrahlung energy loss is on/off in Genfit.
bool m_noiseCoulomb
Determines if calculation of multiple scattering covariance matrix on/off in Genfit.
DBObjPtr< VXDAlignment > m_vxdAlignment
DB object with VXD alignment.
bool m_useVXDAlignment
Use VXD alignment from database?
bool m_energyLossBetheBloch
Determines if calculation of energy loss is on/off in Genfit.
bool m_ignoreIfPresent
Whether or not this module will raise an error if the geometry is already present.
Abstract base class for different kinds of events.