CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_3/src/RecoJets/JetProducers/python/PFClustersForJets_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from SimGeneral.HepPDTESSource.pythiapdt_cfi import *
00004 
00005 pfClusterRefsForJetsHCAL = cms.EDProducer("PFClusterRefCandidateProducer",
00006     src          = cms.InputTag('particleFlowClusterHCAL'),
00007     particleType = cms.string('pi+')
00008 )
00009 
00010 pfClusterRefsForJetsECAL = cms.EDProducer("PFClusterRefCandidateProducer",
00011     src          = cms.InputTag('particleFlowClusterECAL'),
00012     particleType = cms.string('pi+')
00013 )
00014 
00015 pfClusterRefsForJetsHFEM = cms.EDProducer("PFClusterRefCandidateProducer",
00016     src          = cms.InputTag('particleFlowClusterHFEM'),
00017     particleType = cms.string('pi+')
00018 )
00019 
00020 pfClusterRefsForJetsHFHAD = cms.EDProducer("PFClusterRefCandidateProducer",
00021     src          = cms.InputTag('particleFlowClusterHFHAD'),
00022     particleType = cms.string('pi+')
00023 )
00024 
00025 pfClusterRefsForJets = cms.EDProducer("PFClusterRefCandidateMerger",
00026     src = cms.VInputTag("pfClusterRefsForJetsHCAL", "pfClusterRefsForJetsECAL")
00027 #    src = cms.VInputTag("pfClusterRefsForJetsHCAL", "pfClusterRefsForJetsECAL","pfClusterRefsForJetsHFEM","pfClusterRefsForJetsHFHAD")
00028 )
00029 
00030