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
fc27e7a4
Verified
Commit
fc27e7a4
authored
1 year ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
Add besttrack and related helper functions
parent
db9af9dc
Branches
21-helper-functions-for-best-track-selection
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
docs/src/api.md
+2
-0
2 additions, 0 deletions
docs/src/api.md
src/KM3io.jl
+6
-1
6 additions, 1 deletion
src/KM3io.jl
src/tools/reconstruction.jl
+17
-3
17 additions, 3 deletions
src/tools/reconstruction.jl
test/tools.jl
+30
-0
30 additions, 0 deletions
test/tools.jl
with
55 additions
and
4 deletions
docs/src/api.md
+
2
−
0
View file @
fc27e7a4
...
...
@@ -72,5 +72,7 @@ most_frequent
### Reconstruction
```
@docs
besttrack
RecStageRange
hashistory
```
This diff is collapsed.
Click to expand it.
src/KM3io.jl
+
6
−
1
View file @
fc27e7a4
...
...
@@ -19,7 +19,12 @@ export Waveform, AcousticSignal, AcousticsTriggerParameter, piezoenabled, hydrop
export
Hit
,
TriggeredHit
,
Trk
,
MCHit
,
MCTrk
,
EvtHit
export
calibrate
,
floordist
,
slew
export
RecStageRange
,
hashistory
export
besttrack
,
RecStageRange
,
hashistory
,
hasjppmuonprefit
,
hasjppmuonsimplex
,
hasjppmuongandalf
,
hasjppmuonenergy
,
hasjppmuonstart
,
hasjppmuonfit
,
hasshowerprefit
,
hasshowerpositionfit
,
hasshowercompletefit
,
hasshowerfit
,
hasaashowerfit
,
hasreconstructedjppmuon
,
hasreconstructedjppshower
,
hasreconstructedaashower
export
is3dshower
,
ismxshower
,
is3dmuon
,
isnb
,
triggered
export
most_frequent
,
categorize
,
nthbitset
...
...
This diff is collapsed.
Click to expand it.
src/tools/reconstruction.jl
+
17
−
3
View file @
fc27e7a4
...
...
@@ -32,7 +32,7 @@ Base.in(rec_stage::T, rsr::RecStageRange) where T<:Integer = rsr.lower <= rec_st
"""
Checks
if a track with a given `rec_type` contains all the reconstruction stages in `rsr::RecStageRange`.
Returns `true`
if a track with a given `rec_type` contains all the reconstruction stages in `rsr::RecStageRange`.
"""
function
hashistory
(
t
::
Trk
,
rec_type
::
Integer
,
rsr
::
RecStageRange
)
rec_type
!=
t
.
rec_type
&&
return
false
...
...
@@ -42,6 +42,9 @@ function hashistory(t::Trk, rec_type::Integer, rsr::RecStageRange)
true
end
"""
Returns `true` if a track with a given `rec_type` contains the `rec_stage`.
"""
function
hashistory
(
t
::
Trk
,
rec_type
::
Integer
,
rec_stage
::
Integer
)
rec_type
!=
t
.
rec_type
&&
return
false
rec_stage
∈
t
.
rec_stages
...
...
@@ -62,6 +65,17 @@ hasreconstructedjppmuon(e::Evt) = any(hasjppmuonfit, e.trks)
hasreconstructedjppshower
(
e
::
Evt
)
=
any
(
hasshowerfit
,
e
.
trks
)
hasreconstructedaashower
(
e
::
Evt
)
=
any
(
hasaashowerfit
,
e
.
trks
)
function
besttrack
(
e
::
Evt
,
rsr
::
RecStageRange
)
error
(
"not implemented yet"
)
"""
Return the best reconstructed track for a given reconstruction type and
reconstruction stage range. If no track could be found, `nothing` is returned.
"""
function
besttrack
(
e
::
Evt
,
rec_type
::
Integer
,
rsr
::
RecStageRange
)
candidates
=
filter
(
e
.
trks
)
do
t
hashistory
(
t
,
rec_type
,
rsr
)
end
length
(
candidates
)
==
0
&&
return
nothing
sort
(
candidates
;
by
=
c
->
(
length
(
c
.
rec_stages
),
c
.
lik
))
|>
last
end
This diff is collapsed.
Click to expand it.
test/tools.jl
+
30
−
0
View file @
fc27e7a4
using
KM3io
import
KM3io
:
nthbitset
,
SnapshotHit
,
tonumifpossible
using
KM3NeTTestData
using
Test
@testset
"tools"
begin
...
...
@@ -44,3 +46,31 @@ end
@test
1.1
==
tonumifpossible
(
"1.1"
)
@test
"1.1.1"
==
tonumifpossible
(
"1.1.1"
)
end
@testset
"has...() helpers"
begin
f
=
ROOTFile
(
datapath
(
"offline"
,
"km3net_offline.root"
))
e
=
f
.
offline
[
1
]
t
=
e
.
trks
|>
first
@test
hasjppmuonprefit
(
t
)
@test
!
hasjppmuonsimplex
(
t
)
@test
hasjppmuongandalf
(
t
)
@test
hasjppmuonenergy
(
t
)
@test
hasjppmuonstart
(
t
)
@test
hasjppmuonfit
(
t
)
@test
!
hasshowerprefit
(
t
)
@test
!
hasshowerpositionfit
(
t
)
@test
!
hasshowercompletefit
(
t
)
@test
!
hasshowerfit
(
t
)
@test
!
hasaashowerfit
(
t
)
@test
hasreconstructedjppmuon
(
e
)
@test
!
hasreconstructedjppshower
(
e
)
@test
!
hasreconstructedaashower
(
e
)
close
(
f
)
end
@testset
"besttrack()"
begin
f
=
ROOTFile
(
datapath
(
"offline"
,
"km3net_offline.root"
))
bt
=
besttrack
(
f
.
offline
[
1
],
KM3io
.
RECONSTRUCTION
.
JPP_RECONSTRUCTION_TYPE
,
RecStageRange
(
KM3io
.
RECONSTRUCTION
.
JMUONBEGIN
,
KM3io
.
RECONSTRUCTION
.
JMUONEND
))
@test
294.6407542676734
≈
bt
.
lik
close
(
f
)
end
This diff is collapsed.
Click to expand it.
Tamas Gal
@tgal
mentioned in commit
ff471ad9
·
1 year ago
mentioned in commit
ff471ad9
mentioned in commit ff471ad96b6b41f9ea9244fb7c60742c72e634d0
Toggle commit list
Tamas Gal
@tgal
mentioned in issue
#21 (closed)
·
1 year ago
mentioned in issue
#21 (closed)
mentioned in issue #21
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