CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
L1MuDTTrackFinder.h
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
18 //
19 //--------------------------------------------------
20 #ifndef L1MUDT_TRACK_FINDER_H
21 #define L1MUDT_TRACK_FINDER_H
22 
23 //---------------
24 // C++ Headers --
25 //---------------
26 
27 #include <vector>
28 
29 //----------------------
30 // Base Class Headers --
31 //----------------------
32 
33 //------------------------------------
34 // Collaborating Class Declarations --
35 //------------------------------------
36 
42 class L1MuDTTFConfig;
43 class L1MuDTSecProcMap;
44 class L1MuDTSecProcId;
46 class L1MuDTEtaProcessor;
47 class L1MuDTWedgeSorter;
48 class L1MuDTMuonSorter;
49 class L1MuDTTrackCand;
50 class L1MuRegionalCand;
51 
52 // ---------------------
53 // -- Class Interface --
54 // ---------------------
55 
57 public:
59  typedef std::vector<L1MuRegionalCand>::const_iterator TFtracks_const_iter;
60  typedef std::vector<L1MuRegionalCand>::iterator TFtracks_iter;
61 
64 
66  virtual ~L1MuDTTrackFinder();
67 
69  void setup(edm::ConsumesCollector&& iC);
70 
72  void run(const edm::Event& e, const edm::EventSetup& c);
73 
75  void reset();
76 
78  const L1MuDTSectorProcessor* sp(const L1MuDTSecProcId&) const;
79 
81  inline const L1MuDTEtaProcessor* ep(int id) const { return m_epvec[id]; }
82 
84  inline const L1MuDTWedgeSorter* ws(int id) const { return m_wsvec[id]; }
85 
87  inline const L1MuDTMuonSorter* ms() const { return m_ms; }
88 
90  int numberOfTracks();
91 
93 
95 
96  void clear();
97 
99  int numberOfTracks(int bx);
100 
102  static L1MuDTTFConfig* config() { return m_config; }
103 
104  std::vector<L1MuDTTrackCand>& getcache0() { return _cache0; }
105 
106  std::vector<L1MuRegionalCand>& getcache() { return _cache; }
107 
108 private:
110  virtual void reconstruct(const edm::Event& e, const edm::EventSetup& c) {
111  reset();
112  run(e, c);
113  }
114 
115 private:
116  std::vector<L1MuDTTrackCand> _cache0;
117  std::vector<L1MuRegionalCand> _cache;
119  std::vector<L1MuDTEtaProcessor*> m_epvec;
120  std::vector<L1MuDTWedgeSorter*> m_wsvec;
123 
125 };
126 
127 #endif
const edm::EventSetup & c
uint16_t *__restrict__ id
TFtracks_const_iter begin()
const L1MuDTMuonSorter * ms() const
get a pointer to the DT Muon Sorter
L1MuDTSecProcMap * m_spmap
Sector Processors.
L1MuDTMuonSorter * m_ms
DT Muon Sorter.
TFtracks_const_iter end()
void run(const edm::Event &e, const edm::EventSetup &c)
run the barrel MTTF
void setup(edm::ConsumesCollector &&iC)
build the structure of the barrel MTTF
const L1MuDTSectorProcessor * sp(const L1MuDTSecProcId &) const
get a pointer to a Sector Processor
const L1MuDTEtaProcessor * ep(int id) const
get a pointer to an Eta Processor, index [0-11]
std::vector< L1MuDTTrackCand > _cache0
edm::EDGetTokenT< L1MuDTChambPhContainer > m_DTDigiToken
virtual ~L1MuDTTrackFinder()
destructor
void reset()
reset the barrel MTTF
int numberOfTracks()
get number of muon candidates found by the barrel MTTF
L1MuDTTrackFinder(const edm::ParameterSet &ps, edm::ConsumesCollector &&iC)
constructor
std::vector< L1MuDTTrackCand > & getcache0()
std::vector< L1MuRegionalCand > _cache
std::vector< L1MuRegionalCand > & getcache()
std::vector< L1MuDTEtaProcessor * > m_epvec
Eta Processors.
virtual void reconstruct(const edm::Event &e, const edm::EventSetup &c)
run Track Finder and store candidates in cache
static L1MuDTTFConfig * config()
return configuration
std::vector< L1MuRegionalCand >::const_iterator TFtracks_const_iter
container for muon candidates
std::vector< L1MuRegionalCand >::iterator TFtracks_iter
const L1MuDTWedgeSorter * ws(int id) const
get a pointer to a Wedge Sorter, index [0-11]
static L1MuDTTFConfig * m_config
Track Finder configuration.
std::vector< L1MuDTWedgeSorter * > m_wsvec
Wedge Sorters.