Warning, file /include/edm4eic/Surface.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003 #ifndef EDM4EIC_Surface_H
0004 #define EDM4EIC_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 edm4eic {
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 };
0032
0033 std::ostream& operator<<(std::ostream& o, const edm4eic::Surface& value);
0034
0035 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0036 void to_json(nlohmann::json& j, const Surface& value);
0037 #endif
0038
0039 }
0040
0041
0042 #endif