test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros 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 //------------------------------------
35 // Collaborating Class Declarations --
36 //------------------------------------
37 
43 class L1MuDTTFConfig;
44 class L1MuDTSecProcMap;
45 class L1MuDTSecProcId;
47 class L1MuDTEtaProcessor;
48 class L1MuDTWedgeSorter;
49 class L1MuDTMuonSorter;
50 class L1MuDTTrackCand;
51 class L1MuRegionalCand;
52 
53 // ---------------------
54 // -- Class Interface --
55 // ---------------------
56 
57 
59 
60  public:
61 
63  typedef std::vector<L1MuRegionalCand>::const_iterator TFtracks_const_iter;
64  typedef std::vector<L1MuRegionalCand>::iterator TFtracks_iter;
65 
68 
70  virtual ~L1MuDTTrackFinder();
71 
73  void setup(edm::ConsumesCollector&& iC);
74 
76  void run(const edm::Event& e, const edm::EventSetup& c);
77 
79  void reset();
80 
82  const L1MuDTSectorProcessor* sp(const L1MuDTSecProcId&) const;
83 
85  inline const L1MuDTEtaProcessor* ep(int id) const { return m_epvec[id]; }
86 
88  inline const L1MuDTWedgeSorter* ws(int id) const { return m_wsvec[id]; }
89 
91  inline const L1MuDTMuonSorter* ms() const { return m_ms; }
92 
94  int numberOfTracks();
95 
97 
99 
100  void clear();
101 
103  int numberOfTracks(int bx);
104 
106  static L1MuDTTFConfig* config() { return m_config; }
107 
108  std::vector<L1MuDTTrackCand>& getcache0() { return _cache0; }
109 
110  std::vector<L1MuRegionalCand>& getcache() { return _cache; }
111 
112  private:
113 
115  virtual void reconstruct(const edm::Event& e, const edm::EventSetup& c) { reset(); run(e,c); }
116 
117  private:
118 
119  std::vector<L1MuDTTrackCand> _cache0;
120  std::vector<L1MuRegionalCand> _cache;
122  std::vector<L1MuDTEtaProcessor*> m_epvec;
123  std::vector<L1MuDTWedgeSorter*> m_wsvec;
126 
128 
129 };
130 
131 #endif
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.