File indexing completed on 2025-01-18 09:28:05
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,
0026 const ActsPodioEdm::BoundParametersInfo& value);
0027
0028 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0029 void to_json(nlohmann::json& j, const BoundParametersInfo& value);
0030 #endif
0031
0032 }
0033
0034 #endif