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/rss/state/LongitudinalResponseValidInputRange.hpp" 23 : : #include "ad/rss/state/LongitudinalRssState.hpp" 24 : : #include "ad/rss/state/RssStateInformationValidInputRange.hpp" 25 : : #include "ad/rss/world/LongitudinalRssAccelerationValuesValidInputRange.hpp" 26 : : #include "spdlog/fmt/ostr.h" 27 : : #include "spdlog/spdlog.h" 28 : : 29 : : /*! 30 : : * \brief check if the given LongitudinalRssState is within valid input range 31 : : * 32 : : * \param[in] input the LongitudinalRssState as an input value 33 : : * \param[in] logErrors enables error logging 34 : : * 35 : : * \returns \c true if LongitudinalRssState is considered to be within the specified input range 36 : : * 37 : : * \note the specified input range is defined by the ranges of all members 38 : : */ 39 : 6591 : inline bool withinValidInputRange(::ad::rss::state::LongitudinalRssState const &input, bool const logErrors = true) 40 : : { 41 : : // check for generic member input ranges 42 : 6591 : bool inValidInputRange = true; 43 : 6591 : inValidInputRange = withinValidInputRange(input.response, logErrors) 44 [ + + + + : 6591 : && withinValidInputRange(input.alphaLon, logErrors) && withinValidInputRange(input.rssStateInformation, logErrors); + + ] 45 [ + + + - ]: 6591 : if (!inValidInputRange && logErrors) 46 : : { 47 [ + - ]: 1009 : spdlog::error("withinValidInputRange(::ad::rss::state::LongitudinalRssState)>> {} has invalid member", 48 : : input); // LCOV_EXCL_BR_LINE 49 : : } 50 : : 51 : 6591 : return inValidInputRange; 52 : : }