Belle II Software development
TOPMCTrackMakerModule.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#include <framework/core/Module.h>
12
13namespace Belle2 {
24
25 public:
26
31
35 virtual ~TOPMCTrackMakerModule();
36
41 virtual void initialize() override;
42
47 virtual void beginRun() override;
48
52 virtual void event() override;
53
58 virtual void endRun() override;
59
64 virtual void terminate() override;
65
66 private:
67
68
69 };
70
72} // Belle2 namespace
Base class for Modules.
Definition: Module.h:72
Constructs Tracks and ExtHits from MCParticles and TOPBarHits Utility needed for testing and debuggin...
virtual ~TOPMCTrackMakerModule()
Destructor.
virtual void initialize() override
Initialize the Module.
virtual void event() override
Event processor.
virtual void endRun() override
End-of-run action.
virtual void terminate() override
Termination action.
virtual void beginRun() override
Called when entering a new run.
Abstract base class for different kinds of events.