Skip to content

Commit

Permalink
introduce HLT modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
VinInn committed May 23, 2024
1 parent 9b8c5d1 commit 3457dcb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions HLTrigger/Configuration/python/customizeHLTforCMSSW.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ def customizeHLTfor44576(process):
break
return process


def customizeHLTfor45023(process):
for pset in process.psets.values():
if hasattr(pset, 'ComponentType') and pset.ComponentType == 'CkfTrajectoryBuilder':
pset.foundHitBonus = cms.double(0.0)
pset.minHitForDoubleBonus = cms.int32(9999)
return process

# CMSSW version specific customizations
def customizeHLTforCMSSW(process, menuType="GRun"):

Expand All @@ -278,5 +286,6 @@ def customizeHLTforCMSSW(process, menuType="GRun"):

process = checkHLTfor43774(process)
process = customizeHLTfor44576(process)
process = customizeHLTfor45023(process)

return process

0 comments on commit 3457dcb

Please sign in to comment.