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

Add combine() to combine snapshot/trig-hits

parent 7a8ea203
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,7 @@ read(filename::AbstractString, T::Type{AcousticsTriggerParameter})
## Calibration
```@docs
calibrate
combine
floordist
slew
```
......
......@@ -37,7 +37,7 @@ export Evt, Hit, TriggeredHit, Trk, CalibratedHit, XCalibratedHit, MCTrk, Calibr
export K40Rates
export calibrate, floordist, slew
export calibrate, floordist, slew, combine
export besttrack, bestjppmuon, bestjppshower, bestaashower,
RecStageRange, hashistory, hasjppmuonprefit, hasjppmuonsimplex, hasjppmuongandalf,
......
......@@ -25,6 +25,32 @@ function calibrate(det::Detector, hits)
calibrated_hits
end
"""
Combine snapshot and triggered hits to a single hits-vector.
This should be used to transfer the trigger information to the
snapshot hits from a DAQEvent. The triggered hits are a subset
of the snapshot hits.
"""
function combine(snapshot_hits::Vector{KM3io.SnapshotHit}, triggered_hits::Vector{KM3io.TriggeredHit})
triggermasks = Dict{Tuple{UInt8, Int32, Int32, UInt8}, Int64}()
for hit triggered_hits
triggermasks[(hit.channel_id, hit.dom_id, hit.t, hit.tot)] = hit.trigger_mask
end
n = length(snapshot_hits)
hits = sizehint!(Vector{TriggeredHit}(), n)
for hit in snapshot_hits
channel_id = hit.channel_id
dom_id = hit.dom_id
t = hit.t
tot = hit.tot
triggermask = get(triggermasks, (channel_id, dom_id, t, tot), 0)
push!(hits, TriggeredHit(dom_id, channel_id, t, tot, triggermask))
end
hits
end
"""
Calculates the average floor distance between neighboured modules.
......
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