mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fixed more EVL_Waveform time access errors
This commit is contained in:
parent
b1b39e5e7e
commit
5357fac3c2
@ -579,8 +579,8 @@ bool Session::LoadEvents(QString filename)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
EventStoreType t;
|
//EventStoreType t;
|
||||||
quint32 x;
|
//quint32 x;
|
||||||
|
|
||||||
for (int i=0;i<mcsize;i++) {
|
for (int i=0;i<mcsize;i++) {
|
||||||
code=mcorder[i];
|
code=mcorder[i];
|
||||||
@ -747,16 +747,27 @@ bool Session::SearchEvent(ChannelID code, qint64 time, qint64 dist)
|
|||||||
it=eventlist.find(code);
|
it=eventlist.find(code);
|
||||||
quint32 * tptr;
|
quint32 * tptr;
|
||||||
int cnt;
|
int cnt;
|
||||||
|
qint64 rate;
|
||||||
if (it!=eventlist.end()) {
|
if (it!=eventlist.end()) {
|
||||||
for (int i=0;i<it.value().size();i++) {
|
for (int i=0;i<it.value().size();i++) {
|
||||||
EventList *el=it.value()[i];
|
EventList *el=it.value()[i];
|
||||||
start=el->first();
|
rate=el->rate();
|
||||||
tptr=el->rawTime();
|
|
||||||
cnt=el->count();
|
cnt=el->count();
|
||||||
for (unsigned j=0;j<cnt;j++) {
|
if (el->type()==EVL_Waveform) {
|
||||||
t=start + *tptr++;
|
t=el->first();
|
||||||
if (qAbs(time - t) < dist)
|
for (int j=0;j<cnt;j++) {
|
||||||
return true;
|
if (qAbs(time - t) < dist)
|
||||||
|
return true;
|
||||||
|
t+=rate;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
start=el->first();
|
||||||
|
tptr=el->rawTime();
|
||||||
|
for (int j=0;j<cnt;j++) {
|
||||||
|
t=start + *tptr++;
|
||||||
|
if (qAbs(time - t) < dist)
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -920,17 +931,28 @@ int Session::rangeCount(ChannelID id, qint64 first,qint64 last)
|
|||||||
|
|
||||||
qint64 t,start;
|
qint64 t,start;
|
||||||
quint32 * tptr;
|
quint32 * tptr;
|
||||||
|
qint64 rate;
|
||||||
for (int i=0;i<evec.size();i++) {
|
for (int i=0;i<evec.size();i++) {
|
||||||
EventList & ev=*evec[i];
|
EventList & ev=*evec[i];
|
||||||
start=ev.first();
|
|
||||||
tptr=ev.rawTime();
|
|
||||||
cnt=ev.count();
|
cnt=ev.count();
|
||||||
|
|
||||||
for (int j=0;j<cnt;j++) {
|
if (ev.type()==EVL_Waveform) {
|
||||||
t=start + *tptr++;
|
rate=ev.rate();
|
||||||
|
t=ev.first();
|
||||||
|
for (int j=0;j<cnt;j++) {
|
||||||
|
if ((t>=first) && (t<=last))
|
||||||
|
sum++;
|
||||||
|
t+=rate;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
start=ev.first();
|
||||||
|
tptr=ev.rawTime();
|
||||||
|
for (int j=0;j<cnt;j++) {
|
||||||
|
t=start + *tptr++;
|
||||||
|
|
||||||
if ((t>=first) && (t<=last)) {
|
if ((t>=first) && (t<=last)) {
|
||||||
sum++;
|
sum++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -950,19 +972,32 @@ double Session::rangeSum(ChannelID id, qint64 first,qint64 last)
|
|||||||
quint32 * tptr;
|
quint32 * tptr;
|
||||||
int cnt;
|
int cnt;
|
||||||
|
|
||||||
|
qint64 rate;
|
||||||
for (int i=0;i<evec.size();i++) {
|
for (int i=0;i<evec.size();i++) {
|
||||||
EventList & ev=*evec[i];
|
EventList & ev=*evec[i];
|
||||||
start=ev.first();
|
start=ev.first();
|
||||||
tptr=ev.rawTime();
|
|
||||||
dptr=ev.rawData();
|
dptr=ev.rawData();
|
||||||
cnt=ev.count();
|
cnt=ev.count();
|
||||||
gain=ev.gain();
|
gain=ev.gain();
|
||||||
for (int j=0;j<cnt;j++) {
|
rate=ev.rate();
|
||||||
t=start + *tptr++;
|
if (ev.type()==EVL_Waveform) {
|
||||||
if ((t>=first) && (t<=last)) {
|
t=start;
|
||||||
sum+=*dptr * gain;
|
for (int j=0;j<cnt;j++) {
|
||||||
|
if ((t>=first) && (t<=last)) {
|
||||||
|
sum+=*dptr * gain;
|
||||||
|
}
|
||||||
|
dptr++;
|
||||||
|
t+=rate;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
tptr=ev.rawTime();
|
||||||
|
for (int j=0;j<cnt;j++) {
|
||||||
|
t=start + *tptr++;
|
||||||
|
if ((t>=first) && (t<=last)) {
|
||||||
|
sum+=*dptr * gain;
|
||||||
|
}
|
||||||
|
dptr++;
|
||||||
}
|
}
|
||||||
dptr++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return sum;
|
return sum;
|
||||||
@ -976,7 +1011,7 @@ EventDataType Session::rangeMin(ChannelID id, qint64 first,qint64 last)
|
|||||||
QVector<EventList *> & evec=j.value();
|
QVector<EventList *> & evec=j.value();
|
||||||
EventDataType gain,v,min=999999999;
|
EventDataType gain,v,min=999999999;
|
||||||
|
|
||||||
qint64 t,start;
|
qint64 t,start,rate;
|
||||||
EventStoreType * dptr;
|
EventStoreType * dptr;
|
||||||
quint32 * tptr;
|
quint32 * tptr;
|
||||||
int cnt;
|
int cnt;
|
||||||
@ -984,18 +1019,31 @@ EventDataType Session::rangeMin(ChannelID id, qint64 first,qint64 last)
|
|||||||
for (int i=0;i<evec.size();i++) {
|
for (int i=0;i<evec.size();i++) {
|
||||||
EventList & ev=*evec[i];
|
EventList & ev=*evec[i];
|
||||||
start=ev.first();
|
start=ev.first();
|
||||||
tptr=ev.rawTime();
|
|
||||||
dptr=ev.rawData();
|
dptr=ev.rawData();
|
||||||
cnt=ev.count();
|
cnt=ev.count();
|
||||||
gain=ev.gain();
|
gain=ev.gain();
|
||||||
for (unsigned j=0;j<ev.count();j++) {
|
rate=ev.rate();
|
||||||
t=start + *tptr++;
|
if (ev.type()==EVL_Waveform) {
|
||||||
if ((t>=first) && (t<=last)) {
|
t=start;
|
||||||
v=EventDataType(*dptr) * gain;
|
for (int j=0;j<cnt;j++) {
|
||||||
if (v<min) min=v;
|
if ((t>=first) && (t<=last)) {
|
||||||
|
v=EventDataType(*dptr) * gain;
|
||||||
|
if (v<min) min=v;
|
||||||
|
}
|
||||||
|
dptr++;
|
||||||
|
t+=rate;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
tptr=ev.rawTime();
|
||||||
|
for (int j=0;j<cnt;j++) {
|
||||||
|
t=start + *tptr++;
|
||||||
|
if ((t>=first) && (t<=last)) {
|
||||||
|
v=EventDataType(*dptr) * gain;
|
||||||
|
if (v<min) min=v;
|
||||||
|
}
|
||||||
|
dptr++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
dptr++;
|
|
||||||
}
|
}
|
||||||
return min;
|
return min;
|
||||||
}
|
}
|
||||||
@ -1008,7 +1056,7 @@ EventDataType Session::rangeMax(ChannelID id, qint64 first,qint64 last)
|
|||||||
QVector<EventList *> & evec=j.value();
|
QVector<EventList *> & evec=j.value();
|
||||||
EventDataType gain,v,max=-999999999;
|
EventDataType gain,v,max=-999999999;
|
||||||
|
|
||||||
qint64 t,start;
|
qint64 t,start,rate;
|
||||||
EventStoreType * dptr;
|
EventStoreType * dptr;
|
||||||
quint32 * tptr;
|
quint32 * tptr;
|
||||||
int cnt;
|
int cnt;
|
||||||
@ -1020,13 +1068,26 @@ EventDataType Session::rangeMax(ChannelID id, qint64 first,qint64 last)
|
|||||||
dptr=ev.rawData();
|
dptr=ev.rawData();
|
||||||
cnt=ev.count();
|
cnt=ev.count();
|
||||||
gain=ev.gain();
|
gain=ev.gain();
|
||||||
for (unsigned j=0;j<ev.count();j++) {
|
if (ev.type()==EVL_Waveform) {
|
||||||
t=start + *tptr++;
|
rate=ev.rate();
|
||||||
if ((t>=first) && (t<=last)) {
|
t=start;
|
||||||
v=EventDataType(*dptr) * gain;
|
for (int j=0;j<cnt;j++) {
|
||||||
if (v>max) max=v;
|
if ((t>=first) && (t<=last)) {
|
||||||
|
v=EventDataType(*dptr) * gain;
|
||||||
|
if (v>max) max=v;
|
||||||
|
}
|
||||||
|
dptr++;
|
||||||
|
t+=rate;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for (int j=0;j<cnt;j++) {
|
||||||
|
t=start + *tptr++;
|
||||||
|
if ((t>=first) && (t<=last)) {
|
||||||
|
v=EventDataType(*dptr) * gain;
|
||||||
|
if (v>max) max=v;
|
||||||
|
}
|
||||||
|
dptr++;
|
||||||
}
|
}
|
||||||
dptr++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return max;
|
return max;
|
||||||
@ -1166,16 +1227,33 @@ EventDataType Session::percentile(ChannelID id,EventDataType percent)
|
|||||||
|
|
||||||
EventDataType gain=evec[0]->gain();
|
EventDataType gain=evec[0]->gain();
|
||||||
|
|
||||||
|
EventStoreType * dptr, * sptr;
|
||||||
|
|
||||||
int tt=0,cnt;
|
int tt=0,cnt;
|
||||||
for (int i=0;i<size;i++) {
|
for (int i=0;i<size;i++) {
|
||||||
cnt=evec[i]->count();
|
EventList & ev=*evec[i];
|
||||||
|
cnt=ev.count();
|
||||||
tt+=cnt;
|
tt+=cnt;
|
||||||
array.reserve(tt);
|
}
|
||||||
|
array.resize(tt);
|
||||||
|
|
||||||
|
for (int i=0;i<size;i++) {
|
||||||
|
EventList & ev=*evec[i];
|
||||||
|
sptr=ev.rawData();
|
||||||
|
dptr=array.data();
|
||||||
|
|
||||||
for (int j=0;j<cnt;j++) {
|
for (int j=0;j<cnt;j++) {
|
||||||
array.push_back(evec[i]->raw(j));
|
*dptr++ = * sptr++;
|
||||||
|
//array.push_back(evec[i]->raw(j));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
std::sort(array.begin(),array.end(),sortfunction);
|
|
||||||
|
int n=array.size()*percent;
|
||||||
|
if (n>array.size()-1) n--;
|
||||||
|
nth_element(array.begin(), array.begin()+n, array.end());
|
||||||
|
|
||||||
|
return array[n] * gain;
|
||||||
|
/*std::sort(array.begin(),array.end(),sortfunction);
|
||||||
double s=array.size();
|
double s=array.size();
|
||||||
if (!s)
|
if (!s)
|
||||||
return 0;
|
return 0;
|
||||||
@ -1186,7 +1264,7 @@ EventDataType Session::percentile(ChannelID id,EventDataType percent)
|
|||||||
|
|
||||||
//if (j>=size-1) return array[j];
|
//if (j>=size-1) return array[j];
|
||||||
|
|
||||||
return EventDataType(array[j])*gain;
|
return EventDataType(array[j])*gain; */
|
||||||
}
|
}
|
||||||
|
|
||||||
EventDataType Session::wavg(ChannelID id)
|
EventDataType Session::wavg(ChannelID id)
|
||||||
|
Loading…
Reference in New Issue
Block a user