/* SleepLib Event Class Implementation Copyright (c)2011 Mark Watkins License: GPL */ #include #include "event.h" EventList::EventList(EventListType et,EventDataType gain, EventDataType offset, EventDataType min, EventDataType max,double rate,bool second_field) :m_type(et),m_gain(gain),m_offset(offset),m_min(min),m_max(max),m_rate(rate),m_second_field(second_field) { m_first=m_last=0; m_count=0; if (min==max) { // Update Min & Max unless forceably set here.. m_update_minmax=true; m_min2=m_min=999999999; m_max2=m_max=-999999999; } else { m_update_minmax=false; } m_data.reserve(2048); // Reserve a few to increase performace?? } EventList::~EventList() { } qint64 EventList::time(quint32 i) { if (m_type==EVL_Event) { return m_first+qint64(m_time[i]); } return m_first+qint64((EventDataType(i)*m_rate)); } EventDataType EventList::data(quint32 i) { return EventDataType(m_data[i])*m_gain; } EventDataType EventList::data2(quint32 i) { return EventDataType(m_data2[i]); } void EventList::AddEvent(qint64 time, EventStoreType data, EventStoreType data2) { // Apply gain & offset m_data.push_back(data); if (m_second_field) { m_data2.push_back(data2); if (m_min2>data2) m_min2=data2; if (m_max2val) m_min=val; if (m_maxtime) { // Crud.. Update all the previous records // This really shouldn't happen. qint32 t=(m_first-time); for (quint32 i=0;istart) { //qWarning() << "Attempted to add waveform with previous timestamp"; // return; // technically start should equal m_last+1 sample.. check this too. } if (m_lastval) m_min=val; if (m_maxstart) { //qWarning() << "Attempted to add waveform with previous timestamp"; // return; // technically start should equal m_last+1 sample.. check this too. } if (m_lastval) m_min=val; if (m_maxstart) { //qWarning() << "Attempted to add waveform with previous timestamp"; //return; // technically start should equal m_last+1 sample.. check this too. } if (m_lastval) m_min=val; if (m_max