CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TrackSeeder.h
Go to the documentation of this file.
1 #ifndef __L1TMUON_TRACKSEEDER_H__
2 #define __L1TMUON_TRACKSEEDER_H__
3 //
4 // Class: L1TMuon::TrackSeeder
5 //
6 // Info: This class takes a list of stubs in an eta-phi slice and attempts
7 // to find seeds for tracks. A track seed defines a reference point
8 // from which other stubs may be found and added to the track.
9 //
10 // Author: L. Gray (FNAL)
11 //
12 
13 #include <memory>
14 #include <vector>
15 #include <algorithm>
16 
17 namespace L1TMuon {
18  class TrackSeeder {
19  public:
20  TrackSeeder();
21  ~TrackSeeder();
22  };
23 }
24 
25 #endif