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
0021 class Surface {
0022 public:
0023 int surfaceType{};
0024 int boundsType{};
0025 std::uint64_t geometryId{};
0026 std::uint64_t identifier{};
0027 std::array<double, 10> boundValues{};
0028 std::uint32_t boundValuesSize{};
0029 std::array<double, 16> transform{};
0030
0031
0032 };
0033
0034 std::ostream& operator<<(std::ostream& o, const Surface& value);
0035
0036 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0037 void to_json(nlohmann::json& j, const Surface& value);
0038 #endif
0039
0040 namespace v850 {
0041 using Surface = edm4eic::Surface;
0042 }
0043
0044
0045 }
0046
0047
0048 #endif