CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
inconsistentMuonPFCandidateFilter_cfi.py
Go to the documentation of this file.
2 
3 inconsistentMuonPFCandidateFilter = cms.EDFilter(
4  "InconsistentMuonPFCandidateFilter",
5  PFCandidates = cms.InputTag("particleFlow"), # Collection to test
6  ptMin = cms.double(100.), # Muons with pT below this are ignored (will not be checked)
7  maxPTDiff = cms.double(0.1), # Muons with |pT(tracker)/pT(global) - 1| > maxPTDiff are flagged as "inconsistent"
8  verbose = cms.untracked.bool(False),
9  taggingMode = cms.bool(False),
10  debug = cms.bool(False),
11 )