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/L1MuGMTLFMergeRankEtaQLUT.h"
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #include "L1Trigger/GlobalMuonTrigger/src/L1MuGMTConfig.h"
00032 #include "CondFormats/L1TObjects/interface/L1MuTriggerScales.h"
00033
00034
00035
00036
00037
00038 void L1MuGMTLFMergeRankEtaQLUT::InitParameters() {
00039 }
00040
00041
00042
00043
00044
00045 unsigned L1MuGMTLFMergeRankEtaQLUT::TheLookupFunction (int idx, unsigned eta, unsigned q) const {
00046
00047
00048
00049
00050 const L1MuTriggerScales* theTriggerScales = L1MuGMTConfig::getTriggerScales();
00051
00052
00053
00054
00055 float etaValue = theTriggerScales->getRegionalEtaScale(idx)->getCenter( eta );
00056
00057
00058 unsigned flag = 0;
00059 switch (idx) {
00060 case 0:
00061
00062
00063 flag =1;
00064 break;
00065 case 1:
00066 if (q==0 and fabs(etaValue)>0.7) flag=1;
00067
00068 break;
00069 case 2:
00070
00071 if (q==3) flag =1;
00072 break;
00073 case 3:
00074
00075 flag =1;
00076 }
00077
00078
00079 unsigned rank_etaq = q;
00080
00081 if( idx==1 || idx==3 ) rank_etaq++;
00082 if(m_GeneralLUTVersion == 0) {
00083
00084 if( (idx==1 || idx==3) && (fabs(etaValue)>1. && fabs(etaValue)<1.23) ) rank_etaq=7;
00085 }
00086
00087 return flag << 7 | rank_etaq;
00088 }
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107