Belle II Software  release-05-02-19
ECLTriggerClusterMatcherModule.h
1 /**************************************************************************
2  * BASF2 (Belle Analysis Framework 2) *
3  * Copyright(C) 2018 - Belle II Collaboration *
4  * *
5  * Author: The Belle II Collaboration *
6  * Contributors: Torben Ferber (ferber) *
7  * *
8  * This software is provided "as is" without any warranty. *
9  **************************************************************************/
10 #pragma once
11 
12 #include <framework/core/Module.h>
13 #include <framework/datastore/StoreArray.h>
14 
15 namespace Belle2 {
20  class ECLCluster;
21  class TRGECLCluster;
22 
29  class ECLTriggerClusterMatcherModule : public Module {
30 
31  public:
32 
37 
39  virtual void initialize() override;
40 
42  virtual void event() override;
43 
44  private:
45 
49  double m_minClusterEnergy {0.1};
50  double m_maxAngle {0.1};
51  double m_minFracEnergy {0.0};
52  double m_maxFracEnergy {2.0};
53  };
55 }
Belle2::ECLTriggerClusterMatcherModule::initialize
virtual void initialize() override
Register input and output data.
Definition: ECLTriggerClusterMatcherModule.cc:46
Belle2::ECLTriggerClusterMatcherModule::m_eclTriggers
StoreArray< TRGECLCluster > m_eclTriggers
eclTriggers
Definition: ECLTriggerClusterMatcherModule.h:55
Belle2::ECLTriggerClusterMatcherModule::m_eclClusters
StoreArray< ECLCluster > m_eclClusters
eclClusters
Definition: ECLTriggerClusterMatcherModule.h:54
Belle2::ECLTriggerClusterMatcherModule::event
virtual void event() override
Event.
Definition: ECLTriggerClusterMatcherModule.cc:53
Belle2::ECLTriggerClusterMatcherModule::ECLTriggerClusterMatcherModule
ECLTriggerClusterMatcherModule()
Constructor: Sets the description, the properties and the parameters of the module.
Definition: ECLTriggerClusterMatcherModule.cc:35
Belle2::ECLTriggerClusterMatcherModule::m_minClusterEnergy
double m_minClusterEnergy
minimum cluster energy.
Definition: ECLTriggerClusterMatcherModule.h:57
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::ECLTriggerClusterMatcherModule::m_maxFracEnergy
double m_maxFracEnergy
maximal energy fraction trg/cluster
Definition: ECLTriggerClusterMatcherModule.h:60
Belle2::ECLTriggerClusterMatcherModule::m_minFracEnergy
double m_minFracEnergy
minimum energy fraction tr/cluster
Definition: ECLTriggerClusterMatcherModule.h:59
Belle2::StoreArray
Accessor to arrays stored in the data store.
Definition: ECLMatchingPerformanceExpertModule.h:33
Belle2::ECLTriggerClusterMatcherModule::m_maxAngle
double m_maxAngle
maximal angular separation
Definition: ECLTriggerClusterMatcherModule.h:58