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 if ( (q==1 || q==4 || q==6 || q==7) ||
00062 ( (q==2 || q==3) && (fabs(etaValue) < 0.9) ) ) flag=1;
00063 break;
00064 case 1:
00065 if (q==0) flag=1;
00066 break;
00067 case 2:
00068 if ( (q==2 || fabs(etaValue) < 1.2) ||
00069 q==3) flag =1;
00070 break;
00071 case 3:
00072 if (q==3) flag =1;
00073 }
00074
00075
00076 unsigned rank_etaq = q;
00077
00078 if( idx==1 || idx==3 ) rank_etaq++;
00079
00080 if( (idx==1 || idx==3) && (fabs(etaValue)>1. && fabs(etaValue)<1.23) ) rank_etaq=7;
00081
00082 return flag << 7 | rank_etaq;
00083 }
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102