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
12#include <string>
13
14namespace Belle2 {
23
24 public:
27
31 void initialize() override;
32
33 private:
37 bool m_ignoreIfPresent = true;
38
40 std::string m_geometry = "Geant4";
41
43 bool m_noEffects = false;
47 bool m_noiseBetheBloch = true;
49 bool m_noiseCoulomb = true;
51 bool m_energyLossBrems = true;
53 bool m_noiseBrems = true;
55 bool m_useBFieldCache = false;
57 std::string m_mscModel = "Highland";
58 };
59
60}
Module()
Constructor.
Definition Module.cc:30
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_useBFieldCache
Determines if the magnetic field cache 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.
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.