CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
muonBadTrackFilter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 muonBadTrackFilter = cms.EDFilter(
4  "MuonBadTrackFilter",
5  PFCandidates = cms.InputTag("particleFlow"), # Collection to test
6  taggingMode = cms.bool(False),
7  ptMin = cms.double(100.), # Tracks with pT below this are ignored (will not be checked)
8  chi2Min = cms.double(100.), # global Tracks with normalizeChi2 below this are ignored (will not be checked)
9  p1 = cms.double(5.), # parameter 1 of calo resolution formula
10  p2 = cms.double(1.2), # parameter 2 of calo resolution formula
11  p3 = cms.double(0.06), # parameter 3 of calo resolution formula
12  verbose = cms.untracked.bool(False),
13  debug = cms.bool(False),
14 )