CMS 3D CMS Logo

pfParticleProducer_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 patPFParticles = cms.EDProducer("PATPFParticleProducer",
4  # General configurables
5  pfCandidateSource = cms.InputTag("noJet"),
6 
7  # MC matching configurables
8  addGenMatch = cms.bool(False),
9  genParticleMatch = cms.InputTag(""),
12  embedGenMatch = cms.bool(False),
13 
14  # add user data
15  userData = cms.PSet(
16  # add custom classes here
17  userClasses = cms.PSet(
18  src = cms.VInputTag('')
19  ),
20  # add doubles here
21  userFloats = cms.PSet(
22  src = cms.VInputTag('')
23  ),
24  # add ints here
25  userInts = cms.PSet(
26  src = cms.VInputTag('')
27  ),
28  # add candidate ptrs here
29  userCands = cms.PSet(
30  src = cms.VInputTag('')
31  ),
32  # add "inline" functions here
33  userFunctions = cms.vstring(),
34  userFunctionLabels = cms.vstring()
35  ),
36 
37  # Efficiencies
38  addEfficiencies = cms.bool(False),
39  efficiencies = cms.PSet(),
40 
41  # resolution
42  addResolutions = cms.bool(False),
43  resolutions = cms.PSet(),
44 )
45 
46