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 {
30 class KLMClusterAnaModule : public Module {
31
32 public:
33
38
43
47 void initialize() override;
48
52 void beginRun() override;
53
57 void event() override;
58
59
60
61
62 private:
63
64
67
70
73
74 };
75
77}
78
79
80
81
Module for KLM cluster reconstruction efficiency studies.
void initialize() override
Initializer.
void event() override
This method is called for each event.
StoreArray< KLMClusterShape > m_KLMClusterShape
Output per cluster.
void beginRun() override
Called when entering a new run.
StoreArray< KLMHit2d > m_klmHit2ds
Two-dimensional hits.
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.