CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
chargedHadronTrackResolutionFilter_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 chargedHadronTrackResolutionFilter = cms.EDFilter(
4  "ChargedHadronTrackResolutionFilter",
5  PFCandidates = cms.InputTag("particleFlow"), # Collection to test
6  PFMET = cms.InputTag("pfMet"), # Collection to test
7  taggingMode = cms.bool(False),
8  ptMin = cms.double(100.), # Tracks with pT below this are ignored (will not be checked)
9  MetSignifMin = cms.double(5.), # minimum relative MET significance change when removing charged hadron from MET
10  p1 = cms.double(5.), # parameter 1 of calo resolution formula
11  p2 = cms.double(1.2), # parameter 2 of calo resolution formula
12  p3 = cms.double(0.06), # parameter 3 of calo resolution formula
13  verbose = cms.untracked.bool(False),
14  debug = cms.bool(False),
15 )