Skip to main content

gondola_core/events/
mc_track.rs

1// The following file is part of gaps-online-software and published 
2// under the GPLv3 license
3
4
5use crate::prelude::*;
6
7#[derive(Debug, Clone, PartialEq)]
8#[cfg_attr(feature="pybindings", pyclass)] 
9pub struct McTrack {
10  pub hits : Vec<McHit>,
11}
12
13impl McTrack {
14  pub fn new() -> Self {
15    Self {
16      hits : Vec::<McHit>::new() 
17    }
18  }
19}