Belle II Software  release-08-01-10
SVDOverlapResolverModule.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 #include <framework/datastore/StoreArray.h>
13 
14 #include <tracking/spacePointCreation/SpacePointTrackCand.h>
15 
16 #include <string>
17 
18 namespace Belle2 {
31 
32  public:
35 
37  void initialize() override final;
38 
40  void event() override final;
41 
42  protected:
46 
49  std::string m_nameSVDClusters;
50 
52  std::string m_resolveMethod;
53 
55  unsigned short m_estimatedActiveCandidates = 1000;
56 
58  float m_minActivityState = 0.3;
59  };
61 }
Base class for Modules.
Definition: Module.h:72
void initialize() override final
State requirements of SpacePointTrackCands, SVDClusters, registers OverlapNetworks.
float m_minActivityState
Minimum of activityState of candidate required to be accepted by the algorithm.
StoreArray< SVDCluster > m_svdClusters
Stay connected to the DataStore for timing improvement.
std::string m_resolveMethod
Strategy used to resolve overlaps.
SVDOverlapResolverModule()
Constructor of the module.
void event() override final
Checks for overlaps and fills the OverlapNetwork.
unsigned short m_estimatedActiveCandidates
Estimated amount of active candidates used to reserve enough space.
std::string m_nameSVDClusters
Name of array of SVDCluster.
StoreArray< SpacePointTrackCand > m_spacePointTrackCands
Stay connected to the DataStore for timing improvement.
std::string m_nameSpacePointTrackCands
Name of array of SpacePointTrackCand.
Abstract base class for different kinds of events.