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