CMS 3D CMS Logo

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

#include <L1MuGMTLFPhiProEtaConvLUT.h>

Inheritance diagram for L1MuGMTLFPhiProEtaConvLUT:
L1MuGMTLUT

Public Types

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

Public Member Functions

 L1MuGMTLFPhiProEtaConvLUT ()
 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 eta_in) const
 specific lookup function for entire output field More...
 
unsigned SpecificLookup_eta_out (int idx, unsigned eta_in) const
 specific lookup function for eta_out More...
 
 ~L1MuGMTLFPhiProEtaConvLUT () override
 destructor More...
 
- Public Member Functions inherited from L1MuGMTLUT
 L1MuGMTLUT ()
 Init and Destruct. 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)
 
 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...
 
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, const std::vector< unsigned > &address) const
 additional lookup function (std::vector -> unisgned) More...
 
unsigned LookupPacked (int idx, unsigned) const
 
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 eta_in) 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

LFPhiProEtaConv look-up table

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

Definition at line 38 of file L1MuGMTLFPhiProEtaConvLUT.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
Enumerator
DT 
BRPC 
CSC 
FRPC 

Definition at line 40 of file L1MuGMTLFPhiProEtaConvLUT.h.

40 { DT, BRPC, CSC, FRPC };

Constructor & Destructor Documentation

◆ L1MuGMTLFPhiProEtaConvLUT()

L1MuGMTLFPhiProEtaConvLUT::L1MuGMTLFPhiProEtaConvLUT ( )
inline

constuctor using function-lookup

Definition at line 43 of file L1MuGMTLFPhiProEtaConvLUT.h.

43  : L1MuGMTLUT("LFPhiProEtaConv", "DT BRPC CSC FRPC", "eta_in(6)", "eta_out(4)", 6, true) {
45  };

References InitParameters().

◆ ~L1MuGMTLFPhiProEtaConvLUT()

L1MuGMTLFPhiProEtaConvLUT::~L1MuGMTLFPhiProEtaConvLUT ( )
inlineoverride

destructor

Definition at line 48 of file L1MuGMTLFPhiProEtaConvLUT.h.

48 {};

Member Function Documentation

◆ InitParameters()

void L1MuGMTLFPhiProEtaConvLUT::InitParameters ( )
private

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

Definition at line 40 of file L1MuGMTLFPhiProEtaConvLUT.cc.

40 {}

Referenced by L1MuGMTLFPhiProEtaConvLUT().

◆ LookupFunctionPacked()

unsigned L1MuGMTLFPhiProEtaConvLUT::LookupFunctionPacked ( int  idx,
unsigned  address 
) const
inlineoverridevirtual

access to lookup function with packed input and output

Reimplemented from L1MuGMTLUT.

Definition at line 66 of file L1MuGMTLFPhiProEtaConvLUT.h.

66  {
67  std::vector<unsigned> addr = u2vec(address, m_Inputs);
68  return TheLookupFunction(idx, addr[0]);
69  };

References generateTowerEtThresholdLUT::addr, heavyIonCSV_trainingSettings::idx, L1MuGMTLUT::m_Inputs, TheLookupFunction(), and L1MuGMTLUT::u2vec().

◆ SpecificLookup()

unsigned L1MuGMTLFPhiProEtaConvLUT::SpecificLookup ( int  idx,
unsigned  eta_in 
) const
inline

specific lookup function for entire output field

Definition at line 58 of file L1MuGMTLFPhiProEtaConvLUT.h.

58  {
59  std::vector<unsigned> addr(1);
60  addr[0] = eta_in;
61  return LookupPacked(idx, addr);
62  };

References generateTowerEtThresholdLUT::addr, heavyIonCSV_trainingSettings::idx, and L1MuGMTLUT::LookupPacked().

◆ SpecificLookup_eta_out()

unsigned L1MuGMTLFPhiProEtaConvLUT::SpecificLookup_eta_out ( int  idx,
unsigned  eta_in 
) const
inline

specific lookup function for eta_out

Definition at line 51 of file L1MuGMTLFPhiProEtaConvLUT.h.

51  {
52  std::vector<unsigned> addr(1);
53  addr[0] = eta_in;
54  return Lookup(idx, addr)[0];
55  };

References generateTowerEtThresholdLUT::addr, heavyIonCSV_trainingSettings::idx, and L1MuGMTLUT::Lookup().

Referenced by L1MuGMTMerger::projectedPhi().

◆ TheLookupFunction()

unsigned L1MuGMTLFPhiProEtaConvLUT::TheLookupFunction ( int  idx,
unsigned  eta_in 
) const
private

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

Definition at line 50 of file L1MuGMTLFPhiProEtaConvLUT.cc.

