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
1026275d
Verified
Commit
1026275d
authored
1 year ago
by
Tamas Gal
Browse files
Options
Downloads
Patches
Plain Diff
Add tools docs
parent
9e3cacb1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docs/src/manual/tools.md
+82
-0
82 additions, 0 deletions
docs/src/manual/tools.md
with
82 additions
and
0 deletions
docs/src/manual/tools.md
0 → 100644
+
82
−
0
View file @
1026275d
# Tools
There are many commonly used routines to find for example the best reconstructed
muon track or find out if a given hit was flagged by a specific trigger
algorithm. This section will show some helper functions available in
`KM3io.jl`
.
## Best track/shower
In KM3NeT, the best reconstructed track or shower of a given set of tracks
respectively showers is the one with the highest value of the likelihood
parameter (
`lik`
) and the longest reconstruction history (
`rec_stages`
) which is
a record of reconstruction stages performed during the whole fitting procedure.
The offline dataformat, which is used to store reconstruction information, has
only a single
`Vector{Trk}`
per event which is a flat list of reconstructed
tracks and showers. This vector can be a mix of different reconstruction
algorithms (JGandalf, aashower, FibonacciFit, ...) and different stages of each,
like prefit candidates, intermediate fits and final results. Therefore it is
necessary to take the reconstruction type (
`rec_type`
) and also the values of
the reconstruction stages (
`rec_stages`
) into account. Each reconstruction
algorithm and each of their reconstruction stages have their own unique
identifiers, which are stored in these two fields.
!!! note
Both tracks and showers are stored as
`Trk`
. This comes from the fact
that the original KM3NeT dataformat defintion for offline files uses the
same C++ class (named
`Trk`
).
The helper functions in
`KM3io.jl`
to pick the best track/shower always start
with the prefix
`best`
, followed by the common name of the reconstruction
routine, like
`jppmuon`
, or
`aashower`
. The input can be an event (
`Evt`
) or a
vector of reconstructed tracks (
`Vector{Trk}`
). If no track/shower could be
found,
`missing`
is returned instead.
```
@example 1
using KM3io, KM3NeTTestData
f = ROOTFile(datapath("offline", "km3net_offline.root"))
e = f.offline[1]
@show bestjppmuon(e)
@show bestjppshower(e)
@show bestaashower(e)
@show bestjppshower(e.trks)
@show bestaashower(e.trks)
```
Additonally, there are helper functions which can be used to check if a specific
reconstruction stage or result is present in an event or a given set of
tracks/showers.
```
@example 1
t = e.trks |> first
@show hasjppmuonprefit(t)
@show hasjppmuonsimplex(t)
@show hasjppmuongandalf(t)
@show hasjppmuonfit(t)
@show hasaashowerfit(t)
@show hasreconstructedjppmuon(e)
@show hasreconstructedjppshower(e)
@show hasreconstructedaashower(e)
```
!!! note
To check multiple events in one go, use the
[
Broadcasting
](
https://docs.julialang.org/en/v1/manual/arrays/#Broadcasting
)
feature of the Julia language by putting a dot (
`.`
) at the end of the
function name, e.g.
`bestjppmuon.(f.offline)`
which will find the best Jpp
muon reconstruction result for each event in the offline tree.
```
@example 1
bestjppmuon.(f.offline[2:5])
```
Let's close our file
`;)`
```
@example 1
close(f)
```
This diff is collapsed.
Click to expand it.
Tamas Gal
@tgal
mentioned in commit
7374822a
·
1 year ago
mentioned in commit
7374822a
mentioned in commit 7374822a859be6744a097115c0dc494dac741f98
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