CMS 3D CMS Logo

L1MuGMTLFPtMixLUT.h
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
10 //
11 // Author :
12 // H. Sakulin HEPHY Vienna
13 //
14 // Migrated to CMSSW:
15 // I. Mikulec
16 //
17 //--------------------------------------------------
18 #ifndef L1TriggerGlobalMuonTrigger_L1MuGMTLFPtMixLUT_h
19 #define L1TriggerGlobalMuonTrigger_L1MuGMTLFPtMixLUT_h
20 
21 //---------------
22 // C++ Headers --
23 //---------------
24 
25 
26 //----------------------
27 // Base Class Headers --
28 //----------------------
30 
31 //------------------------------------
32 // Collaborating Class Declarations --
33 //------------------------------------
34 
35 // ---------------------
36 // -- Class Interface --
37 // ---------------------
38 
39 
40 class L1MuGMTLFPtMixLUT : public L1MuGMTLUT {
41 
42  public:
43  enum {DTRPC, CSCRPC};
44 
46  L1MuGMTLFPtMixLUT() : L1MuGMTLUT("LFPtMix",
47  "DTRPC CSCRPC",
48  "pt_dtcsc(5) pt_rpc(5)",
49  "pt_mixed(5)", 9, false) {
51  } ;
52 
54  virtual ~L1MuGMTLFPtMixLUT() {};
55 
57  unsigned SpecificLookup_pt_mixed (int idx, unsigned pt_dtcsc, unsigned pt_rpc) const {
58  std::vector<unsigned> addr(2);
59  addr[0] = pt_dtcsc;
60  addr[1] = pt_rpc;
61  return Lookup(idx, addr) [0];
62  };
63 
65  unsigned SpecificLookup (int idx, unsigned pt_dtcsc, unsigned pt_rpc) const {
66  std::vector<unsigned> addr(2);
67  addr[0] = pt_dtcsc;
68  addr[1] = pt_rpc;
69  return LookupPacked(idx, addr);
70  };
71 
72 
73 
75 
76  virtual unsigned LookupFunctionPacked (int idx, unsigned address) const {
77  std::vector<unsigned> addr = u2vec(address, m_Inputs);
78  return TheLookupFunction(idx ,addr[0] ,addr[1]);
79 
80  };
81 
82  private:
84  void InitParameters();
85 
87  unsigned TheLookupFunction (int idx, unsigned pt_dtcsc, unsigned pt_rpc) const;
88 
90 };
91 #endif
92 
93 
94 
95 
96 
97 
98 
99 
100 
101 
102 
103 
104 
105 
106 
107 
108 
109 
110 
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
std::vector< unsigned > Lookup(int idx, const std::vector< unsigned > &address) const
additional lookup function (std::vector -> vector)
Definition: L1MuGMTLUT.h:115
unsigned TheLookupFunction(int idx, unsigned pt_dtcsc, unsigned pt_rpc) const
The lookup function - here the functionality of the LUT is implemented.
virtual ~L1MuGMTLFPtMixLUT()
destructor
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:201
unsigned SpecificLookup_pt_mixed(int idx, unsigned pt_dtcsc, unsigned pt_rpc) const
specific lookup function for pt_mixed
unsigned SpecificLookup(int idx, unsigned pt_dtcsc, unsigned pt_rpc) const
specific lookup function for entire output field
std::vector< unsigned > u2vec(unsigned value, const std::vector< port > &widths) const
generate composite address or value from compact unsigned
Definition: L1MuGMTLUT.h:239
L1MuGMTLFPtMixLUT()
constuctor using function-lookup
virtual unsigned LookupFunctionPacked(int idx, unsigned address) const
access to lookup function with packed input and output
unsigned LookupPacked(int idx, unsigned) const
Definition: L1MuGMTLUT.h:260