File indexing completed on 2024-04-06 12:23:55
0001 import FWCore.ParameterSet.Config as cms
0002
0003 patPFParticles = cms.EDProducer("PATPFParticleProducer",
0004
0005 pfCandidateSource = cms.InputTag("noJet"),
0006
0007
0008 addGenMatch = cms.bool(False),
0009 genParticleMatch = cms.InputTag(""),
0010
0011
0012 embedGenMatch = cms.bool(False),
0013
0014
0015 userData = cms.PSet(
0016
0017 userClasses = cms.PSet(
0018 src = cms.VInputTag('')
0019 ),
0020
0021 userFloats = cms.PSet(
0022 src = cms.VInputTag('')
0023 ),
0024
0025 userInts = cms.PSet(
0026 src = cms.VInputTag('')
0027 ),
0028
0029 userCands = cms.PSet(
0030 src = cms.VInputTag('')
0031 ),
0032
0033 userFunctions = cms.vstring(),
0034 userFunctionLabels = cms.vstring()
0035 ),
0036
0037
0038 addEfficiencies = cms.bool(False),
0039 efficiencies = cms.PSet(),
0040
0041
0042 addResolutions = cms.bool(False),
0043 resolutions = cms.PSet(),
0044 )
0045
0046