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
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
HomogeneousVolumeMaterial.hpp
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file HomogeneousVolumeMaterial.hpp
1
// This file is part of the Acts project.
2
//
3
// Copyright (C) 2020 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/Material/IVolumeMaterial.hpp
"
12
#include "
Acts/Material/Material.hpp
"
13
#include "
Acts/Utilities/Definitions.hpp
"
14
15
namespace
Acts {
16
21
class
HomogeneousVolumeMaterial
:
public
IVolumeMaterial
{
22
public
:
24
HomogeneousVolumeMaterial
() =
default
;
25
29
HomogeneousVolumeMaterial
(
const
Material
&
material
);
30
34
HomogeneousVolumeMaterial
(
const
HomogeneousVolumeMaterial
& hvm) =
default
;
35
39
HomogeneousVolumeMaterial
(
HomogeneousVolumeMaterial
&& hvm) =
default
;
40
42
~HomogeneousVolumeMaterial
()
override
=
default
;
43
47
HomogeneousVolumeMaterial
&
operator=
(
const
HomogeneousVolumeMaterial
& hvm) =
48
default
;
49
53
bool
operator==
(
const
HomogeneousVolumeMaterial
& hvm)
const
;
54
59
const
Material
material
(
const
Vector3D
&
/*position*/
)
const
final
;
60
64
std::ostream&
toStream
(std::ostream& sl)
const
;
65
66
private
:
67
Material
m_material
=
Material
();
68
};
69
70
inline
const
Material
HomogeneousVolumeMaterial::material
(
71
const
Vector3D
&
/*position*/
)
const
{
72
return
(
m_material
);
73
}
74
75
inline
bool
HomogeneousVolumeMaterial::operator==
(
76
const
HomogeneousVolumeMaterial
& hvm)
const
{
77
return
(
m_material
== hvm.
m_material
);
78
}
79
80
}
// namespace Acts
acts
blob
master
Core
include
Acts
Material
HomogeneousVolumeMaterial.hpp
Built by
Jin Huang
. updated:
Wed Jun 29 2022 17:24:20
using
1.8.2 with
ECCE GitHub integration