File indexing completed on 2023-03-17 11:13:04
0001 import FWCore.ParameterSet.Config as cms
0002
0003 l1tTrackerEmuEtMiss = cms.EDProducer('L1TrackerEtMissEmulatorProducer',
0004 L1TrackInputTag = cms.InputTag("l1tTrackSelectionProducer", "Level1TTTracksSelectedEmulation"),
0005 L1TrackAssociatedInputTag = cms.InputTag("l1tTrackSelectionProducer", "Level1TTTracksSelectedAssociatedEmulation"),
0006
0007
0008 L1VertexInputTag = cms.InputTag("l1tVertexProducer", "l1vertices"),
0009
0010
0011 L1MetCollectionName = cms.string("L1TrackerEmuEtMiss"),
0012
0013 nCordicSteps = cms.int32( 13 ),
0014 debug = cms.int32( 0 ),
0015 useGTTinput = cms.bool( True ),
0016
0017 )
0018