96 |
|
HLTSeed = {} |
97 |
|
for HLTPath,L1Seed in curs.fetchall(): |
98 |
|
if not HLTSeed.has_key(HLTPath): ## this should protect us from L1_SingleMuOpen |
99 |
< |
HLTSeed[HLTPath] = L1Seed.lstrip('"').rstrip('"') |
99 |
> |
tmp = L1Seed.lstrip('"').rstrip('"') |
100 |
> |
HLTSeed[HLTPath] = tmp.rstrip(' ') |
101 |
|
|
102 |
|
HLTPrescales = GetHLTPrescaleMatrix(curs,HLT_Key) |
103 |
|
|
124 |
|
continue |
125 |
|
thisL1PS = [] |
126 |
|
for seed in L1Seeds.split(' OR '): ## unwind the OR of multiple seeds |
127 |
+ |
seed = seed.lstrip(' ').rstrip(' ') |
128 |
|
if seed.isdigit(): |
129 |
|
continue |
130 |
|
if not L1Names.has_key(seed): |