File indexing completed on 2025-11-08 09:18:01
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include "Acts/Definitions/Algebra.hpp"
0012 #include "Acts/Definitions/Common.hpp"
0013 #include "Acts/Definitions/Direction.hpp"
0014 #include "Acts/Material/MaterialSlab.hpp"
0015
0016 #include <sstream>
0017
0018 namespace Acts {
0019
0020
0021 enum MappingType { PreMapping = -1, Default = 0, PostMapping = 1, Sensor = 2 };
0022
0023
0024
0025
0026
0027
0028
0029
0030 class ISurfaceMaterial {
0031 public:
0032
0033 ISurfaceMaterial() = default;
0034
0035
0036
0037
0038 explicit ISurfaceMaterial(double splitFactor) : m_splitFactor(splitFactor) {}
0039
0040
0041
0042
0043
0044 explicit ISurfaceMaterial(double splitFactor, Acts::MappingType mappingType)
0045 : m_splitFactor(splitFactor), m_mappingType(mappingType) {}
0046
0047
0048 virtual ~ISurfaceMaterial() = default;
0049
0050
0051
0052
0053
0054 virtual ISurfaceMaterial& scale(double factor) = 0;
0055
0056
0057
0058
0059
0060
0061
0062 virtual const MaterialSlab& materialSlab(const Vector2& lp) const = 0;
0063
0064
0065
0066
0067
0068
0069
0070 virtual const MaterialSlab& materialSlab(const Vector3& gp) const = 0;
0071
0072
0073
0074
0075
0076
0077 double factor(Direction pDir, MaterialUpdateStage mStage) const;
0078
0079
0080
0081
0082 MappingType mappingType() const { return m_mappingType; }
0083
0084
0085
0086
0087
0088
0089
0090
0091
0092 MaterialSlab materialSlab(const Vector2& lp, Direction pDir,
0093 MaterialUpdateStage mStage) const;
0094
0095
0096
0097
0098
0099
0100
0101
0102
0103 MaterialSlab materialSlab(const Vector3& gp, Direction pDir,
0104 MaterialUpdateStage mStage) const;
0105
0106
0107
0108
0109
0110
0111
0112 friend std::ostream& operator<<(std::ostream& out,
0113 const ISurfaceMaterial& sm) {
0114 sm.toStream(out);
0115 return out;
0116 }
0117
0118
0119
0120
0121 virtual std::ostream& toStream(std::ostream& sl) const = 0;
0122
0123
0124
0125
0126 std::string toString() const {
0127 std::stringstream sstrm;
0128 toStream(sstrm);
0129 return sstrm.str();
0130 }
0131
0132 protected:
0133
0134 double m_splitFactor{1.};
0135
0136
0137 MappingType m_mappingType{Acts::MappingType::Default};
0138 };
0139
0140 inline double ISurfaceMaterial::factor(Direction pDir,
0141 MaterialUpdateStage mStage) const {
0142 if (mStage == Acts::MaterialUpdateStage::FullUpdate) {
0143 return 1.;
0144 } else if (mStage == Acts::MaterialUpdateStage::PreUpdate) {
0145 return pDir == Direction::Negative() ? m_splitFactor : 1 - m_splitFactor;
0146 } else {
0147 return pDir == Direction::Positive() ? m_splitFactor : 1 - m_splitFactor;
0148 }
0149 }
0150
0151 inline MaterialSlab ISurfaceMaterial::materialSlab(
0152 const Vector2& lp, Direction pDir, MaterialUpdateStage mStage) const {
0153
0154 MaterialSlab plainMatProp = materialSlab(lp);
0155
0156 if (!plainMatProp.isVacuum()) {
0157 double scaleFactor = factor(pDir, mStage);
0158 if (scaleFactor == 0.) {
0159 return MaterialSlab::Nothing();
0160 }
0161 plainMatProp.scaleThickness(scaleFactor);
0162 }
0163 return plainMatProp;
0164 }
0165
0166 inline MaterialSlab ISurfaceMaterial::materialSlab(
0167 const Vector3& gp, Direction pDir, MaterialUpdateStage mStage) const {
0168
0169 MaterialSlab plainMatProp = materialSlab(gp);
0170
0171 if (!plainMatProp.isVacuum()) {
0172 double scaleFactor = factor(pDir, mStage);
0173 if (scaleFactor == 0.) {
0174 return MaterialSlab::Nothing();
0175 }
0176 plainMatProp.scaleThickness(scaleFactor);
0177 }
0178 return plainMatProp;
0179 }
0180
0181 }