Belle II Software development
NeutralHadronMatcherModule.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#include <framework/core/Module.h>
12
13namespace Belle2 {
23 public:
26 virtual void initialize() override final;
28 virtual void event() override final;
29 private:
33 std::vector<std::string> m_ParticleLists;
35 double m_effcorr;
37 double m_distance;
39 std::vector<int> m_PDGignore;
41 std::string m_infoName;
43 std::string m_matchedId;
44 };
46}
Base class for Modules.
Definition: Module.h:72
Module to geometrically match neutral hadrons (KL, neutrons) to ECL clusters.
std::vector< std::string > m_ParticleLists
input particle lists name
virtual void initialize() override final
Overridden initialize method.
double m_effcorr
input efficiency correction
std::string m_infoName
extra info variable for distance
virtual void event() override final
Overridden event method.
std::string m_matchedId
extra info variable for matched MC
std::vector< int > m_PDGignore
ignore clusters that are matched with the following PDG codes
Abstract base class for different kinds of events.