Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:23:56

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # module to select Jets
0004 # See https://twiki.cern.ch/twiki/bin/view/CMS/SWGuidePhysicsCutParser
0005 # on how to use the cut-string
0006 #
0007 selectedPatJets = cms.EDFilter("PATJetSelector",
0008     src = cms.InputTag("patJets"),
0009     cut = cms.string(""),    
0010     cutLoose = cms.string(""),
0011     nLoose = cms.uint32(0),
0012 )
0013 
0014