本文整理汇总了C++中Temperature::getTemperature方法的典型用法代码示例。如果您正苦于以下问题:C++ Temperature::getTemperature方法的具体用法?C++ Temperature::getTemperature怎么用?C++ Temperature::getTemperature使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Temperature
的用法示例。
在下文中一共展示了Temperature::getTemperature方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: findTripPointCrossed
UIntN ActivePolicy::findTripPointCrossed(SpecificInfo& tripPoints, const Temperature& temperature)
{
auto trips = tripPoints.getSortedByKey();
for (UIntN index = 0; index < trips.size(); index++)
{
if (temperature.getTemperature() >= trips[index].second)
{
UIntN acIndex = trips[index].first - ParticipantSpecificInfoKey::AC0;
return acIndex;
}
}
return Constants::Invalid;
}
示例2: determineUpperTemperatureThreshold
UIntN ActivePolicy::determineUpperTemperatureThreshold(const Temperature& currentTemperature, SpecificInfo& tripPoints) const
{
auto trips = tripPoints.getSortedByKey();
UIntN upperTemperatureThreshold = Constants::Invalid;
for (UIntN ac = 0; ac < trips.size(); ++ac)
{
if ((currentTemperature.getTemperature() < trips[ac].second) &&
(trips[ac].second != Constants::Invalid))
{
upperTemperatureThreshold = trips[ac].second;
}
}
return upperTemperatureThreshold;
}
示例3: determineLowerTemperatureThreshold
UIntN ActivePolicy::determineLowerTemperatureThreshold(const Temperature& currentTemperature, SpecificInfo& tripPoints) const
{
auto trips = tripPoints.getSortedByKey();
UIntN lowerTemperatureThreshold = Constants::Invalid;
for (UIntN ac = 0; ac < trips.size(); ++ac)
{
if (currentTemperature.getTemperature() >= trips[ac].second)
{
lowerTemperatureThreshold = trips[ac].second;
break;
}
}
return lowerTemperatureThreshold;
}
示例4: catch
void ParticipantGetSpecificInfo_001::RequestPrimitiveTemperatureAndAddToMap(esif_primitive_type primitive,
ParticipantSpecificInfoKey::Type key, std::map<ParticipantSpecificInfoKey::Type, UIntN>& resultMap,
UIntN instance)
{
try
{
Temperature temp = m_participantServicesInterface->primitiveExecuteGetAsTemperatureC(primitive,
Constants::Esif::NoDomain, static_cast<UInt8>(instance));
resultMap.insert(std::pair<ParticipantSpecificInfoKey::Type, UIntN>(key, temp.getTemperature()));
}
catch (...)
{
// if the primitive isn't available we receive an exception and we don't add this item to the map
}
}