File indexing completed on 2024-09-07 04:36:59
0001 #ifndef L1T_OmtfP1_GhostBusterPreferRefDt_H
0002 #define L1T_OmtfP1_GhostBusterPreferRefDt_H
0003
0004 #include "L1Trigger/L1TMuonOverlapPhase1/interface/Omtf/AlgoMuon.h"
0005 #include "L1Trigger/L1TMuonOverlapPhase1/interface/Omtf/IGhostBuster.h"
0006 #include "L1Trigger/L1TMuonOverlapPhase1/interface/Omtf/OMTFConfiguration.h"
0007
0008 class GhostBusterPreferRefDt : public IGhostBuster {
0009 private:
0010 const OMTFConfiguration* omtfConfig;
0011
0012 public:
0013 GhostBusterPreferRefDt(const OMTFConfiguration* omtfConfig) : omtfConfig(omtfConfig) {}
0014
0015 ~GhostBusterPreferRefDt() override {}
0016
0017 AlgoMuons select(AlgoMuons refHitCands, int charge = 0) override;
0018 };
0019 #endif