Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:11:47

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/TrackParameters.hpp"
0013 #include "Acts/EventData/VectorMultiTrajectory.hpp"
0014 #include "Acts/EventData/VectorTrackContainer.hpp"
0015 
0016 #include <vector>
0017 
0018 namespace ActsExamples {
0019 
0020 /// (Reconstructed) track parameters e.g. close to the vertex.
0021 using TrackParameters = ::Acts::BoundTrackParameters;
0022 /// Container of reconstructed track states for multiple tracks.
0023 using TrackParametersContainer = std::vector<TrackParameters>;
0024 
0025 using TrackContainer =
0026     Acts::TrackContainer<Acts::VectorTrackContainer,
0027                          Acts::VectorMultiTrajectory, std::shared_ptr>;
0028 
0029 using ConstTrackContainer =
0030     Acts::TrackContainer<Acts::ConstVectorTrackContainer,
0031                          Acts::ConstVectorMultiTrajectory, std::shared_ptr>;
0032 
0033 using TrackIndexType = TrackContainer::IndexType;
0034 
0035 using TrackProxy = TrackContainer::TrackProxy;
0036 using ConstTrackProxy = ConstTrackContainer::ConstTrackProxy;
0037 
0038 using TrackStateProxy = TrackContainer::TrackStateProxy;
0039 using ConstTrackStateProxy = ConstTrackContainer::ConstTrackStateProxy;
0040 
0041 }  // namespace ActsExamples