CMS 3D CMS Logo

l1tTrackFastJets_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1tTrackFastJets = cms.EDProducer("L1TrackFastJetProducer",
4  L1TrackInputTag = cms.InputTag("l1tTrackVertexAssociationProducerForJets", "Level1TTTracksSelectedAssociated"),
5  coneSize=cms.double(0.4), #cone size for anti-kt fast jet
6  displaced = cms.bool(False) # use prompt/displaced tracks
7 )
8 
9 l1tTrackFastJetsExtended = cms.EDProducer("L1TrackFastJetProducer",
10  L1TrackInputTag = cms.InputTag("l1tTrackVertexAssociationProducerExtendedForJets", "Level1TTTracksExtendedSelectedAssociated"),
11  coneSize=cms.double(0.4), #cone size for anti-kt fast jet
12  displaced = cms.bool(True) # use prompt/displaced tracks
13 )