mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-09 20:50:43 +00:00
Correct percentile calculation for multiple days
- Previously, would stop and return 0 if any day in range was suumary only - Now, just ignores summary-only days if there are days with data - Re-indentation makes change look bigger than it is
This commit is contained in:
parent
555639e78b
commit
6406545c33
@ -1724,69 +1724,70 @@ EventDataType Profile::calcPercentile(ChannelID code, EventDataType percent, Mac
|
||||
|
||||
qint64 SN = 0;
|
||||
bool timeweight;
|
||||
bool summaryOnly = false;
|
||||
|
||||
bool summaryOnly = true;
|
||||
do {
|
||||
Day *day = GetGoodDay(date, mt);
|
||||
|
||||
if (day) {
|
||||
if (day->summaryOnly()) {
|
||||
summaryOnly = true;
|
||||
break;
|
||||
date = date.addDays(1);
|
||||
continue;
|
||||
}
|
||||
|
||||
summaryOnly = false;
|
||||
|
||||
// why was this nested like this???
|
||||
//for (int i = 0; i < day->size(); i++) {
|
||||
for (auto & sess : day->sessions) {
|
||||
if (!sess->enabled()) {
|
||||
continue;
|
||||
}
|
||||
for (auto & sess : day->sessions) {
|
||||
if (!sess->enabled()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
gain = sess->m_gain[code];
|
||||
gain = sess->m_gain[code];
|
||||
|
||||
if (!gain) { gain = 1; }
|
||||
if (!gain) { gain = 1; }
|
||||
|
||||
vsi = sess->m_valuesummary.find(code);
|
||||
vsi = sess->m_valuesummary.find(code);
|
||||
|
||||
if (vsi == sess->m_valuesummary.end()) { continue; }
|
||||
if (vsi == sess->m_valuesummary.end()) { continue; }
|
||||
|
||||
tsi = sess->m_timesummary.find(code);
|
||||
timeweight = (tsi != sess->m_timesummary.end());
|
||||
tsi = sess->m_timesummary.find(code);
|
||||
timeweight = (tsi != sess->m_timesummary.end());
|
||||
|
||||
QHash<EventStoreType, EventStoreType> &vsum = vsi.value();
|
||||
QHash<EventStoreType, quint32> &tsum = tsi.value();
|
||||
QHash<EventStoreType, EventStoreType> &vsum = vsi.value();
|
||||
QHash<EventStoreType, quint32> &tsum = tsi.value();
|
||||
|
||||
if (timeweight) {
|
||||
for (auto k=tsum.begin(), tsumend=tsum.end(); k != tsumend; k++) {
|
||||
weight = k.value();
|
||||
value = EventDataType(k.key()) * gain;
|
||||
if (timeweight) {
|
||||
for (auto k=tsum.begin(), tsumend=tsum.end(); k != tsumend; k++) {
|
||||
weight = k.value();
|
||||
value = EventDataType(k.key()) * gain;
|
||||
|
||||
SN += weight;
|
||||
wmi = wmap.find(value);
|
||||
SN += weight;
|
||||
wmi = wmap.find(value);
|
||||
|
||||
if (wmi == wmap.end()) {
|
||||
wmap[value] = weight;
|
||||
} else {
|
||||
wmi.value() += weight;
|
||||
}
|
||||
if (wmi == wmap.end()) {
|
||||
wmap[value] = weight;
|
||||
} else {
|
||||
wmi.value() += weight;
|
||||
}
|
||||
} else {
|
||||
for (auto k=vsum.begin(), vsumend=vsum.end(); k!=vsumend; k++) {
|
||||
weight = k.value();
|
||||
value = EventDataType(k.key()) * gain;
|
||||
}
|
||||
} else {
|
||||
for (auto k=vsum.begin(), vsumend=vsum.end(); k!=vsumend; k++) {
|
||||
weight = k.value();
|
||||
value = EventDataType(k.key()) * gain;
|
||||
|
||||
SN += weight;
|
||||
wmi = wmap.find(value);
|
||||
SN += weight;
|
||||
wmi = wmap.find(value);
|
||||
|
||||
if (wmi == wmap.end()) {
|
||||
wmap[value] = weight;
|
||||
} else {
|
||||
wmi.value() += weight;
|
||||
}
|
||||
if (wmi == wmap.end()) {
|
||||
wmap[value] = weight;
|
||||
} else {
|
||||
wmi.value() += weight;
|
||||
}
|
||||
}
|
||||
}
|
||||
// }
|
||||
}
|
||||
// }
|
||||
}
|
||||
|
||||
date = date.addDays(1);
|
||||
|
Loading…
Reference in New Issue
Block a user