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/L1MuGMTLFEtaConvLUT.h"
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include "L1Trigger/GlobalMuonTrigger/src/L1MuGMTConfig.h"
00030 #include "CondFormats/L1TObjects/interface/L1MuTriggerScales.h"
00031 #include "CondFormats/L1TObjects/interface/L1MuPacking.h"
00032
00033
00034
00035
00036
00037
00038 void L1MuGMTLFEtaConvLUT::InitParameters() {
00039 }
00040
00041
00042
00043
00044
00045
00046
00047
00048 unsigned L1MuGMTLFEtaConvLUT::TheLookupFunction (int idx, unsigned eta_regional) const {
00049
00050
00051
00052
00053 const L1MuTriggerScales* theTriggerScales = L1MuGMTConfig::getTriggerScales();
00054
00055 int isRPC = idx % 2;
00056
00057
00058 float etaValue = theTriggerScales->getRegionalEtaScale(idx)->getCenter( eta_regional );
00059
00060 if ( fabs(etaValue) > 2.4 ) etaValue = 2.39 * ((etaValue)>0?1.:-1.);
00061
00062
00063 if (isRPC) {
00064
00065 etaValue += (etaValue>0.01? -1. : 1.) * 0.001;
00066 }
00067
00068 unsigned eta_gmt = theTriggerScales->getGMTEtaScale()->getPacked( etaValue );
00069
00070 return eta_gmt;
00071 }
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090