Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-03-29 07:57:52

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
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 /** @class Surface
0017  *
0018  *  @author:
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 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 namespace v1 {
0038 using Surface = ActsPodioEdm::Surface;
0039 }  // namespace v1
0040 
0041 }  // namespace ActsPodioEdm
0042 
0043 #endif