Update Data Model authored by Matteo Tenti's avatar Matteo Tenti
......@@ -13,7 +13,7 @@ The hit struct represent the segment along which a particle's energy deposit occ
| double | x1 | X cordinate of the start point of the segment |
| double | y1 | Y cordinate of the start point of the segment |
| double | z1 | Z cordinate of the start point of the segment |
| double | t1 | time cordinate of the start point of the segment |
| double | t1 | Time cordinate of the start point of the segment |
| double | x2 | X cordinate of the end point of the segment |
| double | y2 | Y cordinate of the end point of the segment |
| double | z2 | Z cordinate of the end point of the segmen |
......@@ -36,7 +36,7 @@ The digit represents (or at least should) the real response of the straw tube. I
| double | x | X position of the digit evaluated as explained above |
| double | y | Y position of the digit evaluated as explained above |
| double | z | Z position of the digit evaluated as explained above |
| double | t | time coordinate of the digit evaluated as explained above |
| double | t | Time coordinate of the digit evaluated as explained above |
| double | de | Energy deposit |
| bool| hor| Flag to identified straw tube orientation. `hor == true` means horizontal, `hor == false` means vertical |
| std::vector<int> | hindex | vector of the hit indeces contributing to the digit |
......@@ -141,7 +141,7 @@ The cluster is a set of cell grouped on the basis track that produced them. It h
| double | xtrue | X coordinate of the starting point of the particle's track |
| double | ytrue | Y coordinate of the starting point of the particle's track |
| double | ztrue | Z coordinate of the starting point of the particle's track |
| double | ttrue | time coordinate of the starting point of the particle's track |
| double | ttrue | Time coordinate of the starting point of the particle's track |
| double | pxreco | Reconstructed X component of the particle momentum |
| double | pyreco | Reconstructed Y component of the particle momentum |
| double | pzreco | Reconstructed Z component of the particle momentum |
......
......