Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 /*
0002  * IGhostBuster.h
0003  *
0004  *  Created on: Jun 28, 2017
0005  *      Author: kbunkow
0006  */
0007 
0008 #ifndef OMTF_IGHOSTBUSTER_H_
0009 #define OMTF_IGHOSTBUSTER_H_
0010 
0011 #include "L1Trigger/L1TMuonOverlap/interface/AlgoMuon.h"
0012 #include <vector>
0013 
0014 class IGhostBuster {
0015 public:
0016   virtual ~IGhostBuster() {}
0017 
0018   virtual std::vector<AlgoMuon> select(std::vector<AlgoMuon> refHitCands, int charge = 0) = 0;
0019 };
0020 
0021 #endif /* OMTF_IGHOSTBUSTER_H_ */