All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MuonTrack.hh
Go to the documentation of this file.
1 #ifndef MuonTrack_hh_
2 #define MuonTrack_hh_
3 #include <cstdint>
4 
5 #include <vector>
6 
7 namespace sbnd::comm {
8 
9  struct MuonTrack{
10 
11  int32_t t0_us;
12 
13  float x1_pos;
14  float y1_pos;
15  float z1_pos;
16  float x2_pos;
17  float y2_pos;
18  float z2_pos;
19 
20  float theta_xz;
21  float theta_yz;
22 
23  uint8_t tpc;
24  int type;
25 
26  MuonTrack() {}
27 
28  };
29 
30 } // namespace sbnd::comm
31 
32 #endif