From a30f27dcfc3f9fae7b734ef5a2b70ecfdd64d224 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 9 Jan 2012 14:21:04 +1000 Subject: [PATCH] Increased buffer sample size, Calculate all RR/Tv/MV if one of them missing --- SleepLib/calcs.cpp | 26 +++++++++++++++++++++++++- SleepLib/calcs.h | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/SleepLib/calcs.cpp b/SleepLib/calcs.cpp index db9998bb..524dab6e 100644 --- a/SleepLib/calcs.cpp +++ b/SleepLib/calcs.cpp @@ -919,6 +919,30 @@ void calcRespRate(Session *session, FlowParser * flowparser) bool calcTe=!session->eventlist.contains(CPAP_Te); bool calcMv=!session->eventlist.contains(CPAP_MinuteVent); + + // If any of these three missing, remove all, and switch all on + if (!(calcResp & calcTv & calcMv)) { + calcTv=calcMv=calcResp=true; + + QVector & list=session->eventlist[CPAP_RespRate]; + for (int i=0;ieventlist[CPAP_RespRate].clear(); + + QVector & list2=session->eventlist[CPAP_TidalVolume]; + for (int i=0;ieventlist[CPAP_TidalVolume].clear(); + + QVector & list3=session->eventlist[CPAP_MinuteVent]; + for (int i=0;ieventlist[CPAP_MinuteVent].clear(); + } + flowparser->clearFilters(); // No filters works rather well with the new peak detection algorithm.. @@ -931,7 +955,7 @@ void calcRespRate(Session *session, FlowParser * flowparser) int cnt=0; for (int ws=0; ws < session->eventlist[CPAP_FlowRate].size(); ws++) { flow=session->eventlist[CPAP_FlowRate][ws]; - if (flow->count() > 5) { + if (flow->count() > 20) { flowparser->openFlow(session, flow); flowparser->calc(calcResp, calcTv, calcTi ,calcTe, calcMv); } diff --git a/SleepLib/calcs.h b/SleepLib/calcs.h index 39fc40b9..ae72e479 100644 --- a/SleepLib/calcs.h +++ b/SleepLib/calcs.h @@ -79,7 +79,7 @@ bool operator<(const BreathPeak & p1, const BreathPeak & p2); const int num_filter_buffers=2; -const int max_filter_buf_size=1048576*4; +const int max_filter_buf_size=2097152*sizeof(EventDataType); //! \brief Class to process Flow Rate waveform data class FlowParser {