From cb0ef5594319bb459ea8bea48688e82052b632e2 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 11 Sep 2011 02:30:25 +1000 Subject: [PATCH] Fix AHI problem --- SleepLib/day.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/SleepLib/day.cpp b/SleepLib/day.cpp index d70a2071..3f1ca97f 100644 --- a/SleepLib/day.cpp +++ b/SleepLib/day.cpp @@ -304,9 +304,9 @@ EventDataType Day::cph(ChannelID code) for (int i=0;im_sum.contains(code)) continue; sum+=sessions[i]->count(code); - h+=sessions[i]->hours(); + //h+=sessions[i]->hours(); } - sum/=h; + sum/=hours();; return sum; } @@ -317,8 +317,9 @@ EventDataType Day::sph(ChannelID code) for (int i=0;im_sum.contains(code)) continue; sum+=sessions[i]->sum(code)/3600.0; - h+=sessions[i]->hours(); + //h+=sessions[i]->hours(); } + h=hours(); sum=(100.0/h)*sum; return sum; }