Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "L1Trigger/GlobalMuonTrigger/src/L1MuGMTLFPhiProEtaConvLUT.h"
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include "L1Trigger/GlobalMuonTrigger/src/L1MuGMTConfig.h"
00032 #include "CondFormats/L1TObjects/interface/L1MuGMTScales.h"
00033 #include "CondFormats/L1TObjects/interface/L1MuTriggerScales.h"
00034 #include "CondFormats/L1TObjects/interface/L1MuPacking.h"
00035
00036 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00037
00038
00039
00040
00041
00042 void L1MuGMTLFPhiProEtaConvLUT::InitParameters() {
00043 }
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053 unsigned L1MuGMTLFPhiProEtaConvLUT::TheLookupFunction (int idx, unsigned eta_in) const {
00054
00055
00056
00057
00058 const L1MuGMTScales* theGMTScales = L1MuGMTConfig::getGMTScales();
00059 const L1MuTriggerScales* theTriggerScales = L1MuGMTConfig::getTriggerScales();
00060
00061 int isRPC = idx % 2;
00062 int isFWD = idx / 2;
00063
00064 float etaValue = theTriggerScales->getRegionalEtaScale(idx)->getCenter( eta_in );
00065
00066 unsigned eta4bit = 0;
00067 if ( (isRPC && isFWD && fabs(etaValue) < theGMTScales->getReducedEtaScale(3)->getScaleMin() ) ||
00068 (isRPC && !isFWD && fabs(etaValue) > theGMTScales->getReducedEtaScale(1)->getScaleMax() )) {
00069 if(!m_saveFlag) edm::LogWarning("LUTRangeViolation")
00070 << "L1MuGMTMIAUEtaConvLUT::TheLookupFunction: RPC " << (isFWD?"fwd":"brl") << " eta value out of range: " << etaValue;
00071 }
00072 else
00073 eta4bit = theGMTScales->getReducedEtaScale(idx)->getPacked( etaValue );
00074
00075 return eta4bit;
00076 }
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095