Belle II Software prerelease-10-00-00a
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 {
23
33
34 public:
35
40
45
49 virtual void initialize() override;
50
54 virtual void event() override;
55
56 private:
57
61 std::string m_MCParticlesName;
62
67
68 };
69
71}
Module()
Constructor.
Definition Module.cc:30
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.