Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-10-30 07:54:26

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 "ActsExamples/DD4hepDetector/DD4hepDetector.hpp"
0012 
0013 namespace Acts {
0014 class GeometryContext;
0015 }
0016 
0017 namespace ActsExamples {
0018 
0019 class OpenDataDetector final : public DD4hepDetectorBase {
0020  public:
0021   struct Config : public DD4hepDetectorBase::Config {};
0022 
0023   explicit OpenDataDetector(const Config& cfg,
0024                             const Acts::GeometryContext& gctx);
0025 
0026   const Config& config() const override;
0027 
0028  private:
0029   void construct(const Acts::GeometryContext& gctx);
0030 
0031   Config m_cfg;
0032 };
0033 
0034 }  // namespace ActsExamples