File indexing completed on 2025-02-22 09:33:49
0001
0002
0003
0004
0005
0006
0007
0008
0009 #include "Acts/Geometry/VolumeResizeStrategy.hpp"
0010
0011 namespace Acts {
0012
0013 std::ostream& operator<<(std::ostream& os, VolumeResizeStrategy strategy) {
0014 switch (strategy) {
0015 case VolumeResizeStrategy::Expand:
0016 os << "Expand";
0017 break;
0018 case VolumeResizeStrategy::Gap:
0019 os << "Gap";
0020 break;
0021 default:
0022 os << "Unknown";
0023 break;
0024 }
0025 return os;
0026 }
0027
0028 }