Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:45

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 inconsistentMuonPFCandidateFilter = cms.EDFilter(
0004     "InconsistentMuonPFCandidateFilter",
0005     PFCandidates  = cms.InputTag("particleFlow"),   # Collection to test
0006     ptMin         = cms.double(100.),               # Muons with pT below this are ignored (will not be checked)
0007     maxPTDiff     = cms.double(0.1),                # Muons with |pT(tracker)/pT(global) - 1| > maxPTDiff are flagged as "inconsistent"
0008     verbose       = cms.untracked.bool(False),
0009     taggingMode   = cms.bool(False),
0010     debug         = cms.bool(False),
0011 )