EIC Software
 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 
14 
15 namespace Acts {
16 
22  public:
24  HomogeneousVolumeMaterial() = default;
25 
30 
35 
40 
42  ~HomogeneousVolumeMaterial() override = default;
43 
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 final;
65 
66  private:
68 };
69 
71  const Vector3D& /*position*/) const {
72  return (m_material);
73 }
74 
76  const HomogeneousVolumeMaterial& hvm) const {
77  return (m_material == hvm.m_material);
78 }
79 
80 } // namespace Acts