mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
File dialog fixes, Weighted average fix
This commit is contained in:
parent
10c282a1f5
commit
6cb33f3293
@ -134,7 +134,7 @@ void SummaryChart::SetDay(Day * nullday)
|
|||||||
day->settingExists(code) ||
|
day->settingExists(code) ||
|
||||||
day->hasData(code,type);
|
day->hasData(code,type);
|
||||||
|
|
||||||
if (code==CPAP_RespRate) {
|
if (code==CPAP_AHI) {
|
||||||
int i=5;
|
int i=5;
|
||||||
}
|
}
|
||||||
if (hascode) {
|
if (hascode) {
|
||||||
|
@ -437,6 +437,10 @@ EventDataType calcAHI(Session *session,qint64 start, qint64 end)
|
|||||||
|
|
||||||
int calcAHIGraph(Session *session)
|
int calcAHIGraph(Session *session)
|
||||||
{
|
{
|
||||||
|
const qint64 window_size=3600000L;
|
||||||
|
const qint64 window_step=30000; // 30 second windows
|
||||||
|
|
||||||
|
|
||||||
if (session->machine()->GetType()!=MT_CPAP) return 0;
|
if (session->machine()->GetType()!=MT_CPAP) return 0;
|
||||||
if (session->eventlist.contains(CPAP_AHI)) return 0; // abort if already there
|
if (session->eventlist.contains(CPAP_AHI)) return 0; // abort if already there
|
||||||
|
|
||||||
@ -445,8 +449,6 @@ int calcAHIGraph(Session *session)
|
|||||||
!session->channelExists(CPAP_Apnea) &&
|
!session->channelExists(CPAP_Apnea) &&
|
||||||
!session->channelExists(CPAP_ClearAirway)) return 0;
|
!session->channelExists(CPAP_ClearAirway)) return 0;
|
||||||
|
|
||||||
const qint64 winsize=30000; // 30 second windows
|
|
||||||
|
|
||||||
qint64 first=session->first(),
|
qint64 first=session->first(),
|
||||||
last=session->last(),
|
last=session->last(),
|
||||||
f;
|
f;
|
||||||
@ -457,17 +459,23 @@ int calcAHIGraph(Session *session)
|
|||||||
EventDataType ahi;
|
EventDataType ahi;
|
||||||
|
|
||||||
qint64 ti;
|
qint64 ti;
|
||||||
for (ti=first;ti<last;ti+=winsize) {
|
double avg=0;
|
||||||
f=ti-3600000L;
|
int cnt=0;
|
||||||
|
for (ti=first;ti<last;ti+=window_step) {
|
||||||
|
f=ti-window_size;
|
||||||
ahi=calcAHI(session,f,ti);
|
ahi=calcAHI(session,f,ti);
|
||||||
if (ti>=last) {
|
if (ti>=last) {
|
||||||
AHI->AddEvent(last,ahi);
|
AHI->AddEvent(last,ahi);
|
||||||
|
avg+=ahi;
|
||||||
|
cnt++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
AHI->AddEvent(ti,ahi);
|
AHI->AddEvent(ti,ahi);
|
||||||
ti+=winsize;
|
ti+=window_step;
|
||||||
}
|
}
|
||||||
AHI->AddEvent(last,0);
|
AHI->AddEvent(last,0);
|
||||||
|
if (!cnt) avg=0; else avg/=double(cnt);
|
||||||
|
session->setAvg(CPAP_AHI,avg);
|
||||||
|
|
||||||
return AHI->count();
|
return AHI->count();
|
||||||
}
|
}
|
||||||
|
@ -463,6 +463,9 @@ void Session::UpdateSummaries()
|
|||||||
QHash<ChannelID,QVector<EventList *> >::iterator c;
|
QHash<ChannelID,QVector<EventList *> >::iterator c;
|
||||||
for (c=eventlist.begin();c!=eventlist.end();c++) {
|
for (c=eventlist.begin();c!=eventlist.end();c++) {
|
||||||
id=c.key();
|
id=c.key();
|
||||||
|
if (id==CPAP_AHI) {
|
||||||
|
int i=5;
|
||||||
|
}
|
||||||
if (schema::channel[id].type()==schema::DATA) {
|
if (schema::channel[id].type()==schema::DATA) {
|
||||||
//sum(id); // avg calculates this and cnt.
|
//sum(id); // avg calculates this and cnt.
|
||||||
min(id);
|
min(id);
|
||||||
@ -860,6 +863,7 @@ EventDataType Session::percentile(ChannelID id,EventDataType percent)
|
|||||||
|
|
||||||
EventDataType Session::wavg(ChannelID id)
|
EventDataType Session::wavg(ChannelID id)
|
||||||
{
|
{
|
||||||
|
QHash<EventStoreType,quint32> vtime;
|
||||||
QHash<ChannelID,EventDataType>::iterator i=m_wavg.find(id);
|
QHash<ChannelID,EventDataType>::iterator i=m_wavg.find(id);
|
||||||
if (i!=m_wavg.end())
|
if (i!=m_wavg.end())
|
||||||
return i.value();
|
return i.value();
|
||||||
@ -876,9 +880,9 @@ EventDataType Session::wavg(ChannelID id)
|
|||||||
qint64 lasttime=0,time,td;
|
qint64 lasttime=0,time,td;
|
||||||
EventStoreType val,lastval=0;
|
EventStoreType val,lastval=0;
|
||||||
|
|
||||||
QHash<EventStoreType,quint32> vtime;
|
|
||||||
|
|
||||||
EventDataType gain=evec[0]->gain();
|
EventDataType gain=evec[0]->gain();
|
||||||
|
EventStoreType minval;
|
||||||
|
|
||||||
for (int i=0;i<size;i++) {
|
for (int i=0;i<size;i++) {
|
||||||
if (!evec[i]->count()) continue;
|
if (!evec[i]->count()) continue;
|
||||||
@ -895,13 +899,16 @@ EventDataType Session::wavg(ChannelID id)
|
|||||||
lasttime=time;
|
lasttime=time;
|
||||||
lastval=val;
|
lastval=val;
|
||||||
}*/
|
}*/
|
||||||
|
if (id==CPAP_AHI) {
|
||||||
|
int i=5;
|
||||||
|
}
|
||||||
time=evec[i]->time(0)/1000L;
|
time=evec[i]->time(0)/1000L;
|
||||||
val=evec[i]->raw(0);
|
minval=val=evec[i]->raw(0);
|
||||||
for (quint32 j=1;j<evec[i]->count();j++) {
|
for (quint32 j=1;j<evec[i]->count();j++) {
|
||||||
lastval=val;
|
lastval=val;
|
||||||
lasttime=time;
|
lasttime=time;
|
||||||
val=evec[i]->raw(j);
|
val=evec[i]->raw(j);
|
||||||
|
if (val<minval) minval=val;
|
||||||
time=evec[i]->time(j)/1000L;
|
time=evec[i]->time(j)/1000L;
|
||||||
td=(time-lasttime);
|
td=(time-lasttime);
|
||||||
if (vtime.contains(lastval)) {
|
if (vtime.contains(lastval)) {
|
||||||
@ -909,7 +916,7 @@ EventDataType Session::wavg(ChannelID id)
|
|||||||
} else vtime[lastval]=td;
|
} else vtime[lastval]=td;
|
||||||
}
|
}
|
||||||
if (lasttime>0) {
|
if (lasttime>0) {
|
||||||
td=last()-time;
|
td=(last()/1000L)-time;
|
||||||
if (vtime.contains(val)) {
|
if (vtime.contains(val)) {
|
||||||
vtime[val]+=td;
|
vtime[val]+=td;
|
||||||
} else vtime[val]=td;
|
} else vtime[val]=td;
|
||||||
@ -920,10 +927,13 @@ EventDataType Session::wavg(ChannelID id)
|
|||||||
if (id==CPAP_Snore) {
|
if (id==CPAP_Snore) {
|
||||||
int i=5;
|
int i=5;
|
||||||
}
|
}
|
||||||
|
if (minval<0) minval=-minval;
|
||||||
|
minval++;
|
||||||
|
// if (minval<0) minval+=(0-minval)+1; else minval=1;
|
||||||
qint64 s0=0,s1=0,s2=0,s3=0; // 32bit may all be thats needed here..
|
qint64 s0=0,s1=0,s2=0,s3=0; // 32bit may all be thats needed here..
|
||||||
for (QHash<EventStoreType,quint32>::iterator i=vtime.begin(); i!=vtime.end(); i++) {
|
for (QHash<EventStoreType,quint32>::iterator i=vtime.begin(); i!=vtime.end(); i++) {
|
||||||
s0=i.value();
|
s0=i.value();
|
||||||
s3=i.key()+1;
|
s3=i.key()+minval;
|
||||||
s1+=s3*s0;
|
s1+=s3*s0;
|
||||||
s2+=s0;
|
s2+=s0;
|
||||||
}
|
}
|
||||||
@ -931,7 +941,7 @@ EventDataType Session::wavg(ChannelID id)
|
|||||||
return m_wavg[id]=0;
|
return m_wavg[id]=0;
|
||||||
}
|
}
|
||||||
double j=double(s1)/double(s2);
|
double j=double(s1)/double(s2);
|
||||||
j-=1;
|
j-=minval;
|
||||||
EventDataType v=j*gain;
|
EventDataType v=j*gain;
|
||||||
if (v>32768*gain) {
|
if (v>32768*gain) {
|
||||||
v=0;
|
v=0;
|
||||||
|
@ -269,8 +269,14 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
|
|
||||||
if (asknew) {
|
if (asknew) {
|
||||||
QFileDialog w;
|
QFileDialog w;
|
||||||
w.setFileMode(QFileDialog::DirectoryOnly);
|
w.setFileMode(QFileDialog::Directory);
|
||||||
|
w.setOption(QFileDialog::ShowDirsOnly, true);
|
||||||
|
|
||||||
|
#if defined(Q_WS_MAC) && (QT_VERSION_CHECK(4,8,0) > QT_VERSION)
|
||||||
|
// Fix for tetragon, 10.6 barfs up Qt's custom dialog
|
||||||
w.setOption(QFileDialog::DontUseNativeDialog,true);
|
w.setOption(QFileDialog::DontUseNativeDialog,true);
|
||||||
|
#else
|
||||||
|
w.setOption(QFileDialog::DontUseNativeDialog,false);
|
||||||
|
|
||||||
QListView *l = w.findChild<QListView*>("listView");
|
QListView *l = w.findChild<QListView*>("listView");
|
||||||
if (l) {
|
if (l) {
|
||||||
@ -280,6 +286,7 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
if (t) {
|
if (t) {
|
||||||
t->setSelectionMode(QAbstractItemView::MultiSelection);
|
t->setSelectionMode(QAbstractItemView::MultiSelection);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (w.exec()!=QDialog::Accepted) {
|
if (w.exec()!=QDialog::Accepted) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user