mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Minor update to PRS1 regression tests so that they can follow symlinks.
Also added comment about 900X clamping mask pressure at 15.875 cmH2O. No functional changes.
This commit is contained in:
parent
828d449aa4
commit
1e82500685
@ -8142,6 +8142,11 @@ void PRS1Import::ParseWaveforms()
|
||||
}
|
||||
|
||||
if (s2 > 0) {
|
||||
// NOTE: The 900X (F5V3) clamps the values at 127 (15.875 cmH2O) for some reason.
|
||||
//
|
||||
// Previous autoSV machines (950P-961P, F5V0-F5V2) didn't, nor do 1030X (F3V6).
|
||||
// 1130X (also F3V6) is unknown, but likely follows the 1030X. Older ventilators
|
||||
// (F3V3) are also unknown.
|
||||
EventList * pres = session->AddEventList(CPAP_MaskPressureHi, EVL_Waveform, pressure_gain, 0.0f, 0.0f, 0.0f, double(dur) / double(s2));
|
||||
pres->AddWaveform(ti, (unsigned char *)data[1].data(), data[1].size(), dur);
|
||||
}
|
||||
|
@ -390,28 +390,26 @@ QString prs1OutputPath(const QString & inpath, const QString & serial, const QSt
|
||||
void iterateTestCards(const QString & root, void (*action)(const QString &))
|
||||
{
|
||||
QDir dir(root);
|
||||
dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
|
||||
dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs);
|
||||
dir.setSorting(QDir::Name);
|
||||
QFileInfoList flist = dir.entryInfoList();
|
||||
|
||||
// Look through each folder in the given root
|
||||
for (auto & fi : flist) {
|
||||
if (fi.isDir()) {
|
||||
QStringList machinePaths = s_loader->FindMachinesOnCard(fi.canonicalFilePath());
|
||||
QStringList machinePaths = s_loader->FindMachinesOnCard(fi.canonicalFilePath());
|
||||
|
||||
// Tests should be run newest to oldest, since older sets tend to have more
|
||||
// complete data. (These are usually previously cleared data in the Clear0/Cn
|
||||
// directories.) The machines themselves will write out the summary data they
|
||||
// remember when they see an empty folder, without event or waveform data.
|
||||
// And since these tests (by design) overwrite existing output, we want the
|
||||
// earlier (more complete) data to be what's written last.
|
||||
//
|
||||
// Since the loader itself keeps only the first set of data it sees for a session,
|
||||
// we want to leave its earliest-to-latest ordering in place, and just reverse it
|
||||
// here.
|
||||
for (auto i = machinePaths.crbegin(); i != machinePaths.crend(); i++) {
|
||||
action(*i);
|
||||
}
|
||||
// Tests should be run newest to oldest, since older sets tend to have more
|
||||
// complete data. (These are usually previously cleared data in the Clear0/Cn
|
||||
// directories.) The machines themselves will write out the summary data they
|
||||
// remember when they see an empty folder, without event or waveform data.
|
||||
// And since these tests (by design) overwrite existing output, we want the
|
||||
// earlier (more complete) data to be what's written last.
|
||||
//
|
||||
// Since the loader itself keeps only the first set of data it sees for a session,
|
||||
// we want to leave its earliest-to-latest ordering in place, and just reverse it
|
||||
// here.
|
||||
for (auto i = machinePaths.crbegin(); i != machinePaths.crend(); i++) {
|
||||
action(*i);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user