From 9b0d27629ae3c4ecae927a4d6e2506ec7ab850b3 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 2 Dec 2011 11:04:26 +1000 Subject: [PATCH] Added Oximetry discard threshold for re-indexer --- daily.cpp | 2 +- docs/channels.xml | 1 + mainwindow.cpp | 6 +++++- preferencesdialog.cpp | 4 ++++ preferencesdialog.ui | 37 ++++++++++++++++++++++++++++++++++++- 5 files changed, 47 insertions(+), 3 deletions(-) diff --git a/daily.cpp b/daily.cpp index 50af63e2..ec0771d2 100644 --- a/daily.cpp +++ b/daily.cpp @@ -683,7 +683,7 @@ void Daily::Load(QDate date) ChannelID chans[]={ CPAP_Pressure,CPAP_EPAP,CPAP_IPAP,CPAP_PS,CPAP_PTB, CPAP_MinuteVent,CPAP_AHI, CPAP_RespRate, CPAP_RespEvent,CPAP_FLG, - CPAP_Leak,CPAP_Snore,CPAP_IE,CPAP_Ti,CPAP_Te, CPAP_TgMV, + CPAP_Leak, CPAP_LeakTotal, CPAP_Snore,CPAP_IE,CPAP_Ti,CPAP_Te, CPAP_TgMV, CPAP_TidalVolume, OXI_Pulse, OXI_SPO2 }; int numchans=sizeof(chans)/sizeof(ChannelID); diff --git a/docs/channels.xml b/docs/channels.xml index e7075658..bef1fddd 100644 --- a/docs/channels.xml +++ b/docs/channels.xml @@ -50,6 +50,7 @@ One id code per item + diff --git a/mainwindow.cpp b/mainwindow.cpp index 5381b0df..d1daf145 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -123,6 +123,7 @@ MainWindow::MainWindow(QWidget *parent) : if (!PROFILE.Exists("PulseChangeBPM")) PROFILE["PulseChangeDuration"]=5; if (!PROFILE.Exists("PulseChangeDuration")) PROFILE["PulseChangeDuration"]=8; if (!PROFILE.Exists("GraphHeight")) PROFILE["GraphHeight"]=180; + if (!PROFILE.Exists("OxiDiscardThreshold")) PROFILE["OxiDiscardThreshold"]=10; //ui->actionUse_AntiAliasing->setChecked(PROFILE["UseAntiAliasing"].toBool()); ui->action_Link_Graph_Groups->setChecked(PROFILE["LinkGroups"].toBool()); @@ -827,6 +828,9 @@ void MainWindow::on_action_Rebuild_Oximetry_Index_triggered() QVector machines=PROFILE.GetMachines(MT_OXIMETER); + bool ok; + int discard_threshold=PROFILE["OxiDiscardThreshold"].toInt(&ok); + if (!ok) discard_threshold=10; Machine *m; for (int z=0;z newlist; for (int i=0;icount() > 1) { + if (e.value()[i]->count() > discard_threshold) { newlist.push_back(e.value()[i]); } else { delete e.value()[i]; diff --git a/preferencesdialog.cpp b/preferencesdialog.cpp index 99017d66..2acaa718 100644 --- a/preferencesdialog.cpp +++ b/preferencesdialog.cpp @@ -114,6 +114,9 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) : v=(*profile)["PulseChangeDuration"].toDouble(&ok); if (!ok) v=5; ui->pulseChangeTime->setValue(v); + v=(*profile)["OxiDiscardThreshold"].toDouble(&ok); + if (!ok) v=10; + ui->oxiDiscardThreshold->setValue(v); QTime t=(*profile)["DaySplitTime"].toTime(); ui->timeEdit->setTime(t); @@ -338,6 +341,7 @@ void PreferencesDialog::Save() (*profile)["SPO2DropDuration"]=ui->spo2DropTime->value(); (*profile)["PulseChangeBPM"]=ui->pulseChange->value(); (*profile)["PulseChangeDuration"]=ui->pulseChangeTime->value(); + (*profile)["OxiDiscardThreshold"]=ui->oxiDiscardThreshold->value(); //PREF["SkipLoginScreen"]=ui->skipLoginScreen->isChecked(); diff --git a/preferencesdialog.ui b/preferencesdialog.ui index f15a86b4..2f724378 100644 --- a/preferencesdialog.ui +++ b/preferencesdialog.ui @@ -38,7 +38,7 @@ - 6 + 4 @@ -711,6 +711,21 @@ Mask History could go here one day true + + 4 + + + 8 + + + 4 + + + 4 + + + 5 + @@ -848,6 +863,26 @@ Mask History could go here one day + + + + Discard chunks under + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + s + + + 300 + + +