Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-15 08:11:45

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/Geometry/GeometryContext.hpp"
0012 #include "Acts/Utilities/AxisDefinitions.hpp"
0013 #include "Acts/Utilities/ProtoAxis.hpp"
0014 
0015 #include <tuple>
0016 #include <vector>
0017 
0018 namespace Acts {
0019 
0020 class Surface;
0021 
0022 namespace Experimental::detail::ProtoMaterialHelper {
0023 
0024 /// @brief Method that attaches proto material to a surface given
0025 /// a proto binning description
0026 ///
0027 /// @param gctx is the geometry context, needed for extent measuring
0028 /// @param surface is the portal where the material is attached
0029 /// @param bDescription is the binning description for the proto binning
0030 ///
0031 /// @return an (eventual) updated binning description for structured
0032 ///         screen logging output
0033 std::vector<DirectedProtoAxis> attachProtoMaterial(
0034     const GeometryContext& gctx, Surface& surface,
0035     const std::vector<DirectedProtoAxis>& bDescription);
0036 
0037 }  // namespace Experimental::detail::ProtoMaterialHelper
0038 }  // namespace Acts