Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:00:50

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 badParticleFilter = cms.EDFilter('BadParticleFilter',
0004   innerTrackRelErr = cms.double(1),
0005   minDzBestTrack = cms.double(-1),
0006   PFCandidates = cms.InputTag('particleFlow'),
0007   filterType = cms.string('BadPFMuon'),
0008   segmentCompatibility = cms.double(0.3),
0009   minMuonPt = cms.double(100),
0010   algo = cms.int32(14),
0011   taggingMode = cms.bool(False),
0012   vtx = cms.InputTag('offlinePrimaryVertices'),
0013   minMuonTrackRelErr = cms.double(2),
0014   maxDR = cms.double(0.001),
0015   muons = cms.InputTag('muons'),
0016   minPtDiffRel = cms.double(0),
0017   mightGet = cms.optional.untracked.vstring
0018 )