1 import FWCore.ParameterSet.Config
as cms
7 pfClusterRefsForJetsHCAL = cms.EDProducer(
"PFClusterRefCandidateProducer",
8 src = cms.InputTag(
'particleFlowClusterHCAL'),
9 particleType = cms.string(
'pi+')
12 pfClusterRefsForJetsECAL = cms.EDProducer(
"PFClusterRefCandidateProducer",
13 src = cms.InputTag(
'particleFlowClusterECAL'),
15 particleType = cms.string(
'pi+')
18 pfClusterRefsForJetsHF = cms.EDProducer(
"PFClusterRefCandidateProducer",
19 src = cms.InputTag(
'particleFlowClusterHF'),
20 particleType = cms.string(
'pi+')
23 pfClusterRefsForJetsHO = cms.EDProducer(
"PFClusterRefCandidateProducer",
24 src = cms.InputTag(
'particleFlowClusterHO'),
25 particleType = cms.string(
'pi+')
29 pfClusterRefsForJets = cms.EDProducer(
"PFClusterRefCandidateMerger",
30 src = cms.VInputTag(
"pfClusterRefsForJetsHCAL",
"pfClusterRefsForJetsECAL",
"pfClusterRefsForJetsHF",
"pfClusterRefsForJetsHO")
34 pfClusterRefsForJets_stepTask = cms.Task(
35 particleFlowRecHitECAL,
36 particleFlowRecHitHBHE,
39 particleFlowClusterECALUncorrected,
40 particleFlowClusterECAL,
41 particleFlowClusterHBHE,
42 particleFlowClusterHCAL,
43 particleFlowClusterHF,
44 particleFlowClusterHO,
45 pfClusterRefsForJetsHCAL,
46 pfClusterRefsForJetsECAL,
47 pfClusterRefsForJetsHF,
48 pfClusterRefsForJetsHO,
51 pfClusterRefsForJets_step = cms.Sequence(pfClusterRefsForJets_stepTask)