File indexing completed on 2024-04-06 12:20:33
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 import FWCore.ParameterSet.Config as cms
0012 import sys
0013
0014
0015
0016
0017 from Configuration.Eras.Modifier_stage1L1Trigger_cff import stage1L1Trigger
0018 from Configuration.Eras.Modifier_stage2L1Trigger_cff import stage2L1Trigger
0019
0020
0021
0022
0023
0024
0025
0026
0027 def _load(process, fs):
0028 for f in fs:
0029 process.load(f)
0030
0031 modifyL1TGlobalHackConditions_stage2 = stage2L1Trigger.makeProcessModifier(lambda p: _load(p, [
0032 "L1Trigger.L1TGlobal.GlobalParameters_cff",
0033 "L1Trigger.L1TGlobal.PrescalesVetos_cff",
0034 "L1Trigger.L1TGlobal.PrescalesVetosFract_cff",
0035
0036 ]))