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

Add tools docs

parent 9e3cacb1
No related branches found
No related tags found
No related merge requests found
# 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)
```
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