mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-08 20:20:44 +00:00
Fruitsalad cleanup
This commit is contained in:
parent
ce89e89c9c
commit
f16284b75d
@ -8295,7 +8295,7 @@
|
||||
<sleeplib/machine.h>
|
||||
<list>
|
||||
|
||||
1307463320 /home/mark/projects/git/sleepyhead/src/version.h
|
||||
1307464570 /home/mark/projects/git/sleepyhead/src/version.h
|
||||
|
||||
1307418393 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h
|
||||
"machine.h"
|
||||
@ -8312,7 +8312,7 @@
|
||||
"preferences.h"
|
||||
"tinyxml/tinyxml.h"
|
||||
|
||||
1307463279 source:/home/mark/projects/git/sleepyhead/src/SleepyHeadMain.cpp
|
||||
1307464513 source:/home/mark/projects/git/sleepyhead/src/SleepyHeadMain.cpp
|
||||
"wx_pch.h"
|
||||
"version.h"
|
||||
<wx/app.h>
|
||||
|
@ -766,6 +766,8 @@ void Daily::RefreshData()
|
||||
CPAPMode mode;
|
||||
PRTypes pr;
|
||||
wxString epr,modestr;
|
||||
float iap90,eap90;
|
||||
|
||||
if (cpap) {
|
||||
mode=(CPAPMode)cpap->summary_max(CPAP_Mode);
|
||||
|
||||
@ -854,8 +856,8 @@ void Daily::RefreshData()
|
||||
float vsi=cpap->count(CPAP_VSnore)/cpap->hours();
|
||||
float fli=cpap->count(CPAP_FlowLimit)/cpap->hours();
|
||||
// float p90=cpap->percentile(CPAP_Pressure,0,0.9);
|
||||
float eap90=cpap->percentile(CPAP_EAP,0,0.9);
|
||||
float iap90=cpap->percentile(CPAP_IAP,0,0.9);
|
||||
eap90=cpap->percentile(CPAP_EAP,0,0.9);
|
||||
iap90=cpap->percentile(CPAP_IAP,0,0.9);
|
||||
wxString submodel=_("Unknown Model");
|
||||
|
||||
|
||||
@ -906,28 +908,34 @@ void Daily::RefreshData()
|
||||
html=html+wxT("<tr height='2'><td colspan=4 height='2'><hr></td></tr>\n");
|
||||
//html=html+wxT("<tr><td colspan=4 align=center><hr></td></tr>\n");
|
||||
|
||||
html=html+wxT("<tr><td><b>What</b></td><td><b>Min</b></td><td><b>Avg</b></td><td><b>Max</b></td></tr>");
|
||||
|
||||
if (mode==MODE_CPAP) {
|
||||
html=html+wxT("<tr><td><b>")+_("Pressure")+wxT("</b></td><td>")+wxString::Format(wxT("%.1fcmH2O"),cpap->summary_min(CPAP_PressureMin))+wxT("</td></tr>\n");
|
||||
if (mode==MODE_BIPAP) {
|
||||
html=html+wxT("<tr><td colspan=4 align='center'><i>")+_("90% IPAP ")+wxString::Format(wxT("%.1fcmH2O"),iap90)+wxT("</td></tr>\n");
|
||||
html=html+wxT("<tr><td colspan=4 align='center'><i>")+_("90% EPAP ")+wxString::Format(wxT("%.1fcmH2O"),eap90)+wxT("</td></tr>\n");
|
||||
} else if (mode==MODE_APAP) {
|
||||
html=html+wxT("<tr><td colspan=4 align='center'><i>")+_("90% Pressure ")+wxString::Format(wxT("%.2fcmH2O"),cpap->summary_weighted_avg(CPAP_PressurePercentValue))+wxT("</i></td></tr>\n");
|
||||
} else if (mode==MODE_CPAP) {
|
||||
html=html+wxT("<tr><td colspan=4 align='center'><i>")+_("Pressure ")+wxString::Format(wxT("%.2fcmH2O"),cpap->summary_min(CPAP_PressureMin))+wxT("</i></td></tr>\n");
|
||||
}
|
||||
html=html+wxT("<tr><td colspan=4 align=center> </td></tr>\n");
|
||||
|
||||
html=html+wxT("<tr><td> </td><td><b>Min</b></td><td><b>Avg</b></td><td><b>Max</b></td></tr>");
|
||||
|
||||
if (mode==MODE_APAP) {
|
||||
html=html+wxT("<tr><td>Pressure</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_min(CPAP_PressureMinAchieved));
|
||||
html=html+wxT("</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_weighted_avg(CPAP_PressureAverage));
|
||||
html=html+wxT("</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_max(CPAP_PressureMaxAchieved))+wxT("</td></tr>");
|
||||
|
||||
/*html=html+wxT("<tr><td><b>")+_("90% Pressure")+wxT("</b></td><td>")+wxString::Format(wxT("%.1fcmH2O"),cpap->summary_weighted_avg(CPAP_PressurePercentValue))+wxT("</td></tr>\n");
|
||||
// html=html+wxT("<tr><td><b>")+_("90% Pressure")+wxT("</b></td><td>")+wxString::Format(wxT("%.1fcmH2O"),p90)+wxT("</td></tr>\n");
|
||||
} else if (mode==MODE_BIPAP) {
|
||||
html=html+wxT("<tr><td>IPAP</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_min(BIPAP_IAPMin));
|
||||
html=html+wxT("</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_weighted_avg(BIPAP_IAPAverage));
|
||||
html=html+wxT("</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_max(BIPAP_IAPMax))+wxT("</td></tr>");
|
||||
|
||||
html=html+wxT("<tr><td>EPAP</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_min(BIPAP_EAPMin));
|
||||
html=html+wxT("</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_weighted_avg(BIPAP_EAPAverage));
|
||||
html=html+wxT("</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_max(BIPAP_EAPMax))+wxT("</td></tr>");
|
||||
|
||||
html=html+wxT("<tr><td><b>")+_("90% IPAP")+wxT("</b></td><td>")+wxString::Format(wxT("%.1fcmH2O"),iap90)+wxT("</td></tr>\n");
|
||||
html=html+wxT("<tr><td><b>")+_("90% EPAP")+wxT("</b></td><td>")+wxString::Format(wxT("%.1fcmH2O"),eap90)+wxT("</td></tr>\n"); */
|
||||
|
||||
}
|
||||
html=html+wxT("<tr><td>Leak"); //</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_weighted_avg(CPAP_LeakAverage))
|
||||
html=html+wxT("</td><td>")+wxString::Format(wxT("%.2f"),cpap->summary_min(CPAP_LeakMinimum));
|
||||
@ -988,17 +996,18 @@ void Daily::RefreshData()
|
||||
|
||||
if (cpap) {
|
||||
|
||||
|
||||
if (mode==MODE_BIPAP) {
|
||||
|
||||
html=html+wxT("<tr><td colspan=4 align=center><i>")+_("Time@IPAP")+wxT("</i></td></tr>\n");
|
||||
html=html+wxT("<tr><td colspan=4 align=left cellspacing=0 cellpadding=0><img src=\"memory:tiap.png\" ></td></tr>\n");
|
||||
html=html+wxT("<tr><td colspan=4 align=center><i>")+_("Time@EPAP")+wxT("</i></td></tr>\n");
|
||||
html=html+wxT("<tr><td colspan=4 align=left cellspacing=0 cellpadding=0><img src=\"memory:teap.png\" ></td></tr>\n");
|
||||
} else { //if (mode==MODE_APAP) {
|
||||
} else if (mode==MODE_APAP) {
|
||||
html=html+wxT("<tr><td colspan=4 align=center><i>")+_("Time@Pressure")+wxT("</i></td></tr>\n");
|
||||
html=html+wxT("<tr><td colspan=4 align=left cellspacing=0 cellpadding=0><img src=\"memory:tap.png\" ></td></tr>\n");
|
||||
}
|
||||
|
||||
|
||||
html=html+wxT("</table><hr>");
|
||||
html=html+wxT("<div align=left>");
|
||||
html=html+wxT("<table cellspacing=0 cellpadding=0 border=0 width='100%'>\n");
|
||||
|
@ -16,14 +16,14 @@ namespace AutoVersion{
|
||||
//Standard Version Type
|
||||
static const long MAJOR = 0;
|
||||
static const long MINOR = 7;
|
||||
static const long BUILD = 3621;
|
||||
static const long REVISION = 3007;
|
||||
static const long BUILD = 3643;
|
||||
static const long REVISION = 3130;
|
||||
|
||||
//Miscellaneous Version Types
|
||||
static const long BUILDS_COUNT = 1247;
|
||||
#define RC_FILEVERSION 0,7,3621,3007
|
||||
#define RC_FILEVERSION_STRING "0, 7, 3621, 3007\0"
|
||||
static const char FULLVERSION_STRING[] = "0.7.3621.3007";
|
||||
static const long BUILDS_COUNT = 1297;
|
||||
#define RC_FILEVERSION 0,7,3643,3130
|
||||
#define RC_FILEVERSION_STRING "0, 7, 3643, 3130\0"
|
||||
static const char FULLVERSION_STRING[] = "0.7.3643.3130";
|
||||
|
||||
//These values are to keep track of your versioning state, don't modify them.
|
||||
static const long BUILD_HISTORY = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user