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