Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:18

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 l1tTrackFastJets = cms.EDProducer("L1TrackFastJetProducer",
0004     L1TrackInputTag = cms.InputTag("l1tTrackVertexAssociationProducerForJets", "Level1TTTracksSelectedAssociated"),
0005     coneSize=cms.double(0.4),         #cone size for anti-kt fast jet
0006     displaced = cms.bool(False)       # use prompt/displaced tracks
0007 )
0008 
0009 l1tTrackFastJetsExtended = cms.EDProducer("L1TrackFastJetProducer",
0010     L1TrackInputTag = cms.InputTag("l1tTrackVertexAssociationProducerExtendedForJets", "Level1TTTracksExtendedSelectedAssociated"),
0011     coneSize=cms.double(0.4),         #cone size for anti-kt fast jet
0012     displaced = cms.bool(True)        # use prompt/displaced tracks
0013 )