File indexing completed on 2025-01-18 09:28:06
0001
0002
0003 #ifndef ACTSPODIOEDM_TrackDATA_H
0004 #define ACTSPODIOEDM_TrackDATA_H
0005
0006 #include "ActsPodioEdm/ParticleHypothesis.h"
0007 #include "ActsPodioEdm/Surface.h"
0008 #include "ActsPodioEdm/TrackInfo.h"
0009
0010 namespace ActsPodioEdm {
0011
0012
0013
0014
0015
0016 class TrackData {
0017 public:
0018 ::ActsPodioEdm::TrackInfo data{};
0019 ::ActsPodioEdm::Surface referenceSurface{};
0020 ::ActsPodioEdm::ParticleHypothesis
0021 particleHypothesis{};
0022 };
0023
0024 }
0025
0026 #endif