Belle II Software development
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
16namespace Belle2 {
21 class MCParticle;
22
27
28 public:
29
34
39
43 void initialize() override;
44
48 void event() override;
49
50 private:
51
54
57
60
61 };
62
64}
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.