File indexing completed on 2024-04-06 12:20:55
0001 #ifndef L1TMuonEndCap_SingleHitTrack_h
0002 #define L1TMuonEndCap_SingleHitTrack_h
0003
0004 #include "L1Trigger/L1TMuonEndCap/interface/Common.h"
0005
0006 class SingleHitTrack {
0007 public:
0008 void configure(int verbose, int endcap, int sector, int bx, int maxTracks, bool useSingleHits);
0009
0010 void process(const EMTFHitCollection& conv_hits, EMTFTrackCollection& best_tracks) const;
0011
0012 private:
0013 int verbose_, endcap_, sector_, bx_;
0014 int maxTracks_;
0015 bool useSingleHits_;
0016 };
0017
0018 #endif