From a5c0cfa49b5f8ef0ef817ce34c8720fe7407f9cd Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 18 Dec 2011 13:39:15 +1000 Subject: [PATCH] calcs comments, plus fixed mac platform string --- SleepLib/calcs.cpp | 45 ++++++++++++++++++++++++++------------------- version.h | 2 +- 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/SleepLib/calcs.cpp b/SleepLib/calcs.cpp index 621e6397..ab95b6b2 100644 --- a/SleepLib/calcs.cpp +++ b/SleepLib/calcs.cpp @@ -39,6 +39,7 @@ int filterFlow(Session *session, EventList *in, EventList *out, EventList *tv, E //double avg; int i; + // Extra median filter stage /*i=3; stage1[0]=in->data(0); stage1[1]=in->data(1); @@ -86,13 +87,14 @@ int filterFlow(Session *session, EventList *in, EventList *out, EventList *tv, E //i++; //stage2[i]=in->data(i); - float weight=0.6; - //stage2[0]=in->data(0); + +// float weight=0.6; +// stage2[0]=in->data(0); // stage1[0]=stage2[0]; - /* for (int i=1;idata(i); - stage1[i]=weight*stage2[i]+(1.0-weight)*stage1[i-1]; - } */ +// for (int i=1;idata(i); +// stage1[i]=weight*stage2[i]+(1.0-weight)*stage1[i-1]; +// } qint64 time=in->first(); qint64 u1=0,u2=0,len,l1=0,l2=0; @@ -105,46 +107,52 @@ int filterFlow(Session *session, EventList *in, EventList *out, EventList *tv, E QVector breaths_min; QVector breaths_max_peak; QVector breaths_max; - //int lasti=0; - const int ringsize=256; - EventDataType ringmax[ringsize]={0}; - EventDataType ringmin[ringsize]={0}; - qint64 ringtime[ringsize]={0}; - int rpos=0; +// const int ringsize=256; +// EventDataType ringmax[ringsize]={0}; +// EventDataType ringmin[ringsize]={0}; +// qint64 ringtime[ringsize]={0}; +// int rpos=0; EventDataType min=0,max=0; qint64 peakmin=0, peakmax=0; for (i=0;ithresh) { + // Crossing the zero line, going up if (lastc<=thresh) { u2=u1; u1=time; - if (u2>thresh) { + if (u2>0) { z2=i; len=qAbs(u2-u1); - if (tv) { // && z1>0) { // Tidal Volume Calculations + if (tv) { // Tidal Volume Calculations EventDataType t=0; + // looking at only half the waveform for (int g=z1;g=max) { max=c; peakmax=time+rate; } - } } else { + // Crossing the zero line, going down if (lastc>thresh) { l2=l1; l1=time; @@ -163,12 +171,14 @@ int filterFlow(Session *session, EventList *in, EventList *out, EventList *tv, E // TV[ts]=(TV[ts]+t)/2.0; } } + // keep previously calculated positive peak breaths_max_peak.push_back(peakmax); breaths_max.push_back(max); min=0; } } else { + // Find the negative peak if (c<=min) { min=c; peakmin=time; @@ -354,14 +364,11 @@ int calcRespRate(Session *session) rr=new EventList(EVL_Event); } else rr=NULL; - if (!rr & !tv & !mv) return 0; + if (!rr && !tv && !mv) return 0; // don't bother, but flagging won't run either.. if (rr) session->eventlist[CPAP_RespRate].push_back(rr); if (tv) session->eventlist[CPAP_TidalVolume].push_back(tv); if (mv) session->eventlist[CPAP_MinuteVent].push_back(mv); - //uf2=new EventList(EVL_Event,1,0,0,0,0,true); - //session->eventlist["UserFlag2"].push_back(uf2); - int cnt=0; for (int ws=0; ws < session->eventlist[CPAP_FlowRate].size(); ws++) { flow=session->eventlist[CPAP_FlowRate][ws]; diff --git a/version.h b/version.h index d5a66cf4..f0dc1cfd 100644 --- a/version.h +++ b/version.h @@ -10,7 +10,7 @@ const int revision_number=8; inline QString VersionString() { return QString().sprintf("%i.%i.%i",major_version,minor_version,revision_number); } #ifdef Q_WS_MAC - const QString PlatformString="Mac"; + const QString PlatformString="MacOSX"; #elif defined(Q_WS_WIN32) const QString PlatformString="Win32"; #elif defined(Q_WS_X11)