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 chargedHadronTrackResolutionFilter = cms.EDFilter(
0004     "ChargedHadronTrackResolutionFilter",
0005     PFCandidates  = cms.InputTag("particleFlow"),   # Collection to test
0006     PFMET         = cms.InputTag("pfMet"),   # Collection to test
0007     taggingMode   = cms.bool(False),
0008     ptMin         = cms.double(100.),               # Tracks with pT below this are ignored (will not be checked)
0009     MetSignifMin  = cms.double(5.),                 # minimum relative MET significance change when removing charged hadron from MET
0010     p1            = cms.double(5.),                 # parameter 1 of calo resolution formula
0011     p2            = cms.double(1.2),                # parameter 2 of calo resolution formula
0012     p3            = cms.double(0.06),               # parameter 3 of calo resolution formula
0013     verbose       = cms.untracked.bool(False),
0014     debug         = cms.bool(False),
0015 )