File indexing completed on 2023-03-17 11:14:11
0001 import FWCore.ParameterSet.Config as cms
0002
0003 from L1TriggerConfig.DTTPGConfigProducers.L1DTConfigBti_cff import *
0004 from L1TriggerConfig.DTTPGConfigProducers.L1DTConfigTraco_cff import *
0005 from L1TriggerConfig.DTTPGConfigProducers.L1DTConfigLUTs_cff import *
0006 from L1TriggerConfig.DTTPGConfigProducers.L1DTConfigTSTheta_cff import *
0007 from L1TriggerConfig.DTTPGConfigProducers.L1DTConfigTSPhi_cff import *
0008 from L1TriggerConfig.DTTPGConfigProducers.L1DTConfigTU_cff import *
0009 from L1TriggerConfig.DTTPGConfigProducers.L1DTConfigSectColl_cff import *
0010
0011 DTTPGParametersBlock = cms.PSet(
0012 DTTPGParameters = cms.PSet(
0013 SectCollParametersBlock,
0014 Debug = cms.untracked.bool(False),
0015 TUParameters = cms.PSet(
0016 TracoParametersBlock,
0017 TSPhiParametersBlock,
0018 TSThetaParametersBlock,
0019 TUParamsBlock,
0020 BtiParametersBlock,
0021 LutParametersBlock
0022 )
0023 )
0024 )
0025
0026