CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/HLTrigger/special/python/hltPixlMBFilt_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 HLTPixlMBFilt = cms.EDFilter("HLTPixlMBFilt",
00004     pixlTag = cms.InputTag("hltPixelCands"),
00005     saveTags = cms.bool( False ),
00006     MinTrks = cms.uint32(2), ## Number of tracks from same vertex required
00007 
00008     MinPt = cms.double(0.0), ## MinPt currently not used (all pt accepted)
00009 
00010     MinSep = cms.double(1.0) ## minimum eta-phi separation between tracks
00011 
00012 )
00013 
00014