00001 import FWCore.ParameterSet.Config as cms 00002 00003 # module to select Taus 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 selectedLayer1Taus = cms.EDFilter("PATTauSelector", 00009 src = cms.InputTag("allLayer1Taus"), 00010 cut = cms.string('pt > 0. & abs(eta) < 12.') 00011 ) 00012 00013