File indexing completed on 2025-01-18 09:28:05
0001
0002
0003 #ifndef ACTSPODIOEDM_Surface_H
0004 #define ACTSPODIOEDM_Surface_H
0005
0006 #include <array>
0007 #include <cstdint>
0008 #include <ostream>
0009
0010 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0011 #include "nlohmann/json_fwd.hpp"
0012 #endif
0013
0014 namespace ActsPodioEdm {
0015
0016
0017
0018
0019
0020 class Surface {
0021 public:
0022 int surfaceType{};
0023 int boundsType{};
0024 std::uint64_t geometryId{};
0025 std::uint64_t identifier{};
0026 std::array<double, 10> boundValues{};
0027 std::uint32_t boundValuesSize{};
0028 std::array<double, 16> transform{};
0029 };
0030
0031 std::ostream& operator<<(std::ostream& o, const ActsPodioEdm::Surface& value);
0032
0033 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0034 void to_json(nlohmann::json& j, const Surface& value);
0035 #endif
0036
0037 }
0038
0039 #endif