From e0bd14bc2f84d3b10bf5aeb0b664901375dca5f3 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 4 Mar 2016 10:35:51 +1000 Subject: [PATCH] Use 99% instead of 99.5% alternative 'Max' percentile to better match ResScan --- sleepyhead/SleepLib/day.cpp | 2 +- sleepyhead/daily.cpp | 2 +- sleepyhead/overview.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sleepyhead/SleepLib/day.cpp b/sleepyhead/SleepLib/day.cpp index 3a3b4361..9ab58b98 100644 --- a/sleepyhead/SleepLib/day.cpp +++ b/sleepyhead/SleepLib/day.cpp @@ -136,7 +136,7 @@ EventDataType Day::calcMiddle(ChannelID code) } EventDataType Day::calcMax(ChannelID code) { - return p_profile->general->prefCalcMax() ? percentile(code, 0.995f) : Max(code); + return p_profile->general->prefCalcMax() ? percentile(code, 0.99f) : Max(code); } EventDataType Day::calcPercentile(ChannelID code) { diff --git a/sleepyhead/daily.cpp b/sleepyhead/daily.cpp index 7c2913fd..b921d21d 100644 --- a/sleepyhead/daily.cpp +++ b/sleepyhead/daily.cpp @@ -1173,7 +1173,7 @@ QString Daily::getStatisticsInfo(Day * day) float percentile=p_profile->general->prefCalcPercentile()/100.0; SummaryType ST_max=p_profile->general->prefCalcMax() ? ST_PERC : ST_MAX; - const EventDataType maxperc=0.995F; + const EventDataType maxperc=0.99F; QString midname; if (ST_mid==ST_WAVG) midname=STR_TR_WAvg; diff --git a/sleepyhead/overview.cpp b/sleepyhead/overview.cpp index e336cc3b..a7074e2e 100644 --- a/sleepyhead/overview.cpp +++ b/sleepyhead/overview.cpp @@ -137,7 +137,7 @@ Overview::Overview(QWidget *parent, gGraphView *shared) : if (mididx == 2) { ST_mid = ST_AVG; } SummaryType ST_max = p_profile->general->prefCalcMax() ? ST_PERC : ST_MAX; - const EventDataType maxperc = 0.995F; + const EventDataType maxperc = 0.99F; US = createGraph(STR_GRAPH_SessionTimes, tr("Session Times"), tr("Session Times\n(hours)"), YT_Time); SET = createGraph("Settings", STR_TR_Settings, STR_TR_Settings);