Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:03

0001 #ifndef OMTF_GhostBuster_H
0002 #define OMTF_GhostBuster_H
0003 
0004 #include <vector>
0005 #include <ostream>
0006 
0007 #include <map>
0008 #include <set>
0009 
0010 #include <memory>
0011 
0012 #include "L1Trigger/L1TMuonOverlap/interface/IGhostBuster.h"
0013 #include "L1Trigger/L1TMuonOverlap/interface/AlgoMuon.h"
0014 
0015 class GhostBuster : public IGhostBuster {
0016 public:
0017   ~GhostBuster() override{};
0018   std::vector<AlgoMuon> select(std::vector<AlgoMuon> refHitCands, int charge = 0) override;
0019 };
0020 #endif