CMS 3D CMS Logo

L1MuDTERS.h
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
15 //
16 //--------------------------------------------------
17 #ifndef L1MUDT_ERS_H
18 #define L1MUDT_ERS_H
19 
20 //---------------
21 // C++ Headers --
22 //---------------
23 
24 #include <utility>
25 
26 //----------------------
27 // Base Class Headers --
28 //----------------------
29 
31 
32 //------------------------------------
33 // Collaborating Class Declarations --
34 //------------------------------------
35 
36 class L1MuDTTrackSegPhi;
37 class L1MuDTSEU;
38 
39 // ---------------------
40 // -- Class Interface --
41 // ---------------------
42 
44 public:
46  L1MuDTERS(const L1MuDTSEU&);
47 
49  ~L1MuDTERS() override;
50 
52  void run() override;
53 
55  void reset() override;
56 
58  inline unsigned int quality(int id) const { return m_quality[id]; }
59 
61  inline unsigned short int address(int id) const { return m_address[id]; }
62 
64  std::pair<const L1MuDTTrackSegPhi*, const L1MuDTTrackSegPhi*> ts(int id) const;
65 
66 private:
67  const L1MuDTSEU& m_seu;
68 
69  unsigned short int m_quality[2]; //@@ 1 bit
70  unsigned short int m_address[2]; //@@ 4 bits
71 
74 };
75 
76 #endif
L1MuDTERS::address
unsigned short int address(int id) const
return extrapolation address; (address = 15 indicates negative ext. result)
Definition: L1MuDTERS.h:61
L1MuDTERS::L1MuDTERS
L1MuDTERS(const L1MuDTSEU &)
constructor
Definition: L1MuDTERS.cc:46
L1MuDTERS::quality
unsigned int quality(int id) const
return extrapolation quality
Definition: L1MuDTERS.h:58
L1MuDTERS::m_address
unsigned short int m_address[2]
Definition: L1MuDTERS.h:70
L1MuDTERS::m_seu
const L1MuDTSEU & m_seu
Definition: L1MuDTERS.h:67
L1AbstractProcessor
Definition: L1AbstractProcessor.h:34
L1MuDTERS::~L1MuDTERS
~L1MuDTERS() override
destructor
Definition: L1MuDTERS.cc:52
L1MuDTERS::m_quality
unsigned short int m_quality[2]
Definition: L1MuDTERS.h:69
L1MuDTERS::ts
std::pair< const L1MuDTTrackSegPhi *, const L1MuDTTrackSegPhi * > ts(int id) const
return pointer to start and target track segment
Definition: L1MuDTERS.cc:108
L1AbstractProcessor.h
L1MuDTERS::reset
void reset() override
reset ERS
Definition: L1MuDTERS.cc:96
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:29
L1MuDTERS
Definition: L1MuDTERS.h:43
L1MuDTERS::m_target
const L1MuDTTrackSegPhi * m_target[2]
Definition: L1MuDTERS.h:73
L1MuDTTrackSegPhi
Definition: L1MuDTTrackSegPhi.h:36
L1MuDTERS::run
void run() override
run L1MuDTERS
Definition: L1MuDTERS.cc:61
L1MuDTSEU
Definition: L1MuDTSEU.h:48
L1MuDTERS::m_start
const L1MuDTTrackSegPhi * m_start[2]
Definition: L1MuDTERS.h:72