00001 import FWCore.ParameterSet.Config as cms 00002 00003 from RecoParticleFlow.PFClusterProducer.particleFlowCluster_cff import * 00004 00005 from RecoParticleFlow.PFTracking.particleFlowTrack_cff import * 00006 00007 from RecoParticleFlow.PFBlockProducer.particleFlowSimParticle_cff import * 00008 from RecoParticleFlow.PFBlockProducer.particleFlowBlock_cff import * 00009 00010 from RecoParticleFlow.PFProducer.particleFlow_cff import * 00011 from RecoParticleFlow.PFTracking.nuclearRemainingHits_cff import * 00012 00013 particleFlowRecoNuclear = cms.Sequence( 00014 nuclearRemainingHits* 00015 particleFlowCluster* 00016 particleFlowTrackWithNuclear* 00017 particleFlowBlock*particleFlow 00018 ) 00019 particleFlowBlock.useNuclear = True 00020 00021