Belle II Software development
SmearPrimaryVertexModule.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#pragma once
10
11/* Belle II headers. */
12#include <framework/core/Module.h>
13#include <generators/utilities/InitialParticleGeneration.h>
14
15/* C++ headers. */
16#include <string>
17
18namespace Belle2 {
30
31 public:
32
37
42
46 virtual void initialize() override;
47
51 virtual void event() override;
52
53 private:
54
58 std::string m_MCParticlesName;
59
64
65 };
66
68}
Base class for Modules.
Definition: Module.h:72
This module smears the primary vertex (the interaction point) according to the values stored in BeamP...
virtual void initialize() override
Initialize the module.
virtual void event() override
This method is called for each event.
InitialParticleGeneration m_Initial
Initial particle generation.
std::string m_MCParticlesName
Name of the MCParticles StoreArray.
Abstract base class for different kinds of events.