Skip to content
Snippets Groups Projects
Commit 71964b1f authored by mingf2's avatar mingf2
Browse files

correct time stamp extraction

parent 59cf9404
No related branches found
No related tags found
No related merge requests found
......@@ -416,8 +416,8 @@ int Worker::DecodeCITIROCRowEvents(const char* buf, const int bufSize, DataCITIR
DataCITIROCA.RunEventTimecode = (((uint64_t)bufferA[t+ 2]) ) + (((uint64_t)bufferA[t + 3]) << 32);
DataCITIROCA.EventCounter = ((uint64_t)bufferA[t + 4]);
DataCITIROCA.EventTimecode_ns = DataCITIROCA.EventTimecode * 25;
DataCITIROCA.RunEventTimecode_ns =DataCITIROCA.RunEventTimecode * 25;
DataCITIROCA.EventTimecode_ns = DataCITIROCA.EventTimecode * 8;
DataCITIROCA.RunEventTimecode_ns =DataCITIROCA.RunEventTimecode * 0.5;
t = t + 5;
minTime = 100000000000000;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment