CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/RecoParticleFlow/PFClusterProducer/python/particleFlowRecHitPS_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 particleFlowRecHitPS = cms.EDProducer("PFRecHitProducerPS",
00004     # cell threshold in barrel 
00005     thresh_Barrel = cms.double(7e-06),
00006     ecalRecHitsES = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
00007     # cell threshold in endcap 
00008     thresh_Endcap = cms.double(7e-06),
00009     # verbosity 
00010     verbose = cms.untracked.bool(False)
00011 )
00012 
00013