CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions
L1MuGMTLFOvlEtaConvLUT Class Reference

#include <L1MuGMTLFOvlEtaConvLUT.h>

Inheritance diagram for L1MuGMTLFOvlEtaConvLUT:
L1MuGMTLUT

Public Types

enum  {
  DT, CSC, bRPC, fRPC,
  ovlCSC, ovlDT
}
 
- Public Types inherited from L1MuGMTLUT
typedef std::pair< std::string, unsigned > port
 

Public Member Functions

 L1MuGMTLFOvlEtaConvLUT ()
 constuctor using function-lookup More...
 
unsigned LookupFunctionPacked (int idx, unsigned address) const override
 access to lookup function with packed input and output More...
 
unsigned SpecificLookup (int idx, unsigned eta6) const
 specific lookup function for entire output field More...
 
unsigned SpecificLookup_eta_ovl (int idx, unsigned eta6) const
 specific lookup function for eta_ovl More...
 
 ~L1MuGMTLFOvlEtaConvLUT () override
 destructor More...
 
- Public Member Functions inherited from L1MuGMTLUT
 L1MuGMTLUT ()
 Init and Destruct. More...
 
 L1MuGMTLUT (const char *name, const std::vector< std::string > &instances, const std::vector< port > &in_widths, const std::vector< port > &out_widths, unsigned vme_addr_width=0, bool distrRAM=false)
 constructor with init More...
 
 L1MuGMTLUT (const char *name, const std::string &instances, const std::string &inputs, const std::string &outputs, unsigned vme_addr_width=0, bool distrRAM=false)
 
void Load (const char *path)
 I/O functions. More...
 
std::vector< unsigned > Lookup (int idx, const std::vector< unsigned > &address) const
 additional lookup function (std::vector -> vector) More...
 
std::vector< unsigned > Lookup (int idx, unsigned address) const
 additional lookup function (unsigned -> std::vector) More...
 
unsigned LookupPacked (int idx, unsigned) const
 
unsigned LookupPacked (int idx, const std::vector< unsigned > &address) const
 additional lookup function (std::vector -> unisgned) More...
 
void MakeSubClass (const char *fname="", const char *template_file_h="../interface/L1MuGMTLUT_SubClass.h_template", const char *template_file_cc="../interface/L1MuGMTLUT_SubClass.cc_template")
 Add Generate SubClass method. More...
 
std::string Name ()
 
int numberOfInstances ()
 get the number of Instances More...
 
void Save (const char *path)
 save to LUT file More...
 
virtual ~L1MuGMTLUT ()
 destructor More...
 

Private Member Functions

void InitParameters ()
 Initialize scales, configuration parameters, alignment constants, ... More...
 
unsigned TheLookupFunction (int idx, unsigned eta6) const
 The lookup function - here the functionality of the LUT is implemented. More...
 

Additional Inherited Members

- Protected Member Functions inherited from L1MuGMTLUT
void Init (const char *name, const std::vector< std::string > &instances, const std::vector< port > &in_widths, const std::vector< port > &out_widths, unsigned vme_addr_width=0, bool distrRAM=false)
 Initialize the LUT. More...
 
void Set (int idx, unsigned address, unsigned value)
 set with single address and value More...
 
std::vector< unsigned > u2vec (unsigned value, const std::vector< port > &widths) const
 generate composite address or value from compact unsigned More...
 
unsigned vec2u (const std::vector< unsigned > &vec, const std::vector< port > &widths) const
 generate address or value from composite address or value More...
 
- Protected Attributes inherited from L1MuGMTLUT
std::vector< std::vector< unsigned > > m_Contents
 
bool m_distrRAM
 
unsigned m_GeneralLUTVersion
 
bool m_initialized
 
std::vector< portm_Inputs
 
std::vector< std::string > m_InstNames
 
std::string m_name
 
int m_NLUTS
 
std::vector< portm_Outputs
 
bool m_saveFlag
 
unsigned m_TotalInWidth
 
unsigned m_TotalOutWidth
 
bool m_UseLookupFunction
 
unsigned m_vme_addr_width
 

Detailed Description

OvlEtaConv look-up table

this class was automatically generated by L1MuGMTLUT::MakeSubClass()

Definition at line 40 of file L1MuGMTLFOvlEtaConvLUT.h.

Member Enumeration Documentation

anonymous enum

Constructor & Destructor Documentation

L1MuGMTLFOvlEtaConvLUT::L1MuGMTLFOvlEtaConvLUT ( )
inline

constuctor using function-lookup

Definition at line 46 of file L1MuGMTLFOvlEtaConvLUT.h.

References InitParameters().

46  : L1MuGMTLUT("LFOvlEtaConv",
47  "DT CSC bRPC fRPC ovlCSC ovlDT",
48  "eta6(6)",
49  "eta_ovl(4)", 6, true) {
51  } ;
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
L1MuGMTLUT()
Init and Destruct.
Definition: L1MuGMTLUT.h:83
L1MuGMTLFOvlEtaConvLUT::~L1MuGMTLFOvlEtaConvLUT ( )
inlineoverride

destructor

Definition at line 54 of file L1MuGMTLFOvlEtaConvLUT.h.

54 {};

Member Function Documentation

void L1MuGMTLFOvlEtaConvLUT::InitParameters ( )
private

Initialize scales, configuration parameters, alignment constants, ...

Definition at line 38 of file L1MuGMTLFOvlEtaConvLUT.cc.

