Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-06 07:44:34

0001 // This file is part of the ACTS project.
0002 //
0003 // Copyright (C) 2016 CERN for the benefit of the ACTS project
0004 //
0005 // This Source Code Form is subject to the terms of the Mozilla Public
0006 // License, v. 2.0. If a copy of the MPL was not distributed with this
0007 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
0008 
0009 #pragma once
0010 
0011 #include "Acts/EventData/TrackContainer.hpp"
0012 #include "Acts/EventData/VectorMultiTrajectory.hpp"
0013 #include "Acts/EventData/VectorTrackContainer.hpp"
0014 
0015 #include <vector>
0016 
0017 namespace ActsExamples {
0018 
0019 /// (Reconstructed) track parameters e.g. close to the vertex.
0020 using TrackParameters = ::Acts::BoundTrackParameters;
0021 /// Container of reconstructed track states for multiple tracks.
0022 using TrackParametersContainer = std::vector<TrackParameters>;
0023 
0024 using TrackContainer =
0025     Acts::TrackContainer<Acts::VectorTrackContainer,
0026                          Acts::VectorMultiTrajectory, std::shared_ptr>;
0027 
0028 using ConstTrackContainer =
0029     Acts::TrackContainer<Acts::ConstVectorTrackContainer,
0030                          Acts::ConstVectorMultiTrajectory, std::shared_ptr>;
0031 
0032 using TrackIndexType = TrackContainer::IndexType;
0033 
0034 using TrackProxy = TrackContainer::TrackProxy;
0035 using ConstTrackProxy = ConstTrackContainer::ConstTrackProxy;
0036 
0037 using TrackStateProxy = TrackContainer::TrackStateProxy;
0038 using ConstTrackStateProxy = ConstTrackContainer::ConstTrackStateProxy;
0039 
0040 }  // namespace ActsExamples