Belle II Software  release-08-01-10
TrackSetEvaluatorGreedyDEVModule.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 <tracking/spacePointCreation/SpacePointTrackCand.h>
12 #include <tracking/trackFindingVXD/trackSetEvaluator/OverlapNetwork.h>
13 #include <framework/datastore/StoreArray.h>
14 #include <framework/core/Module.h>
15 
16 namespace Belle2 {
33  public:
36 
38  void initialize() override final
39  {
42  }
43 
45  void event() override final;
46 
47  protected:
51 
55  std::string m_nameOverlapNetworks;
56  };
58 }
Base class for Modules.
Definition: Module.h:72
Hold information about overlap of SpacePointTrackCand.
Storage for (VXD) SpacePoint-based track candidates.
bool isRequired(const std::string &name="")
Ensure this array/object has been registered previously.
Accessor to arrays stored in the data store.
Definition: StoreArray.h:113
The Greedy algoritm Track-set-evaluator.
void initialize() override final
Requires SpacePointTrackCands, OverlapNetworks.
void event() override final
Application of the algorithm.
std::string m_nameOverlapNetworks
name of the overlap networks
StoreArray< OverlapNetwork > m_overlapNetworks
access to tcNetwork, which will be produced by this module
StoreArray< SpacePointTrackCand > m_spacePointTrackCands
the storeArray for SpacePointTrackCands as member, is faster than recreating link for each event
std::string m_nameSpacePointTrackCands
Name of array of SpacePointTrackCand.
Abstract base class for different kinds of events.