Belle II Software  release-05-02-19
ClusterMatcherModule.h
1 
2 /***************************************************************************
3  * BASF2 (Belle Analysis Framework 2) *
4  * Copyright(C) 2016 - Belle II Collaboration *
5  * *
6  * Author: The Belle II Collaboration *
7  * Contributors: Jo-Frederik Krohn *
8  * *
9  * This software is provided "as is" without any warranty. *
10  *************************************************************************/
11 #ifndef ClusterMatcherModule_H
12 #define ClusterMatcherModule_H
13 
14 #include <framework/core/Module.h>
15 #include <framework/datastore/StoreArray.h>
16 
17 #include <mdst/dataobjects/KLMCluster.h>
18 #include <mdst/dataobjects/ECLCluster.h>
19 #include <mdst/dataobjects/Cluster.h>
20 
21 
22 namespace Belle2 {
34  class ClusterMatcherModule : public Module {
35 
36  public:
37 
40 
43 
45  virtual void initialize() override;
46 
48  virtual void event() override;
49 
51  float m_coneInRad = 0.26;
52 
53  protected:
54 
55  private:
56 
57  // required input
61  // output
64  }; // end class
66 } // end namespace Belle2
67 
68 #endif
Belle2
Abstract base class for different kinds of events.
Definition: MillepedeAlgorithm.h:19
Belle2::ClusterMatcherModule::m_Clusters
StoreArray< Cluster > m_Clusters
array of output Clusters
Definition: ClusterMatcherModule.h:70
Belle2::ClusterMatcherModule::event
virtual void event() override
process event
Definition: ClusterMatcherModule.cc:57
Belle2::ClusterMatcherModule::initialize
virtual void initialize() override
init
Definition: ClusterMatcherModule.cc:43
Belle2::ClusterMatcherModule::m_eclClusters
StoreArray< ECLCluster > m_eclClusters
Required array of input ECLClusters.
Definition: ClusterMatcherModule.h:66
Belle2::ClusterMatcherModule::~ClusterMatcherModule
virtual ~ClusterMatcherModule()
Destructor.
Definition: ClusterMatcherModule.cc:39
Belle2::ClusterMatcherModule::m_klmClusters
StoreArray< KLMCluster > m_klmClusters
Required array of input KLMClusters.
Definition: ClusterMatcherModule.h:67
Belle2::StoreArray
Accessor to arrays stored in the data store.
Definition: ECLMatchingPerformanceExpertModule.h:33
Belle2::ClusterMatcherModule::ClusterMatcherModule
ClusterMatcherModule()
Constructor.
Definition: ClusterMatcherModule.cc:27
Belle2::ClusterMatcherModule::m_coneInRad
float m_coneInRad
cone angle for matching (whole cone)
Definition: ClusterMatcherModule.h:59