File indexing completed on 2024-04-06 12:19:27
0001
0002
0003
0004
0005
0006 import FWCore.ParameterSet.Config as cms
0007
0008 def customise(process):
0009
0010
0011
0012
0013 from L1Trigger.Configuration.L1Trigger_custom import customiseL1GtEmulatorFromRaw
0014 process=customiseL1GtEmulatorFromRaw(process)
0015
0016
0017
0018
0019 from L1Trigger.Configuration.customise_l1TriggerConfiguration import customiseL1TriggerConfiguration
0020 process=customiseL1TriggerConfiguration(process)
0021
0022
0023
0024
0025 from L1Trigger.Configuration.L1Trigger_custom import customiseOutputCommands
0026 process=customiseOutputCommands(process)
0027
0028
0029
0030
0031
0032
0033 printL1TriggerReport = True
0034
0035 if printL1TriggerReport == True :
0036 from L1Trigger.Configuration.L1Trigger_custom import customiseL1TriggerReport
0037 process=customiseL1TriggerReport(process)
0038
0039 process.SimL1Emulator_L1TriggerReport = cms.Sequence(process.SimL1Emulator*process.l1GtTrigReport)
0040 process.L1simulation_step.replace(process.SimL1Emulator,process.SimL1Emulator_L1TriggerReport)
0041
0042 process.l1GtTrigReport.L1GtRecordInputTag = "simGtDigis"
0043
0044
0045
0046 return (process)