Juggler
Juggling algorithms and event processing using gaudi framework
Track.hpp
Go to the documentation of this file.
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2019-2020 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 "Acts/EventData/TrackParameters.hpp"
12 
13 #include <vector>
14 
15 namespace Jug {
16 
17 /// (Reconstructed) track parameters e.g. close to the vertex.
18 using TrackParameters = ::Acts::BoundTrackParameters;
19 /// Container of reconstructed track states for multiple tracks.
20 using TrackParametersContainer = std::vector<TrackParameters>;
21 
22 } // namespace ActsExamples
Jug::TrackParametersContainer
std::vector< TrackParameters > TrackParametersContainer
Container of reconstructed track states for multiple tracks.
Definition: Track.hpp:27
Jug
Definition: DD4hepBField.h:22
Jug::TrackParameters
::Acts::BoundTrackParameters TrackParameters
(Reconstructed) track parameters e.g. close to the vertex.
Definition: Track.hpp:25