CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 particleFlowRecHitECAL = cms.EDProducer("PFRecHitProducerECAL",
00004     # is navigation able to cross the barrel-endcap border?
00005     crossBarrelEndcapBorder = cms.bool(False),
00006     # verbosity 
00007     verbose = cms.untracked.bool(False),
00008     ecalRecHitsEE = cms.InputTag("ecalRecHit","EcalRecHitsEE"),
00009     ecalRecHitsEB = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00010     # cell threshold in ECAL barrel 
00011     thresh_Barrel = cms.double(0.08),
00012     # cell threshold in ECAL endcap 
00013     thresh_Endcap = cms.double(0.3),
00014     # Cleaning with timing
00015     timing_Cleaning = cms.bool(True),
00016     thresh_Cleaning_EB = cms.double(2.0),
00017     thresh_Cleaning_EE = cms.double(2.0),                
00018     # Cleaning with topology
00019     topological_Cleaning = cms.bool(True)
00020 )
00021 
00022