00001 import FWCore.ParameterSet.Config as cms 00002 00003 from RecoParticleFlow.PFClusterProducer.towerMakerPF_cff import * 00004 from RecoParticleFlow.PFClusterProducer.particleFlowRecHitECAL_cfi import * 00005 from RecoParticleFlow.PFClusterProducer.particleFlowRecHitHCAL_cfi import * 00006 from RecoParticleFlow.PFClusterProducer.particleFlowRecHitPS_cfi import * 00007 from RecoParticleFlow.PFClusterProducer.particleFlowClusterECAL_cfi import * 00008 from RecoParticleFlow.PFClusterProducer.particleFlowClusterHCAL_cfi import * 00009 from RecoParticleFlow.PFClusterProducer.particleFlowClusterPS_cfi import * 00010 00011 pfClusteringECAL = cms.Sequence(particleFlowRecHitECAL*particleFlowClusterECAL) 00012 pfClusteringHCAL = cms.Sequence(particleFlowRecHitHCAL*particleFlowClusterHCAL) 00013 pfClusteringPS = cms.Sequence(particleFlowRecHitPS*particleFlowClusterPS) 00014 00015 particleFlowCluster = cms.Sequence( 00016 caloTowersPFRec* 00017 pfClusteringECAL* 00018 pfClusteringHCAL* 00019 pfClusteringPS 00020 ) 00021