CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Private Member Functions
L1MuGMTLFSortRankCombineLUT Class Reference

#include <L1MuGMTLFSortRankCombineLUT.h>

Inheritance diagram for L1MuGMTLFSortRankCombineLUT:
L1MuGMTLUT

Public Types

enum  { DT, BRPC, CSC, FRPC }
 
- Public Types inherited from L1MuGMTLUT
typedef std::pair< std::string,
unsigned > 
port
 

Public Member Functions

 L1MuGMTLFSortRankCombineLUT ()
 constuctor using function-lookup More...
 
virtual unsigned LookupFunctionPacked (int idx, unsigned address) const
 access to lookup function with packed input and output More...
 
unsigned SpecificLookup (int idx, unsigned rank_etaq, unsigned rank_ptq, unsigned rank_etaphi) const
 specific lookup function for entire output field More...
 
unsigned SpecificLookup_sort_rank (int idx, unsigned rank_etaq, unsigned rank_ptq, unsigned rank_etaphi) const
 specific lookup function for sort_rank More...
 
virtual ~L1MuGMTLFSortRankCombineLUT ()
 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 rank_etaq, unsigned rank_ptq, unsigned rank_etaphi) 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

LFSortRankCombine look-up table

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

Definition at line 40 of file L1MuGMTLFSortRankCombineLUT.h.

Member Enumeration Documentation

anonymous enum

Constructor & Destructor Documentation

L1MuGMTLFSortRankCombineLUT::L1MuGMTLFSortRankCombineLUT ( )
inline

constuctor using function-lookup

Definition at line 46 of file L1MuGMTLFSortRankCombineLUT.h.

References InitParameters().

46  : L1MuGMTLUT("LFSortRankCombine",
47  "DT BRPC CSC FRPC",
48  "rank_etaq(2) rank_ptq(7) rank_etaphi(2)",
49  "sort_rank(8)", 10, false) {
51  } ;
L1MuGMTLUT()
Init and Destruct.
Definition: L1MuGMTLUT.h:83
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
virtual L1MuGMTLFSortRankCombineLUT::~L1MuGMTLFSortRankCombineLUT ( )
inlinevirtual

destructor

Definition at line 54 of file L1MuGMTLFSortRankCombineLUT.h.

54 {};

Member Function Documentation

void L1MuGMTLFSortRankCombineLUT::InitParameters ( )
private

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

Definition at line 32 of file L1MuGMTLFSortRankCombineLUT.cc.

Referenced by L1MuGMTLFSortRankCombineLUT().

32  {
33 }
virtual unsigned L1MuGMTLFSortRankCombineLUT::LookupFunctionPacked ( int  idx,
unsigned  address 
) const
inlinevirtual

access to lookup function with packed input and output

Reimplemented from L1MuGMTLUT.

Definition at line 78 of file L1MuGMTLFSortRankCombineLUT.h.

References L1MuGMTLUT::m_Inputs, TheLookupFunction(), and L1MuGMTLUT::u2vec().

78  {
79  std::vector<unsigned> addr = u2vec(address, m_Inputs);
80  return TheLookupFunction(idx ,addr[0] ,addr[1] ,addr[2]);
81 
82  };
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:201
unsigned TheLookupFunction(int idx, unsigned rank_etaq, unsigned rank_ptq, unsigned rank_etaphi) const
The lookup function - here the functionality of the LUT is implemented.
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
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 L1MuGMTLFSortRankCombineLUT::SpecificLookup ( int  idx,
unsigned  rank_etaq,
unsigned  rank_ptq,
unsigned  rank_etaphi 
) const
inline

specific lookup function for entire output field

Definition at line 66 of file L1MuGMTLFSortRankCombineLUT.h.

References L1MuGMTLUT::LookupPacked().

66  {
67  std::vector<unsigned> addr(3);
68  addr[0] = rank_etaq;
69  addr[1] = rank_ptq;
70  addr[2] = rank_etaphi;
71  return LookupPacked(idx, addr);
72  };
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
unsigned LookupPacked(int idx, unsigned) const
Definition: L1MuGMTLUT.h:260
unsigned L1MuGMTLFSortRankCombineLUT::SpecificLookup_sort_rank ( int  idx,
unsigned  rank_etaq,
unsigned  rank_ptq,
unsigned  rank_etaphi 
) const
inline

specific lookup function for sort_rank

Definition at line 57 of file L1MuGMTLFSortRankCombineLUT.h.

References L1MuGMTLUT::Lookup().

Referenced by L1MuGMTSortRankUnit::sort_rank().

57  {
58  std::vector<unsigned> addr(3);
59  addr[0] = rank_etaq;
60  addr[1] = rank_ptq;
61  addr[2] = rank_etaphi;
62  return Lookup(idx, addr) [0];
63  };
std::vector< unsigned > Lookup(int idx, const std::vector< unsigned > &address) const
additional lookup function (std::vector -&gt; vector)
Definition: L1MuGMTLUT.h:115
tuple idx
DEBUGGING if hasattr(process,&quot;trackMonIterativeTracking2012&quot;): print &quot;trackMonIterativeTracking2012 D...
unsigned L1MuGMTLFSortRankCombineLUT::TheLookupFunction ( int  idx,
unsigned  rank_etaq,
unsigned  rank_ptq,
unsigned  rank_etaphi 
) const
private

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

Definition at line 47 of file L1MuGMTLFSortRankCombineLUT.cc.

Referenced by LookupFunctionPacked().

47  {
48  // idx is DT, BRPC, CSC, FRPC
49  // INPUTS: rank_etaq(2) rank_ptq(7) rank_etaphi(2)
50  // OUTPUTS: sort_rank(8)
51 
52  // int isRPC = idx % 2;
53  // int isFWD = idx / 2;
54 
55  // by default return maximum
56  unsigned int rank_combined = rank_etaphi * 32 + rank_ptq;
57  // max is 127 + 32*2
58  if (rank_etaphi == 3) rank_combined = 0;
59 
60  return rank_combined;
61 }