00001 import FWCore.ParameterSet.Config as cms 00002 00003 hltPixlMBForAlignment = cms.EDFilter("HLTPixlMBForAlignmentFilter", 00004 pixlTag = cms.InputTag("hltPixelCands"), 00005 saveTags = cms.bool( False ), 00006 MinIsol = cms.double(0.05), ## minimum eta-phi isolation around tracks 00007 00008 MinTrks = cms.uint32(2), ## Number of tracks required 00009 00010 MinPt = cms.double(5.0), ## MinPt currently not used (all pt accepted) 00011 00012 MinSep = cms.double(1.0) ## minimum eta-phi separation between tracks 00013 00014 ) 00015 00016