50  {
51  // idx is DT, BRPC, CSC, FRPC
52  // INPUTS: eta_in(6)
53  // OUTPUTS: eta_out(4)
54 
55  const L1MuGMTScales* theGMTScales = L1MuGMTConfig::getGMTScales();
56  const L1MuTriggerScales* theTriggerScales = L1MuGMTConfig::getTriggerScales();
57 
58  int isRPC = idx % 2;
59  int isFWD = idx / 2;
60 
61  float etaValue = theTriggerScales->getRegionalEtaScale(idx)->getCenter(eta_in);
62 
63  unsigned eta4bit = 0;
64  if ((isRPC && isFWD && fabs(etaValue) < theGMTScales->getReducedEtaScale(3)->getScaleMin()) ||
65  (isRPC && !isFWD && fabs(etaValue) > theGMTScales->getReducedEtaScale(1)->getScaleMax())) {
66  if (!m_saveFlag)
67  edm::LogWarning("LUTRangeViolation") << "L1MuGMTMIAUEtaConvLUT::TheLookupFunction: RPC "
68  << (isFWD ? "fwd" : "brl") << " eta value out of range: " << etaValue;
69  } else
70  eta4bit = theGMTScales->getReducedEtaScale(idx)->getPacked(etaValue);
71 
72  return eta4bit;
73 }

References L1MuScale::getCenter(), L1MuGMTConfig::getGMTScales(), L1MuScale::getPacked(), L1MuGMTScales::getReducedEtaScale(), L1MuTriggerScales::getRegionalEtaScale(), L1MuScale::getScaleMax(), L1MuScale::getScaleMin(), L1MuGMTConfig::getTriggerScales(), heavyIonCSV_trainingSettings::idx, GeomDetEnumerators::isRPC(), and L1MuGMTLUT::m_saveFlag.

Referenced by LookupFunctionPacked().

GeomDetEnumerators::isRPC
bool isRPC(GeomDetEnumerators::SubDetector m)
Definition: GeomDetEnumerators.cc:90
L1MuGMTLUT::m_Inputs
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:214
L1MuGMTScales
Definition: L1MuGMTScales.h:34
L1MuGMTLUT::m_saveFlag
bool m_saveFlag
Definition: L1MuGMTLUT.h:221
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
heavyIonCSV_trainingSettings.idx
idx
Definition: heavyIonCSV_trainingSettings.py:5
L1MuGMTConfig::getGMTScales
static const L1MuGMTScales * getGMTScales()
Definition: L1MuGMTConfig.h:172
generateTowerEtThresholdLUT.addr
addr
Definition: generateTowerEtThresholdLUT.py:57
L1MuGMTLFPhiProEtaConvLUT::DT
Definition: L1MuGMTLFPhiProEtaConvLUT.h:40
L1MuGMTConfig::getTriggerScales
static const L1MuTriggerScales * getTriggerScales()
Definition: L1MuGMTConfig.h:178
L1MuTriggerScales::getRegionalEtaScale
const L1MuScale * getRegionalEtaScale(int isys) const
get the regioanl muon trigger eta scale, isys = 0(DT), 1(bRPC), 2(CSC), 3(fwdRPC)
Definition: L1MuTriggerScales.h:158
L1MuScale::getScaleMin
virtual float getScaleMin() const =0
get the lower edge of the first bin
L1MuGMTScales::getReducedEtaScale
const L1MuScale * getReducedEtaScale(int isys) const
get the recuced eta scale for matching in the overlap region (4 bit); isys = 0(DT),...
Definition: L1MuGMTScales.h:187
L1MuGMTLFPhiProEtaConvLUT::BRPC
Definition: L1MuGMTLFPhiProEtaConvLUT.h:40
L1MuGMTLFPhiProEtaConvLUT::FRPC
Definition: L1MuGMTLFPhiProEtaConvLUT.h:40
L1MuGMTLFPhiProEtaConvLUT::TheLookupFunction
unsigned TheLookupFunction(int idx, unsigned eta_in) const
The lookup function - here the functionality of the LUT is implemented.
Definition: L1MuGMTLFPhiProEtaConvLUT.cc:50
L1MuGMTLUT::LookupPacked
unsigned LookupPacked(int idx, unsigned) const
Definition: L1MuGMTLUT.h:272
L1MuGMTLFPhiProEtaConvLUT::CSC
Definition: L1MuGMTLFPhiProEtaConvLUT.h:40
L1MuTriggerScales
Definition: L1MuTriggerScales.h:33
L1MuGMTLUT::u2vec
std::vector< unsigned > u2vec(unsigned value, const std::vector< port > &widths) const
generate composite address or value from compact unsigned
Definition: L1MuGMTLUT.h:251
L1MuScale::getPacked
virtual unsigned getPacked(float value) const =0
pack a value
L1MuGMTLUT::L1MuGMTLUT
L1MuGMTLUT()
Init and Destruct.
Definition: L1MuGMTLUT.h:80
L1MuGMTLUT::Lookup
std::vector< unsigned > Lookup(int idx, const std::vector< unsigned > &address) const
additional lookup function (std::vector -> vector)
Definition: L1MuGMTLUT.h:121
L1MuGMTLFPhiProEtaConvLUT::InitParameters
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
Definition: L1MuGMTLFPhiProEtaConvLUT.cc:40
L1MuScale::getScaleMax
virtual float getScaleMax() const =0
get the upper edge of the last bin
L1MuScale::getCenter
virtual float getCenter(unsigned packed) const =0
get the center of bin represented by packed