ECCE @ EIC Software
Reference for
ECCE @ EIC
simulation and reconstruction software on GitHub
Home page
Related Pages
Modules
Namespaces
Classes
Files
External Links
File List
File Members
ECCE @ EIC Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
blob
master
CI
Core
doc
Examples
Algorithms
DD4hepG4
Digitization
Fatras
Fitting
Geant4
Generators
GeneratorsPythia8
MaterialMapping
include
ACTFW
MaterialMapping
GeantinoRecording.hpp
IMaterialWriter.hpp
MaterialMapping.hpp
MaterialMappingOptions.hpp
src
Printers
Propagation
TruthTracking
Vertexing
Detectors
Framework
Io
Run
Scripts
Fatras
Plugins
Tests
thirdparty
analysis
coresoftware
Doxygen_Assist
ecce-detectors
fun4all_eicdetectors
geant4
macros
online_distribution
tutorials
doxygen_mainpage.h
File Members
External Links
•
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 <map>
12
13
#include "
Acts/Geometry/GeometryID.hpp
"
14
15
namespace
Acts {
16
17
class
ISurfaceMaterial;
18
class
IVolumeMaterial;
19
20
using
SurfaceMaterialMap
=
21
std::map<GeometryID, std::shared_ptr<const ISurfaceMaterial>>;
22
23
using
VolumeMaterialMap
=
24
std::map<GeometryID, std::shared_ptr<const IVolumeMaterial>>;
25
26
using
DetectorMaterialMaps
= std::pair<SurfaceMaterialMap, VolumeMaterialMap>;
27
}
// namespace Acts
28
29
namespace
FW {
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 FW
acts
blob
master
Examples
Algorithms
MaterialMapping
include
ACTFW
MaterialMapping
IMaterialWriter.hpp
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:23
using
1.8.2 with
ECCE GitHub integration