Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
KM3io.jl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
common
KM3io.jl
Commits
a8ff94f1
Verified
Commit
a8ff94f1
authored
1 year ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
Add combine() to combine snapshot/trig-hits
parent
7a8ea203
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
docs/src/api.md
+1
-0
1 addition, 0 deletions
docs/src/api.md
src/KM3io.jl
+1
-1
1 addition, 1 deletion
src/KM3io.jl
src/calibration.jl
+26
-0
26 additions, 0 deletions
src/calibration.jl
with
28 additions
and
1 deletion
docs/src/api.md
+
1
−
0
View file @
a8ff94f1
...
...
@@ -82,6 +82,7 @@ read(filename::AbstractString, T::Type{AcousticsTriggerParameter})
## Calibration
```
@docs
calibrate
combine
floordist
slew
```
...
...
This diff is collapsed.
Click to expand it.
src/KM3io.jl
+
1
−
1
View file @
a8ff94f1
...
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
src/calibration.jl
+
26
−
0
View file @
a8ff94f1
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Tamas Gal
@tgal
mentioned in commit
54526863
·
1 year ago
mentioned in commit
54526863
mentioned in commit 54526863f138fedc672b60fab617fbabb0c35075
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment