Belle II Software development
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
16namespace Belle2 {
30 public:
33
35 void initialize() override final
36 {
39 }
40
42 void event() override final;
43
44 protected:
48
53 };
55}
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.
STL namespace.