File indexing completed on 2025-08-05 08:09:38
0001
0002
0003
0004
0005
0006
0007
0008
0009 #include "Acts/Material/HomogeneousVolumeMaterial.hpp"
0010
0011 #include "Acts/Material/Material.hpp"
0012
0013 #include <ostream>
0014
0015 Acts::HomogeneousVolumeMaterial::HomogeneousVolumeMaterial(
0016 const Material& material)
0017 : m_material(material) {}
0018
0019 std::ostream& Acts::HomogeneousVolumeMaterial::toStream(
0020 std::ostream& sl) const {
0021 sl << "Acts::HomogeneousVolumeMaterial : " << std::endl;
0022 sl << " - material : " << m_material << std::endl;
0023 return sl;
0024 }