File indexing completed on 2025-12-16 09:41:49
0001
0002
0003
0004
0005
0006
0007
0008
0009 #pragma once
0010
0011 #include <system_error>
0012 #include <type_traits>
0013
0014 namespace ActsFatras {
0015
0016 enum class DigitizationError {
0017
0018 SmearingOutOfRange = 1,
0019 SmearingError,
0020 UndefinedSurface,
0021 MaskingError,
0022 MaximumRetriesExceeded,
0023 };
0024
0025 std::error_code make_error_code(DigitizationError e);
0026
0027 }
0028
0029 namespace std {
0030
0031 template <>
0032 struct is_error_code_enum<ActsFatras::DigitizationError> : std::true_type {};
0033 }