Skip to content
Snippets Groups Projects

Include Muon hits in PrKM

Merged Paula Herrero Gascon requested to merge paula-muonPrKM into master
All threads resolved!
2 files
+ 8
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -14,6 +14,7 @@
#include "PrSciFiHits.h"
#include "PrUTHits.h"
#include "PrVeloHits.h"
#include "MuonDAQ/MuonHitContainer.h"
#include <tuple>
@@ -26,7 +27,7 @@ namespace LHCb::Pr {
VP,
UT,
FT,
// TODO: Muon
Muon,
};
template <HitType T>
@@ -64,6 +65,11 @@ namespace LHCb::Pr {
// inherit constructors
using FT::details::Hits::Hits;
};
template <>
struct Hits<HitType::Muon> : MuonHitContainer {
// inherit constructors
using MuonHitContainer::hits;
};
// simply a convenient wrapper around std::get
template <HitType Type, HitType... Types>
Loading