File indexing completed on 2026-08-26 08:38:45
0001
0002
0003 #ifndef ACTSPODIOEDM_TrackStateHitLinkCollection_H
0004 #define ACTSPODIOEDM_TrackStateHitLinkCollection_H
0005
0006 #include "ActsPodioEdm/TrackStateCollection.h"
0007 #include "ActsPodioEdm/TrackerHitLocalCollection.h"
0008
0009 #include <podio/LinkCollection.h>
0010
0011 namespace ActsPodioEdm {
0012
0013 using TrackStateHitLinkCollection =
0014 podio::LinkCollection<::ActsPodioEdm::TrackState,
0015 ::ActsPodioEdm::TrackerHitLocal>;
0016 using TrackStateHitLink = typename TrackStateHitLinkCollection::value_type;
0017 using MutableTrackStateHitLink =
0018 typename TrackStateHitLinkCollection::mutable_type;
0019
0020 }
0021
0022 #endif