From 068658910da8586c903b323ad1ac75850c57df5d Mon Sep 17 00:00:00 2001 From: Adam Wegrzynek Date: Thu, 7 Jan 2021 11:59:31 +0100 Subject: [PATCH] Add Analysis tag value (#220) --- include/Monitoring/Tags.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/include/Monitoring/Tags.h b/include/Monitoring/Tags.h index 07b01ac3e..5c3d8e046 100644 --- a/include/Monitoring/Tags.h +++ b/include/Monitoring/Tags.h @@ -106,11 +106,12 @@ enum class Value : unsigned short int { PerRun, // 35 Monitoring, // 36 CRORC, // 37 - ACO // 38 + ACO, // 38 + Analysis // 39 }; // Tag value array -static constexpr std::array TAG_VALUE = {{ +static constexpr std::array TAG_VALUE = {{ "Null"sv, "AD"sv, // 1 "CPV"sv, // 2 @@ -149,7 +150,8 @@ static constexpr std::array TAG_VALUE = {{ "prun"sv, // 35 "monitoring"sv, // 36 "CRORC"sv, // 37 - "ACO"sv // 38 + "ACO"sv, // 38 + "Analysis"sv // 39 }}; static constexpr std::string_view GetValue(const int value)