Belle II Software  release-08-01-10
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 
13 namespace Belle2 {
26  class TOPMCTrackMakerModule : public Module {
27 
28  public:
29 
34 
38  virtual ~TOPMCTrackMakerModule();
39 
44  virtual void initialize() override;
45 
50  virtual void beginRun() override;
51 
55  virtual void event() override;
56 
61  virtual void endRun() override;
62 
67  virtual void terminate() override;
68 
69  private:
70 
71 
72  };
73 
75 } // 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.