CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
HiBadParticleCleaner_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 cleanedParticleFlow = cms.EDProducer(
4  "HiBadParticleCleaner",
5  PFCandidates = cms.InputTag("particleFlow"),
6  offlinePV = cms.InputTag("offlinePrimaryVertices"),
7  minMuonTrackRelErr = cms.double(2.0), # minimum ptError/pt on muon best track
8  minMuonPt = cms.double(20.0), # minimum muon pt
9  minChargedHadronPt = cms.double(20.0),
10  minMuonTrackRelPtErr = cms.double(2.),
11  maxSigLoose = cms.double(100.),
12  maxSigTight = cms.double(10.),
13  minCaloCompatibility = cms.double(0.35),
14  minTrackNHits = cms.uint32(10),
15  minPixelNHits = cms.uint32(3),
16  minTrackerLayersForMuonLoose = cms.int32(7),
17  minTrackerLayersForMuonTight = cms.int32(10)
18 )