00001 import FWCore.ParameterSet.Config as cms 00002 00003 particleFlowRecHitHCAL = cms.EDFilter("PFRecHitProducerHCAL", 00004 # verbosity 00005 verbose = cms.untracked.bool(False), 00006 caloTowers = cms.InputTag("towerMakerPF"), 00007 hcalRecHitsHBHE = cms.InputTag(""), 00008 # cell threshold in barrel 00009 thresh_Barrel = cms.double(0.8), 00010 # cell threshold in HF 00011 thresh_HF = cms.double(0.0), 00012 # cell threshold in endcap 00013 thresh_Endcap = cms.double(0.8) 00014 ) 00015 00016