Belle II Software development
ECLTriggerClusterMatcherModule.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#pragma once
9
10#include <framework/core/Module.h>
11#include <framework/datastore/StoreArray.h>
12
13namespace Belle2 {
18 class ECLCluster;
19 class TRGECLCluster;
20
25
26 public:
27
32
34 virtual void initialize() override;
35
37 virtual void event() override;
38
39 private:
40
44 double m_minClusterEnergy {0.1};
45 double m_maxAngle {0.1};
46 double m_minFracEnergy {0.0};
47 double m_maxFracEnergy {2.0};
48 };
50}
double m_minFracEnergy
minimum energy fraction tr/cluster
virtual void initialize() override
Register input and output data.
double m_maxFracEnergy
maximal energy fraction trg/cluster
ECLTriggerClusterMatcherModule()
Constructor: Sets the description, the properties and the parameters of the module.
StoreArray< TRGECLCluster > m_eclTriggers
eclTriggers
StoreArray< ECLCluster > m_eclClusters
eclClusters
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.