Skip to content
Snippets Groups Projects
Verified Commit 2dd97c4a authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fix typo

parent ce9927fa
No related branches found
No related tags found
No related merge requests found
......@@ -6,11 +6,11 @@ function Base.read(s::IO, ::Type{T}; legacy=false) where T<:DAQEvent
version = Int16(0)
!legacy && (version = read(s, Int16))
detector_id, Int32)
detector_id = read(s, Int32)
run_id = read(s, Int32)
frame_index, Int32)
utc_seconds = read(s, UInt32)
utc_16nanosecondcycles = read(s, UInt32)
utc_16nanosecondcycles = read(s, UInt32) # 16ns ticks
trigger_counter = read(s, Int64)
trigger_mask = read(s, Int64)
overlays = read(s, Int32)
......
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