Referenced by L1MuGMTLFOvlEtaConvLUT(), and LookupFunctionPacked().

38  {
39 }
unsigned L1MuGMTLFOvlEtaConvLUT::LookupFunctionPacked ( int  idx,
unsigned  address 
) const
inlineoverridevirtual

access to lookup function with packed input and output

Reimplemented from L1MuGMTLUT.

Definition at line 74 of file L1MuGMTLFOvlEtaConvLUT.h.

References training_settings::idx, InitParameters(), L1MuGMTLUT::m_Inputs, TheLookupFunction(), and L1MuGMTLUT::u2vec().

74  {
75  std::vector<unsigned> addr = u2vec(address, m_Inputs);
76  return TheLookupFunction(idx ,addr[0]);
77 
78  };
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:201
unsigned TheLookupFunction(int idx, unsigned eta6) const
The lookup function - here the functionality of the LUT is implemented.
std::vector< unsigned > u2vec(unsigned value, const std::vector< port > &widths) const
generate composite address or value from compact unsigned
Definition: L1MuGMTLUT.h:239
unsigned L1MuGMTLFOvlEtaConvLUT::SpecificLookup ( int  idx,
unsigned  eta6 
) const
inline

specific lookup function for entire output field

Definition at line 64 of file L1MuGMTLFOvlEtaConvLUT.h.

References L1MuGMTLUT::LookupPacked().

64  {
65  std::vector<unsigned> addr(1);
66  addr[0] = eta6;
67  return LookupPacked(idx, addr);
68  };
unsigned LookupPacked(int idx, unsigned) const
Definition: L1MuGMTLUT.h:260
unsigned L1MuGMTLFOvlEtaConvLUT::SpecificLookup_eta_ovl ( int  idx,
unsigned  eta6 
) const
inline

specific lookup function for eta_ovl

Definition at line 57 of file L1MuGMTLFOvlEtaConvLUT.h.

References L1MuGMTLUT::Lookup().

Referenced by L1MuGMTMatcher::lookup_mq().

57  {
58  std::vector<unsigned> addr(1);
59  addr[0] = eta6;
60  return Lookup(idx, addr) [0];
61  };
std::vector< unsigned > Lookup(int idx, const std::vector< unsigned > &address) const
additional lookup function (std::vector -> vector)
Definition: L1MuGMTLUT.h:115
unsigned L1MuGMTLFOvlEtaConvLUT::TheLookupFunction ( int  idx,
unsigned  eta6 
) const
private

The lookup function - here the functionality of the LUT is implemented.

Definition at line 58 of file L1MuGMTLFOvlEtaConvLUT.cc.

References bRPC, CSC, DT, fRPC, L1MuScale::getCenter(), L1MuGMTConfig::getGMTScales(), L1MuGMTScales::getOvlEtaScale(), L1MuScale::getPacked(), L1MuTriggerScales::getRegionalEtaScale(), L1MuScale::getScaleMax(), L1MuScale::getScaleMin(), L1MuGMTConfig::getTriggerScales(), ovlCSC, and ovlDT.

Referenced by LookupFunctionPacked().

58  {
59  // idx is DT, CSC, bRPC, fRPC, ovlCSC, ovlDT
60  // INPUTS: eta6(6)
61  // OUTPUTS: eta_ovl(4)
62 
63  const L1MuGMTScales* theGMTScales = L1MuGMTConfig::getGMTScales();
64  const L1MuTriggerScales* theTriggerScales = L1MuGMTConfig::getTriggerScales();
65 
66  int idx_drcr = 0;
67 
68  switch (idx) {
69  case DT : idx_drcr = 0; break;
70  case CSC : idx_drcr = 2; break;
71  case bRPC : idx_drcr = 1; break;
72  case fRPC : idx_drcr = 3; break;
73  case ovlCSC : idx_drcr = 2; break;
74  case ovlDT : idx_drcr = 0; break;
75  }
76 
77  float etaValue = theTriggerScales->getRegionalEtaScale(idx_drcr)->getCenter( eta6 );
78 
79  unsigned eta4bit = 0;
80  if (fabs(etaValue) < theGMTScales->getOvlEtaScale(idx_drcr)->getScaleMin() ||
81  fabs(etaValue) > theGMTScales->getOvlEtaScale(idx_drcr)->getScaleMax() ) {
82  eta4bit = 7; // out of range code is max pos value
83  }
84 
85  else {
86  eta4bit = theGMTScales->getOvlEtaScale(idx_drcr)->getPacked( etaValue );
87  // cout << "etaValue = " << etaValue << " eta OVERLAP= " << eta4bit << endl;
88  }
89 
90  return eta4bit;
91 }
virtual float getCenter(unsigned packed) const =0
get the center of bin represented by packed
virtual float getScaleMin() const =0
get the lower edge of the first bin
static const L1MuGMTScales * getGMTScales()
static const L1MuTriggerScales * getTriggerScales()
const L1MuScale * getRegionalEtaScale(int isys) const
get the regioanl muon trigger eta scale, isys = 0(DT), 1(bRPC), 2(CSC), 3(fwdRPC) ...
virtual unsigned getPacked(float value) const =0
pack a value
virtual float getScaleMax() const =0
get the upper edge of the last bin
const L1MuScale * getOvlEtaScale(int isys) const
get the overlap eta scale (4 bits); isys = 0(DT), 1(bRPC), 2(CSC), 3(fwdRPC)