Skip to content

Commit

Permalink
Add Analysis tag value (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
awegrzyn authored Jan 7, 2021
1 parent 9d1cf8b commit 0686589
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions include/Monitoring/Tags.h
Original file line number Diff line number Diff line change
Expand Up @@ -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<std::string_view, 39> TAG_VALUE = {{
static constexpr std::array<std::string_view, 40> TAG_VALUE = {{
"Null"sv,
"AD"sv, // 1
"CPV"sv, // 2
Expand Down Expand Up @@ -149,7 +150,8 @@ static constexpr std::array<std::string_view, 39> 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)
Expand Down

0 comments on commit 0686589

Please sign in to comment.