Belle II Software development
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
18namespace Belle2 {
28
29 public:
32
34 void initialize() override final;
35
37 void event() override final;
38
39 protected:
43
46 std::string m_nameSVDClusters;
47
49 std::string m_resolveMethod;
50
52 unsigned short m_estimatedActiveCandidates = 1000;
53
55 float m_minActivityState = 0.3;
56 };
58}
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.
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
Abstract base class for different kinds of events.