|
ACTS
Experiment-independent tracking
|
Evicts tracks that seem to be duplicates or fakes. More...
#include <Acts/AmbiguityResolution/GreedyAmbiguityResolution.hpp>
Classes | |
| struct | Config |
| struct | State |
Public Member Functions | |
| GreedyAmbiguityResolution (const Config &cfg, std::unique_ptr< const Logger > logger=getDefaultLogger("GreedyAmbiguityResolution", Logging::INFO)) | |
| Constructor with configuration and logger. | |
| template<TrackContainerFrontend track_container_t, typename source_link_hash_t, typename source_link_equality_t> | |
| void | computeInitialState (const track_container_t &tracks, State &state, source_link_hash_t &&sourceLinkHash, source_link_equality_t &&sourceLinkEquality) const |
| Computes the initial state for the input data. | |
| void | resolve (State &state) const |
| Updates the state iteratively by evicting one track after the other until the final state conditions are met. | |
Evicts tracks that seem to be duplicates or fakes.
This algorithm takes a greedy approach in the sense that it will remove the track which looks "most duplicate/fake" first and continues the same process with the rest. That process continues until the final state conditions are met.
The implementation works as follows: 1) Calculate shared hits per track. 2) If the maximum shared hits criteria is met, we are done. This is the configurable amount of shared hits we are ok with in our experiment. 3) Else, remove the track with the highest relative shared hits (i.e. shared hits / hits). 4) Back to square 1.
|
explicit |
Constructor with configuration and logger.
| cfg | Configuration for ambiguity resolution |
| logger | Logger for diagnostic output |
| void Acts::GreedyAmbiguityResolution::computeInitialState | ( | const track_container_t & | tracks, |
| State & | state, | ||
| source_link_hash_t && | sourceLinkHash, | ||
| source_link_equality_t && | sourceLinkEquality ) const |
Computes the initial state for the input data.
This function accumulates information that will later be used to accelerate the ambiguity resolution.
| tracks | The input track container. |
| state | An empty state object which is expected to be default constructed. |
| sourceLinkHash | A functor to acquire a hash from a given source link. |
| sourceLinkEquality | A functor to check equality of two source links. |
| void Acts::GreedyAmbiguityResolution::resolve | ( | State & | state | ) | const |
Updates the state iteratively by evicting one track after the other until the final state conditions are met.
| state | A state object that was previously filled by the initialization. |