mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Express one EventList::AddEvent() in terms of the other.
Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
This commit is contained in:
parent
be71894ad0
commit
eb3019b0fe
@ -24,7 +24,6 @@ EventList::EventList(EventListType et, EventDataType gain, EventDataType offset,
|
|||||||
m_update_minmax = true;
|
m_update_minmax = true;
|
||||||
m_min2 = m_min = 999999999;
|
m_min2 = m_min = 999999999;
|
||||||
m_max2 = m_max = -999999999;
|
m_max2 = m_max = -999999999;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
m_update_minmax = false;
|
m_update_minmax = false;
|
||||||
}
|
}
|
||||||
@ -33,9 +32,7 @@ EventList::EventList(EventListType et, EventDataType gain, EventDataType offset,
|
|||||||
|
|
||||||
// Reserve a few to increase performace??
|
// Reserve a few to increase performace??
|
||||||
}
|
}
|
||||||
EventList::~EventList()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
void EventList::clear()
|
void EventList::clear()
|
||||||
{
|
{
|
||||||
m_min2 = m_min = 999999999;
|
m_min2 = m_min = 999999999;
|
||||||
@ -63,6 +60,7 @@ EventDataType EventList::data(quint32 i)
|
|||||||
{
|
{
|
||||||
return EventDataType(m_data[i]) * m_gain;
|
return EventDataType(m_data[i]) * m_gain;
|
||||||
}
|
}
|
||||||
|
|
||||||
EventDataType EventList::data2(quint32 i)
|
EventDataType EventList::data2(quint32 i)
|
||||||
{
|
{
|
||||||
return EventDataType(m_data2[i]);
|
return EventDataType(m_data2[i]);
|
||||||
@ -70,8 +68,6 @@ EventDataType EventList::data2(quint32 i)
|
|||||||
|
|
||||||
void EventList::AddEvent(qint64 time, EventStoreType data)
|
void EventList::AddEvent(qint64 time, EventStoreType data)
|
||||||
{
|
{
|
||||||
m_data.push_back(data);
|
|
||||||
|
|
||||||
// Apply gain & offset
|
// Apply gain & offset
|
||||||
EventDataType val = EventDataType(data) * m_gain; // ignoring m_offset
|
EventDataType val = EventDataType(data) * m_gain; // ignoring m_offset
|
||||||
|
|
||||||
@ -79,9 +75,8 @@ void EventList::AddEvent(qint64 time, EventStoreType data)
|
|||||||
if (m_count == 0) {
|
if (m_count == 0) {
|
||||||
m_max = m_min = val;
|
m_max = m_min = val;
|
||||||
} else {
|
} else {
|
||||||
if (m_min > val) { m_min = val; }
|
m_min = (val < m_min) ? val : m_min;
|
||||||
|
m_max = (val > m_max) ? val : m_max;
|
||||||
if (m_max < val) { m_max = val; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -93,11 +88,12 @@ void EventList::AddEvent(qint64 time, EventStoreType data)
|
|||||||
if (m_first > time) {
|
if (m_first > time) {
|
||||||
// Crud.. Update all the previous records
|
// Crud.. Update all the previous records
|
||||||
// This really shouldn't happen.
|
// This really shouldn't happen.
|
||||||
|
qDebug() << "Unordered time detected in AddEvent().";
|
||||||
|
|
||||||
qint32 t = (m_first - time);
|
qint32 delta = (m_first - time);
|
||||||
|
|
||||||
for (quint32 i = 0; i < m_count; i++) {
|
for (quint32 i = 0; i < m_count; i++) {
|
||||||
m_time[i] -= t;
|
m_time[i] -= delta;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_first = time;
|
m_first = time;
|
||||||
@ -107,59 +103,24 @@ void EventList::AddEvent(qint64 time, EventStoreType data)
|
|||||||
m_last = time;
|
m_last = time;
|
||||||
}
|
}
|
||||||
|
|
||||||
quint32 t = (time - m_first);
|
quint32 delta = (time - m_first);
|
||||||
|
|
||||||
m_time.push_back(t);
|
m_data.push_back(data);
|
||||||
|
m_time.push_back(delta);
|
||||||
m_count++;
|
m_count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
void EventList::AddEvent(qint64 time, EventStoreType data, EventStoreType data2)
|
void EventList::AddEvent(qint64 time, EventStoreType data, EventStoreType data2)
|
||||||
{
|
{
|
||||||
// Apply gain & offset
|
AddEvent(time, data);
|
||||||
m_data.push_back(data);
|
|
||||||
|
if (!m_second_field)
|
||||||
|
return;
|
||||||
|
|
||||||
|
m_min2 = (data2 < m_min2) ? data2 : m_min2;
|
||||||
|
m_max2 = (data2 > m_max2) ? data2 : m_max2;
|
||||||
|
|
||||||
if (m_second_field) {
|
|
||||||
m_data2.push_back(data2);
|
m_data2.push_back(data2);
|
||||||
|
|
||||||
if (m_min2 > data2) { m_min2 = data2; }
|
|
||||||
|
|
||||||
if (m_max2 < data2) { m_max2 = data2; }
|
|
||||||
}
|
|
||||||
|
|
||||||
EventDataType val = EventDataType(data) * m_gain + m_offset;
|
|
||||||
|
|
||||||
if (m_update_minmax) {
|
|
||||||
if (m_min > val) { m_min = val; }
|
|
||||||
|
|
||||||
if (m_max < val) { m_max = val; }
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!m_first) {
|
|
||||||
m_first = time;
|
|
||||||
m_last = time;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_first > time) {
|
|
||||||
// Crud.. Update all the previous records
|
|
||||||
// This really shouldn't happen.
|
|
||||||
|
|
||||||
qint32 t = (m_first - time);
|
|
||||||
|
|
||||||
for (quint32 i = 0; i < m_count; i++) {
|
|
||||||
m_time[i] -= t;
|
|
||||||
}
|
|
||||||
|
|
||||||
m_first = time;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_last < time) {
|
|
||||||
m_last = time;
|
|
||||||
}
|
|
||||||
|
|
||||||
quint32 t = (time - m_first);
|
|
||||||
|
|
||||||
m_time.push_back(t);
|
|
||||||
m_count++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Adds a consecutive waveform chunk
|
// Adds a consecutive waveform chunk
|
||||||
@ -193,7 +154,7 @@ void EventList::AddWaveform(qint64 start, qint16 *data, int recs, qint64 duratio
|
|||||||
m_last = last;
|
m_last = last;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Check waveform chunk really is contiguos
|
// TODO: Check waveform chunk really is contiguous
|
||||||
//double rate=duration/recs;
|
//double rate=duration/recs;
|
||||||
|
|
||||||
//realloc buffers.
|
//realloc buffers.
|
||||||
@ -340,7 +301,7 @@ void EventList::AddWaveform(qint64 start, char *data, int recs, qint64 duration)
|
|||||||
|
|
||||||
EventStoreType *edata = m_data.data();
|
EventStoreType *edata = m_data.data();
|
||||||
EventStoreType raw;
|
EventStoreType raw;
|
||||||
EventDataType val;
|
EventDataType val; // FIXME: sstangl: accesses random memory
|
||||||
|
|
||||||
char *sp;
|
char *sp;
|
||||||
char *ep = data + recs;
|
char *ep = data + recs;
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
#define EVENT_H
|
#define EVENT_H
|
||||||
|
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
//#include "SleepLib/session.h"
|
|
||||||
#include "machine_common.h"
|
#include "machine_common.h"
|
||||||
|
|
||||||
//! \brief EventLists can either be Waveform or Event types
|
//! \brief EventLists can either be Waveform or Event types
|
||||||
@ -26,10 +26,11 @@ enum EventListType { EVL_Waveform, EVL_Event };
|
|||||||
class EventList
|
class EventList
|
||||||
{
|
{
|
||||||
friend class Session;
|
friend class Session;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
EventList(EventListType et, EventDataType gain = 1.0, EventDataType offset = 0.0,
|
EventList(EventListType et, EventDataType gain = 1.0, EventDataType offset = 0.0,
|
||||||
EventDataType min = 0.0, EventDataType max = 0.0, double rate = 0.0, bool second_field = false);
|
EventDataType min = 0.0, EventDataType max = 0.0, double rate = 0.0,
|
||||||
~EventList();
|
bool second_field = false);
|
||||||
|
|
||||||
//! \brief Wipe the event list so it can be reused
|
//! \brief Wipe the event list so it can be reused
|
||||||
void clear();
|
void clear();
|
||||||
@ -156,8 +157,8 @@ class EventList
|
|||||||
EventStoreType *rawData() { return m_data.data(); }
|
EventStoreType *rawData() { return m_data.data(); }
|
||||||
EventStoreType *rawData2() { return m_data2.data(); }
|
EventStoreType *rawData2() { return m_data2.data(); }
|
||||||
quint32 *rawTime() { return m_time.data(); }
|
quint32 *rawTime() { return m_time.data(); }
|
||||||
protected:
|
|
||||||
|
|
||||||
|
protected:
|
||||||
//! \brief The time storage vector, in 32bits delta format, added as offsets to m_first
|
//! \brief The time storage vector, in 32bits delta format, added as offsets to m_first
|
||||||
QVector<quint32> m_time;
|
QVector<quint32> m_time;
|
||||||
|
|
||||||
@ -187,5 +188,4 @@ class EventList
|
|||||||
bool m_second_field;
|
bool m_second_field;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
#endif // EVENT_H
|
#endif // EVENT_H
|
||||||
|
Loading…
Reference in New Issue
Block a user