Juggler
Juggling algorithms and event processing using gaudi framework
ProtoTrack.hpp
Go to the documentation of this file.
1 // SPDX-License-Identifier: LGPL-3.0-or-later
2 // Copyright (C) 2022 Whitney Armstrong
3 
4 #ifndef JugTrack_ProtoTrack_HH
5 #define JugTrack_ProtoTrack_HH
6 
7 #include <cstddef>
8 #include <vector>
9 
10 namespace Jug {
11 
12 /// A proto track is a collection of hits identified by their indices.
13 using ProtoTrack = std::vector<size_t>;
14 /// Container of proto tracks. Each proto track is identified by its index.
15 using ProtoTrackContainer = std::vector<ProtoTrack>;
16 
17 } // namespace FW
18 
19 #endif
Jug
Definition: DD4hepBField.h:22
Jug::ProtoTrackContainer
std::vector< ProtoTrack > ProtoTrackContainer
Container of proto tracks. Each proto track is identified by its index.
Definition: ProtoTrack.hpp:15
Jug::ProtoTrack
std::vector< size_t > ProtoTrack
A proto track is a collection of hits identified by their indices.
Definition: ProtoTrack.hpp:13