Fix AHI, and fix early exit in TAP

This commit is contained in:
Mark Watkins 2014-08-12 05:50:21 +10:00
parent 48a5a106c1
commit 9d809c3e6f

View File

@ -239,7 +239,7 @@ void RecalcMAP::run()
Session * sess = (*sit);
QHash<ChannelID, QVector<EventList *> >::iterator ei = sess->eventlist.find(prescode);
if (ei == sess->eventlist.end())
break;
continue;
const QVector<EventList *> & evec = ei.value();
int esize = evec.size();
@ -318,7 +318,7 @@ skip:
}
chans.push_front(CPAP_AHI);
for (int i=3; i<30; i++) {
for (int i=3; i<=30; i++) {
events[CPAP_AHI].insert(i,events[CPAP_Obstructive][i] + events[CPAP_Hypopnea][i] + events[CPAP_Apnea][i] + events[CPAP_ClearAirway][i]);
}