Belle II Software  release-08-01-10
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 
13 namespace Belle2 {
18  class ECLCluster;
19  class TRGECLCluster;
20 
28 
29  public:
30 
35 
37  virtual void initialize() override;
38 
40  virtual void event() override;
41 
42  private:
43 
47  double m_minClusterEnergy {0.1};
48  double m_maxAngle {0.1};
49  double m_minFracEnergy {0.0};
50  double m_maxFracEnergy {2.0};
51  };
53 }
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.