Back to home page

Project CMSSW displayed by LXR

 
 

    


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     # To bypass GTT input module use  cms.InputTag("TTTracksFromTrackletEmulation", "Level1TTTracks")
0007     # and set useGTTinput to false
0008     L1VertexInputTag = cms.InputTag("l1tVertexProducer", "l1vertices"),
0009     # This will use the vertex algorithm as specified in l1tVertexProducer_cfi, if using emulated vertex
0010     # set useVertexEmulator to true
0011     L1MetCollectionName = cms.string("L1TrackerEmuEtMiss"),
0012     
0013     nCordicSteps = cms.int32( 13 ), #Number of steps for cordic sqrt and phi computation
0014     debug        = cms.int32( 0 ),  #0 - No Debug, 1 - LUT debug, 2 - Phi Debug, 3 - Z debug, 4 - Et Debug, 5 - Cordic Debug, 6 - Output, 7 - Every Selected Track
0015     useGTTinput  = cms.bool( True ),
0016 
0017 )
0018