File indexing completed on 2025-10-30 07:54:26
0001
0002
0003
0004
0005
0006
0007
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 }