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

Merge branch '77-hit-time-field-is-now-tdc' into 'master'

Resolve "Hit time field is now tdc!"

Closes #77

See merge request !53
parents 2aae4c6f fdbf472c
No related branches found
No related tags found
1 merge request!53Resolve "Hit time field is now tdc!"
Pipeline #18466 passed
......@@ -3,6 +3,11 @@ Unreleased changes
Version 0
---------
0.20.0 / 2021-02-18
~~~~~~~~~~~~~~~~~~~
* The fields ``.tdc``, ``.pos_{xyz}`` and ``.dir_{xyz}`` in ``.hits`` are
now read by default.
0.19.6 / 2021-02-01
~~~~~~~~~~~~~~~~~~~
* Improved header readout
......
......@@ -32,6 +32,13 @@ class OfflineReader(EventReader):
"channel_id": "hits.channel_id",
"dom_id": "hits.dom_id",
"t": "hits.t",
"tdc": "hits.tdc",
"pos_x": "hits.pos.x",
"pos_y": "hits.pos.y",
"pos_z": "hits.pos.z",
"dir_x": "hits.dir.x",
"dir_y": "hits.dir.y",
"dir_z": "hits.dir.z",
"tot": "hits.tot",
"trig": "hits.trig", # non-zero if the hit is a triggered hit
},
......
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