1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import FWCore.ParameterSet.Config as cms
# helper functions
from HLTrigger.Configuration.common import *
# add one customisation function per PR
# - put the PR number into the name of the function
# - add a short comment
# for example:
# CCCTF tuning
# def customiseFor12718(process):
# for pset in process._Process__psets.values():
# if hasattr(pset,'ComponentType'):
# if (pset.ComponentType == 'CkfBaseTrajectoryFilter'):
# if not hasattr(pset,'minGoodStripCharge'):
# pset.minGoodStripCharge = cms.PSet(refToPSet_ = cms.string('HLTSiStripClusterChargeCutNone'))
# return process
def customiseForOffline(process):
# For running HLT offline and relieve the strain on Frontier so it will no longer inject a
# transaction id which tells Frontier to add a unique "&freshkey" to many query URLs.
# That was intended as a feature to only be used by the Online HLT, to guarantee that fresh conditions
# from the database were loaded at each Lumi section
# Seee CMSHLT-3123 for further details
if hasattr(process, 'GlobalTag'):
# Set ReconnectEachRun and RefreshEachRun to False
process.GlobalTag.ReconnectEachRun = cms.untracked.bool(False)
process.GlobalTag.RefreshEachRun = cms.untracked.bool(False)
if hasattr(process.GlobalTag, 'toGet'):
# Filter out PSet objects containing only 'record' and 'refreshTime'
process.GlobalTag.toGet = [
pset for pset in process.GlobalTag.toGet
if set(pset.parameterNames_()) != {'record', 'refreshTime'}
]
return process
# CMSSW version specific customizations
def customizeHLTforCMSSW(process, menuType="GRun"):
process = customiseForOffline(process)
# add call to action function in proper order: newest last!
# process = customiseFor12718(process)
return process
|