Juggler
Juggling algorithms and event processing using gaudi framework
ProtoTrack.hpp
Go to the documentation of this file.
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2019 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
9 #pragma once
10 
11 #include <cstddef>
12 #include <vector>
13 
14 namespace FW {
15 
16 /// A proto track is a collection of hits identified by their indices.
17 using ProtoTrack = std::vector<size_t>;
18 /// Container of proto tracks. Each proto track is identified by its index.
19 using ProtoTrackContainer = std::vector<ProtoTrack>;
20 
21 } // namespace FW
FW::ProtoTrackContainer
std::vector< ProtoTrack > ProtoTrackContainer
Container of proto tracks. Each proto track is identified by its index.
Definition: ProtoTrack.hpp:19
FW::ProtoTrack
std::vector< size_t > ProtoTrack
A proto track is a collection of hits identified by their indices.
Definition: ProtoTrack.hpp:17
FW
Definition: IndexContainers.hpp:16