CMS 3D CMS Logo

CMSSW_4_4_3_patch1/src/RecoJets/JetProducers/python/SubJetParameters_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 SubJetParameters = cms.PSet(
00004     #read from CompoundJetProducer:
00005     subjetColl = cms.string("SubJets"),    # subjet collection name
00006     #read from SubJetProducer:
00007     nSubjets = cms.int32(3),                # number of subjets to decluster the fat jet into (actual value can be less if less than 6 constituents in fat jet).
00008     zcut = cms.double(0.1),                 # zcut parameter for pruning (see ref. for details)
00009     rcut_factor = cms.double(0.5)           # rcut factor for pruning (the ref. uses 0.5)
00010 )