Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-19 09:23:17

0001 // This file is part of the Acts project.
0002 //
0003 // Copyright (C) 2023 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 http://mozilla.org/MPL/2.0/.
0008 
0009 #pragma once
0010 
0011 #include "Acts/Detector/DetectorComponents.hpp"
0012 #include "Acts/Geometry/GeometryContext.hpp"
0013 
0014 namespace Acts::Experimental {
0015 
0016 /// @brief This is the interface definition of external structure
0017 /// builders for DetectorVolume construction.
0018 class IExternalStructureBuilder {
0019  public:
0020   virtual ~IExternalStructureBuilder() = default;
0021 
0022   /// The virtual interface definition for external structure creation
0023   ///
0024   /// @param gctx the geometry context at the creation of the internal structure
0025   ///
0026   /// @return a consistent set of detector volume externals
0027   virtual ExternalStructure construct(const GeometryContext& gctx) const = 0;
0028 };
0029 
0030 }  // namespace Acts::Experimental