CMS 3D CMS Logo

tpFastJets_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 tpFastJets = cms.EDProducer("TPFastJetProducer",
4  TrackingParticleInputTag = cms.InputTag("mix", "MergedTrackTruth"),
5  MCTruthStubInputTag = cms.InputTag("TTStubAssociatorFromPixelDigis", "StubAccepted"),
6  tp_ptMin = cms.double(2.0), # minimum tp pt [GeV]
7  tp_etaMax = cms.double(2.4), # maximum tp eta
8  tp_zMax = cms.double(15.), # max tp z0 [cm]
9  tp_nStubMin = cms.int32(4), # minimum number of stubs
10  tp_nStubLayerMin = cms.int32(4), # minimum number of layers with stubs
11  coneSize=cms.double(0.4), # cone size for anti-kt fast jet
12 )