mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Use 99% instead of 99.5% alternative 'Max' percentile to better match ResScan
This commit is contained in:
parent
b2fa54a4dc
commit
e0bd14bc2f
@ -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)
|
||||
{
|
||||
|
@ -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;
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user