File indexing completed on 2025-12-07 09:24:17
0001
0002
0003 #ifndef ACTSPODIOEDM_BoundParametersInfo_H
0004 #define ACTSPODIOEDM_BoundParametersInfo_H
0005
0006 #include <array>
0007 #include <ostream>
0008
0009 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0010 #include "nlohmann/json_fwd.hpp"
0011 #endif
0012
0013 namespace ActsPodioEdm {
0014
0015
0016
0017
0018
0019 class BoundParametersInfo {
0020 public:
0021 std::array<double, 6> values{};
0022 std::array<double, 36> covariance{};
0023 };
0024
0025 std::ostream& operator<<(std::ostream& o, const BoundParametersInfo& value);
0026
0027 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0028 void to_json(nlohmann::json& j, const BoundParametersInfo& value);
0029 #endif
0030
0031 namespace v1 {
0032 using BoundParametersInfo = ActsPodioEdm::BoundParametersInfo;
0033 }
0034
0035 }
0036
0037 #endif