Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-08-16 08:17:19

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 // Explicit instantiations of the 3D multi-axis factory for the
0010 // AxisBoundaryType::Bound first axis. Splitting the instantiations across one
0011 // TU per boundary type bounds the per-TU compiler memory of the otherwise
0012 // 216-way combinatorial `MultiAxis` instantiation.
0013 
0014 #include "CreateMultiAxis3Impl.hpp"
0015 
0016 namespace Acts::detail {
0017 
0018 template std::unique_ptr<IMultiAxis3D>
0019 createMultiAxis3<Axis<AxisType::Equidistant, AxisBoundaryType::Bound>>(
0020     const Axis<AxisType::Equidistant, AxisBoundaryType::Bound>& first,
0021     const IAxis& second, const IAxis& third);
0022 
0023 template std::unique_ptr<IMultiAxis3D>
0024 createMultiAxis3<Axis<AxisType::Variable, AxisBoundaryType::Bound>>(
0025     const Axis<AxisType::Variable, AxisBoundaryType::Bound>& first,
0026     const IAxis& second, const IAxis& third);
0027 
0028 }  // namespace Acts::detail