Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:44

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from L1Trigger.Configuration.SimL1Emulator_cff import *
0004 
0005 # make trigger digis available under with the raw2digi names
0006 from Configuration.Eras.Modifier_fastSim_cff import fastSim
0007 def _fastSimTriggerDigis(process):
0008     # pretend these digis have been through digi2raw and to the HLT internal raw2digi, by using the approprate aliases
0009     # consider moving these mods to the HLT configuration
0010     from FastSimulation.Configuration.DigiAliases_cff import loadTriggerDigiAliases
0011     loadTriggerDigiAliases(process)
0012 modifySimL1Emulator_fastSimTriggerDigis = fastSim.makeProcessModifier(_fastSimTriggerDigis)