2011-11-28 01:39:28 +00:00
|
|
|
/*
|
|
|
|
Custom CPAP/Oximetry Calculations Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*/
|
|
|
|
#ifndef CALCS_H
|
|
|
|
#define CALCS_H
|
|
|
|
|
|
|
|
#include "day.h"
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Calculate Respiratory Rate, Tidal Volume & Minute Ventilation for PRS1 data
|
2011-12-02 11:40:47 +00:00
|
|
|
int calcRespRate(Session *session);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief Calculates the sliding window AHI graph
|
2011-12-02 11:40:47 +00:00
|
|
|
int calcAHIGraph(Session *session);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief Calculates AHI for a session between start & end (a support function for the sliding window graph)
|
2011-12-02 11:40:47 +00:00
|
|
|
EventDataType calcAHI(Session *session,qint64 start=0, qint64 end=0);
|
2011-11-28 01:39:28 +00:00
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Leaks calculations for PRS1
|
2011-11-30 12:32:16 +00:00
|
|
|
int calcLeaks(Session *session);
|
|
|
|
|
2011-12-18 16:39:36 +00:00
|
|
|
//! \brief Calculate Pulse change flagging, according to preferences
|
2011-11-28 04:05:09 +00:00
|
|
|
int calcPulseChange(Session *session);
|
2011-12-18 16:39:36 +00:00
|
|
|
|
|
|
|
//! \brief Calculate SPO2 Drop flagging, according to preferences
|
2011-11-28 04:05:09 +00:00
|
|
|
int calcSPO2Drop(Session *session);
|
|
|
|
|
2011-11-28 01:39:28 +00:00
|
|
|
|
|
|
|
#endif // CALCS_H
|