CMS 3D CMS Logo

l1tTrackerEmuEtMiss_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1tTrackerEmuEtMiss = cms.EDProducer('L1TrackerEtMissEmulatorProducer',
4  L1TrackInputTag = cms.InputTag("l1tTrackSelectionProducerForEtMiss", "Level1TTTracksSelectedEmulation"),
5  L1TrackAssociatedInputTag = cms.InputTag("l1tTrackVertexAssociationProducerForEtMiss", "Level1TTTracksSelectedAssociatedEmulation"),
6  # To bypass GTT input module use cms.InputTag("TTTracksFromTrackletEmulation", "Level1TTTracks")
7  # and set useGTTinput to false
8  L1VertexInputTag = cms.InputTag("l1tVertexFinderEmulator", "L1VerticesEmulation"),
9  # This will use the vertex algorithm as specified in l1tVertexProducer_cfi, if using emulated vertex
10  # set useVertexEmulator to true
11  L1MetCollectionName = cms.string("L1TrackerEmuEtMiss"),
12 
13  nCordicSteps = cms.int32( 13 ), #Number of steps for cordic sqrt and phi computation
14  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
15  useGTTinput = cms.bool( True ),
16 
17 )
18