Belle II Software development
KLMClusterAnaModule.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
12/* Basf2 headers. */
13#include <framework/core/Module.h>
14#include <framework/datastore/StoreArray.h>
15
16/* KLM headers. */
17#include <klm/dataobjects/KLMHit2d.h>
18#include <klm/dataobjects/KLMClusterShape.h>
19#include <mdst/dataobjects/KLMCluster.h>
20
21namespace Belle2 {
26
30 class KLMClusterAnaModule : public Module {
31
32 public:
33
38
42 ~KLMClusterAnaModule() override;
43
47 void initialize() override;
48
52 void event() override;
53
54
55
56
57 private:
58
59
62
65
68
69 };
70
72}
73
74
75
76
void initialize() override
Initializer.
void event() override
This method is called for each event.
StoreArray< KLMClusterShape > m_KLMClusterShape
Output per cluster.
~KLMClusterAnaModule() override
Destructor.
StoreArray< KLMHit2d > m_klmHit2ds
Two-dimensional hits.
StoreArray< KLMCluster > m_KLMClusters
KLM clusters.
Module()
Constructor.
Definition Module.cc:30
Accessor to arrays stored in the data store.
Definition StoreArray.h:113
Abstract base class for different kinds of events.