CMS 3D CMS Logo

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

#include <L1MuGMTLFPhiProLUT.h>

Inheritance diagram for L1MuGMTLFPhiProLUT:
L1MuGMTLUT

Public Types

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

Public Member Functions

 L1MuGMTLFPhiProLUT ()
 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 eta, unsigned pt, unsigned charge) const
 specific lookup function for entire output field More...
 
unsigned SpecificLookup_dphi (int idx, unsigned eta, unsigned pt, unsigned charge) const
 specific lookup function for dphi More...
 
virtual ~L1MuGMTLFPhiProLUT ()
 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 eta, unsigned pt, unsigned charge) 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

LFPhiPro look-up table

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

Definition at line 40 of file L1MuGMTLFPhiProLUT.h.

Member Enumeration Documentation

anonymous enum

Constructor & Destructor Documentation

L1MuGMTLFPhiProLUT::L1MuGMTLFPhiProLUT ( )
inline

constuctor using function-lookup

Definition at line 46 of file L1MuGMTLFPhiProLUT.h.

References InitParameters().

46  : L1MuGMTLUT("LFPhiPro",
47  "DT BRPC CSC FRPC",
48  "eta(4) pt(5) charge(1)",
49  "dphi(9)", 10, false) {
51  } ;
L1MuGMTLUT()
Init and Destruct.
Definition: L1MuGMTLUT.h:83
void InitParameters()
Initialize scales, configuration parameters, alignment constants, ...
virtual L1MuGMTLFPhiProLUT::~L1MuGMTLFPhiProLUT ( )
inlinevirtual

destructor

Definition at line 54 of file L1MuGMTLFPhiProLUT.h.

54 {};

Member Function Documentation

void L1MuGMTLFPhiProLUT::InitParameters ( )
private

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

Definition at line 40 of file L1MuGMTLFPhiProLUT.cc.

Referenced by L1MuGMTLFPhiProLUT(), and LookupFunctionPacked().

40  {
41 }
virtual unsigned L1MuGMTLFPhiProLUT::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 L1MuGMTLFPhiProLUT.h.

References ALCARECOTkAlJpsiMuMu_cff::charge, PVValHelper::eta, training_settings::idx, InitParameters(), L1MuGMTLUT::m_Inputs, EnergyCorrector::pt, 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  };
unsigned TheLookupFunction(int idx, unsigned eta, unsigned pt, unsigned charge) const
The lookup function - here the functionality of the LUT is implemented.
std::vector< port > m_Inputs
Definition: L1MuGMTLUT.h:201
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 L1MuGMTLFPhiProLUT::SpecificLookup ( int  idx,
unsigned  eta,
unsigned  pt,
unsigned  charge 
) const
inline

specific lookup function for entire output field

Definition at line 66 of file L1MuGMTLFPhiProLUT.h.

References ALCARECOTkAlJpsiMuMu_cff::charge, PVValHelper::eta, L1MuGMTLUT::LookupPacked(), and EnergyCorrector::pt.

66  {
67  std::vector<unsigned> addr(3);
68  addr[0] = eta;
69  addr[1] = pt;
70  addr[2] = charge;
71  return LookupPacked(idx, addr);
72  };
unsigned LookupPacked(int idx, unsigned) const
Definition: L1MuGMTLUT.h:260
unsigned L1MuGMTLFPhiProLUT::SpecificLookup_dphi ( int  idx,
unsigned  eta,
unsigned  pt,
unsigned  charge 
) const
inline

specific lookup function for dphi

Definition at line 57 of file L1MuGMTLFPhiProLUT.h.

References ALCARECOTkAlJpsiMuMu_cff::charge, PVValHelper::eta, L1MuGMTLUT::Lookup(), and EnergyCorrector::pt.

Referenced by L1MuGMTMerger::projectedPhi().

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

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

Definition at line 57 of file L1MuGMTLFPhiProLUT.cc.

References L1MuGMTPhiLUT::dphi(), L1MuScale::getLowEdge(), L1MuGMTConfig::getPropagatePhi(), L1MuTriggerPtScale::getPtScale(), L1MuGMTConfig::getTriggerPtScale(), createfilelist::int, GeomDetEnumerators::isRPC(), M_PI, and L1MuSignedPacking< Bits >::packedFromIdx().

Referenced by LookupFunctionPacked().

57  {
58  // idx is DT, BRPC, CSC, FRPC
59  // INPUTS: eta(4) pt(5) charge(1)
60  // OUTPUTS: dphi(9)
61 
62 // const L1MuTriggerScales* theTriggerScales = L1MuGMTConfig::getTriggerScales();
63  const L1MuTriggerPtScale* theTriggerPtScale = L1MuGMTConfig::getTriggerPtScale();
64 
65  // static bool doProjection = SimpleConfigurable<bool> (false, "L1GlobalMuonTrigger:PropagatePhi" );
66  static bool doProjection = L1MuGMTConfig::getPropagatePhi();
67 
68  if (!doProjection) return 0;
69 
70  int isRPC = idx % 2;
71  int isFWD = idx / 2;
72 
73  int isys = isFWD + 2 * isRPC; // DT, CSC, BRPC, FRPC
74  int ch_idx = (charge == 0) ? 1 : 0; // positive charge is 0 (but idx 1)
75 
76  // currently only support 3-bit eta (3 lower bits); ignore 4th bit
77  if (eta>7) eta -= 8;
78 
79  float dphi = L1MuGMTPhiLUT::dphi (isys, 1, ch_idx, (int) eta,
80  theTriggerPtScale->getPtScale()->getLowEdge(pt) ); // use old LUT, here
81  // theTriggerScales->getPtScale()->getLowEdge(pt) ); // use old LUT, here
82 
83  int dphi_int = (int) ( (-dphi + 1.25 / 180. * M_PI + 2* M_PI ) / ( 2.5 / 180. * M_PI ) ) - 144;
84 
85  L1MuSignedPacking<9> PhiPacking;
86  return PhiPacking.packedFromIdx(dphi_int);
87 }
const L1MuScale * getPtScale() const
get the Pt scale
unsigned packedFromIdx(int idx) const override
get the packed notation of a value, check range
Definition: L1MuPacking.h:102
static bool getPropagatePhi()
#define M_PI
static const L1MuTriggerPtScale * getTriggerPtScale()
bool isRPC(GeomDetEnumerators::SubDetector m)
static float dphi(int isys, int isISO, int icharge, int ieta, float pt)
look up delta-phi with integer eta
virtual float getLowEdge(unsigned packed) const =0
get the low edge of bin represented by packed