File indexing completed on 2024-09-24 22:51:00
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def L1TMuonEndCapPhase2TrackProducer(*args, **kwargs):
0004 mod = cms.EDProducer('L1TMuonEndCapPhase2TrackProducer',
0005 PromptGraphPath = cms.string('L1Trigger/L1TMuonEndCapPhase2/data/prompt_model.pb'),
0006 DisplacedGraphPath = cms.string('L1Trigger/L1TMuonEndCapPhase2/data/displaced_model.pb'),
0007 CSCInput = cms.InputTag('simCscTriggerPrimitiveDigisForEMTF'),
0008 RPCInput = cms.InputTag('rpcRecHitsForEMTF'),
0009 GEMInput = cms.InputTag('simMuonGEMPadDigiClusters'),
0010 ME0Input = cms.InputTag('me0TriggerConvertedPseudoDigis'),
0011 GE0Input = cms.InputTag('ge0TriggerConvertedPseudoDigis'),
0012 CSCEnabled = cms.bool(True),
0013 RPCEnabled = cms.bool(True),
0014 GEMEnabled = cms.bool(True),
0015 ME0Enabled = cms.bool(True),
0016 GE0Enabled = cms.bool(False),
0017 MinBX = cms.int32(-2),
0018 MaxBX = cms.int32(2),
0019 BXWindow = cms.int32(1),
0020 CSCInputBXShift = cms.int32(-8),
0021 RPCInputBXShift = cms.int32(0),
0022 GEMInputBXShift = cms.int32(0),
0023 ME0InputBXShift = cms.int32(-8),
0024 IncludeNeighborEnabled = cms.bool(True),
0025 Verbosity = cms.untracked.int32(3),
0026 ValidationDirectory = cms.string('L1Trigger/L1TMuonEndCapPhase2/data/validation'),
0027 mightGet = cms.optional.untracked.vstring
0028 )
0029 for a in args:
0030 mod.update_(a)
0031 mod.update_(kwargs)
0032 return mod