Belle II Software  release-06-02-00
MCMatcherKLMClustersModule.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 2 headers. */
12 #include <framework/core/Module.h>
13 #include <framework/datastore/StoreArray.h>
14 #include <mdst/dataobjects/KLMCluster.h>
15 
16 namespace Belle2 {
29 
30  public:
31 
36 
41 
45  void initialize() override;
46 
50  void beginRun() override;
51 
55  void event() override;
56 
60  void endRun() override;
61 
65  void terminate() override;
66 
67  private:
68 
71 
74 
75  };
76 
78 }
Module for MC matching for KLM clusters.
bool m_Hit2dRelations
Add relations for BKLMHit2d and EKLMHit2d.
void event() override
This method is called for each event.
void endRun() override
This method is called if the current run ends.
void terminate() override
This method is called at the end of the event processing.
void beginRun() override
Called when entering a new run.
StoreArray< KLMCluster > m_KLMClusters
KLM clusters.
Base class for Modules.
Definition: Module.h:72
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.