Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-05 08:11:00

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/GenericBoundTrackParameters.hpp"
0012 #include "Acts/EventData/GenericFreeTrackParameters.hpp"
0013 #include "Acts/EventData/ParticleHypothesis.hpp"
0014 
0015 namespace Acts {
0016 
0017 using SinglyChargedBoundTrackParameters =
0018     GenericBoundTrackParameters<SinglyChargedParticleHypothesis>;
0019 using SinglyChargedFreeTrackParameters =
0020     GenericFreeTrackParameters<SinglyChargedParticleHypothesis>;
0021 
0022 using NeutralBoundTrackParameters =
0023     GenericBoundTrackParameters<NeutralParticleHypothesis>;
0024 using NeutralFreeTrackParameters =
0025     GenericFreeTrackParameters<NeutralParticleHypothesis>;
0026 
0027 /// @brief BoundTrackParameters can hold any kind of charge
0028 using BoundTrackParameters = GenericBoundTrackParameters<ParticleHypothesis>;
0029 /// @brief FreeTrackParameters can hold any kind of charge
0030 using FreeTrackParameters = GenericFreeTrackParameters<ParticleHypothesis>;
0031 
0032 }  // namespace Acts