EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
IMaterialWriter.hpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file IMaterialWriter.hpp
1 // This file is part of the Acts project.
2 //
3 // Copyright (C) 2019 CERN for the benefit of the Acts project
4 //
5 // This Source Code Form is subject to the terms of the Mozilla Public
6 // License, v. 2.0. If a copy of the MPL was not distributed with this
7 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 
9 #pragma once
10 
12 
13 #include <map>
14 
15 namespace Acts {
16 
17 class ISurfaceMaterial;
18 class IVolumeMaterial;
19 
20 using SurfaceMaterialMap =
21  std::map<GeometryIdentifier, std::shared_ptr<const ISurfaceMaterial>>;
22 
23 using VolumeMaterialMap =
24  std::map<GeometryIdentifier, std::shared_ptr<const IVolumeMaterial>>;
25 
26 using DetectorMaterialMaps = std::pair<SurfaceMaterialMap, VolumeMaterialMap>;
27 } // namespace Acts
28 
29 namespace ActsExamples {
30 
35  public:
37  virtual ~IMaterialWriter() = default;
38 
42  virtual void writeMaterial(const Acts::DetectorMaterialMaps& detMaterial) = 0;
43 };
44 
48 template <typename writer_t>
49 class MaterialWriterT : virtual public IMaterialWriter {
50  public:
56  MaterialWriterT(writer_t impl) : m_impl(std::move(impl)) {}
57 
61  void writeMaterial(const Acts::DetectorMaterialMaps& detMaterial) {
62  m_impl.write(detMaterial);
63  }
64 
65  private:
67  writer_t m_impl;
68 };
69 } // namespace ActsExamples