ad_rss
LateralRelativePositionValidInputRange.hpp
Go to the documentation of this file.
1 /*
2  * ----------------- BEGIN LICENSE BLOCK ---------------------------------
3  *
4  * Copyright (C) 2018-2020 Intel Corporation
5  *
6  * SPDX-License-Identifier: LGPL-2.1-only
7  *
8  * ----------------- END LICENSE BLOCK -----------------------------------
9  */
10 
18 #pragma once
19 
20 #include <cmath>
21 #include <limits>
23 #include "spdlog/fmt/ostr.h"
24 #include "spdlog/spdlog.h"
25 
37  bool const logErrors = true)
38 {
39  bool inValidInputRange = (input == ::ad::rss::situation::LateralRelativePosition::AtLeft)
41  || (input == ::ad::rss::situation::LateralRelativePosition::Overlap)
43  || (input == ::ad::rss::situation::LateralRelativePosition::AtRight);
44  if (!inValidInputRange && logErrors)
45  {
46  spdlog::error("withinValidInputRange(::ad::rss::situation::LateralRelativePosition)>> {}, raw value: {} ",
47  input,
48  static_cast<int32_t>(input)); // LCOV_EXCL_BR_LINE
49  }
50  return inValidInputRange;
51 }
ad::rss::situation::LateralRelativePosition::OverlapLeft
@ OverlapLeft
withinValidInputRange
bool withinValidInputRange(::ad::rss::situation::LateralRelativePosition const &input, bool const logErrors=true)
check if the given LateralRelativePosition is within valid input range
Definition: LateralRelativePositionValidInputRange.hpp:36
ad::rss::situation::LateralRelativePosition::OverlapRight
@ OverlapRight
ad::rss::situation::LateralRelativePosition
LateralRelativePosition
DataType LateralRelativePosition.
Definition: LateralRelativePosition.hpp:42
LateralRelativePosition.hpp