00001 import FWCore.ParameterSet.Config as cms 00002 00003 # module to select Jets 00004 # See httpss://twiki.cern.ch/twiki/bin/view/CMS/SWGuidePhysicsCutParser 00005 # on how to use the cut-string 00006 # 00007 # These are only dummy cuts 00008 selectedLayer1Jets = cms.EDFilter("PATJetSelector", 00009 src = cms.InputTag("allLayer1Jets"), 00010 cut = cms.string('et > 0. & abs(eta) < 12. & nConstituents > 0') 00011 ) 00012 00013