Branch data Line data Source code
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 : : 11 : : /** 12 : : * Generated file 13 : : * @file 14 : : * 15 : : * Generator Version : 11.0.0-1997 16 : : */ 17 : : 18 : : #pragma once 19 : : 20 : : #include <cmath> 21 : : #include <limits> 22 : : #include "ad/physics/DistanceValidInputRange.hpp" 23 : : #include "ad/rss/state/RssStateEvaluatorValidInputRange.hpp" 24 : : #include "ad/rss/state/RssStateInformation.hpp" 25 : : #include "spdlog/fmt/ostr.h" 26 : : #include "spdlog/spdlog.h" 27 : : 28 : : /*! 29 : : * \brief check if the given RssStateInformation is within valid input range 30 : : * 31 : : * \param[in] input the RssStateInformation as an input value 32 : : * \param[in] logErrors enables error logging 33 : : * 34 : : * \returns \c true if RssStateInformation is considered to be within the specified input range 35 : : * 36 : : * \note the specified input range is defined by the ranges of all members 37 : : */ 38 : 16752 : inline bool withinValidInputRange(::ad::rss::state::RssStateInformation const &input, bool const logErrors = true) 39 : : { 40 : : // check for generic member input ranges 41 : 16752 : bool inValidInputRange = true; 42 : 16752 : inValidInputRange = withinValidInputRange(input.safeDistance, logErrors) 43 [ + + + + : 16752 : && withinValidInputRange(input.currentDistance, logErrors) && withinValidInputRange(input.evaluator, logErrors); + + ] 44 [ + + + - ]: 16752 : if (!inValidInputRange && logErrors) 45 : : { 46 [ + - ]: 12 : spdlog::error("withinValidInputRange(::ad::rss::state::RssStateInformation)>> {} has invalid member", 47 : : input); // LCOV_EXCL_BR_LINE 48 : : } 49 : : 50 : 16752 : return inValidInputRange; 51 : : }