mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Fix AHI, and fix early exit in TAP
This commit is contained in:
parent
48a5a106c1
commit
9d809c3e6f
@ -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]);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user