CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
pfPileUp_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 pfPileUp = cms.EDProducer(
5  "PFPileUp",
6  PFCandidates = cms.InputTag("particleFlowTmpPtrs"),
7  Vertices = cms.InputTag("offlinePrimaryVertices"),
8  # pile-up identification now enabled by default. To be studied for jets
9  Enable = cms.bool(True),
10  verbose = cms.untracked.bool(False),
11  checkClosestZVertex = cms.bool(True),
12  useVertexAssociation = cms.bool(False),
13  vertexAssociationQuality = cms.int32(0),
14  vertexAssociation = cms.InputTag(''),
15  )