EIC Software
Reference for
EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
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
11
#include "
Acts/Geometry/GeometryIdentifier.hpp
"
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
34
class
IMaterialWriter
{
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
acts
blob
sPHENIX
Examples
Algorithms
MaterialMapping
include
ActsExamples
MaterialMapping
IMaterialWriter.hpp
Built by
Jin Huang
. updated:
Mon Jan 22 2024 12:43:24
using
1.8.2 with
EIC GitHub integration