mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Update Viatom warnings based on additional test samples.
This commit is contained in:
parent
a9faa2eddc
commit
9134093af6
@ -290,6 +290,7 @@ bool ViatomFile::ParseHeader()
|
|||||||
return false;
|
return false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
CHECK_VALUE(sig, 3); // We have only a single sample of 5, without a corresponding PDF. We need more samples.
|
||||||
|
|
||||||
if ((year < 2015 || year > 2059) || (month < 1 || month > 12) || (day < 1 || day > 31) ||
|
if ((year < 2015 || year > 2059) || (month < 1 || month > 12) || (day < 1 || day > 31) ||
|
||||||
(hour > 23) || (min > 59) || (sec > 59)) {
|
(hour > 23) || (min > 59) || (sec > 59)) {
|
||||||
@ -339,7 +340,7 @@ bool ViatomFile::ParseHeader()
|
|||||||
//int time_under_90pct = header[22] | (header[23] << 8); // in seconds
|
//int time_under_90pct = header[22] | (header[23] << 8); // in seconds
|
||||||
//int events_under_90pct = header[24]; // number of distinct events
|
//int events_under_90pct = header[24]; // number of distinct events
|
||||||
//float o2_score = header[25] * 0.1;
|
//float o2_score = header[25] * 0.1;
|
||||||
CHECK_VALUE(header[26], 0);
|
CHECK_VALUES(header[26], 0, 4); // 4 has been seen only once
|
||||||
CHECK_VALUE(header[27], 0);
|
CHECK_VALUE(header[27], 0);
|
||||||
CHECK_VALUE(header[28], 0);
|
CHECK_VALUE(header[28], 0);
|
||||||
CHECK_VALUE(header[29], 0);
|
CHECK_VALUE(header[29], 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user