CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/PhysicsTools/PatAlgos/python/producersLayer1/pfParticleProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 patPFParticles = cms.EDProducer("PATPFParticleProducer",
00004     # General configurables
00005     pfCandidateSource = cms.InputTag("noJet"),
00006 
00007     # MC matching configurables
00008     addGenMatch = cms.bool(False),
00009     genParticleMatch = cms.InputTag(""),   ## particles source to be used for the MC matching
00010                                            ## must be an InputTag or VInputTag to a product of
00011                                            ## type edm::Association<reco::GenParticleCollection>
00012     embedGenMatch = cms.bool(False),       ## embed gen match inside the object instead of storing the ref
00013 
00014     # add user data
00015     userData = cms.PSet(
00016       # add custom classes here
00017       userClasses = cms.PSet(
00018         src = cms.VInputTag('')
00019       ),
00020       # add doubles here
00021       userFloats = cms.PSet(
00022         src = cms.VInputTag('')
00023       ),
00024       # add ints here
00025       userInts = cms.PSet(
00026         src = cms.VInputTag('')
00027       ),
00028       # add candidate ptrs here
00029       userCands = cms.PSet(
00030         src = cms.VInputTag('')
00031       ),
00032       # add "inline" functions here
00033       userFunctions = cms.vstring(),
00034       userFunctionLabels = cms.vstring()
00035     ),
00036 
00037     # Efficiencies
00038     addEfficiencies = cms.bool(False),
00039     efficiencies    = cms.PSet(),
00040 
00041     # resolution
00042     addResolutions  = cms.bool(False),
00043     resolutions     = cms.PSet(),
00044 )
00045 
00046