Belle II Software  release-08-01-10
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 /* Basf2 headers. */
12 #include <framework/core/Module.h>
13 #include <framework/datastore/StoreArray.h>
14 #include <mdst/dataobjects/KLMCluster.h>
15 
16 namespace Belle2 {
21  class MCParticle;
22 
30 
31  public:
32 
37 
42 
46  void initialize() override;
47 
51  void event() override;
52 
53  private:
54 
57 
60 
63 
64  };
65 
67 }
Module for MC matching for KLM clusters.
bool m_Hit2dRelations
Add relations for KLMHit2d and KLMHit2d.
void event() override
This method is called for each event.
StoreArray< KLMCluster > m_KLMClusters
KLM clusters.
StoreArray< MCParticle > m_MCParticles
MCParticles StoreArray.
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.