00001 import FWCore.ParameterSet.Config as cms
00002
00003 particleFlowClusterECAL = cms.EDProducer("PFClusterProducer",
00004
00005 thresh_Seed_Endcap = cms.double(0.8),
00006
00007 verbose = cms.untracked.bool(False),
00008
00009 showerSigma = cms.double(5.0),
00010
00011 thresh_Seed_Barrel = cms.double(0.23),
00012
00013
00014
00015
00016 depthCor_Mode = cms.int32(1),
00017
00018 posCalcNCrystal = cms.int32(9),
00019 depthCor_B_preshower = cms.double(4.0),
00020
00021 nNeighbours = cms.int32(8),
00022 PFRecHits = cms.InputTag("particleFlowRecHitECAL"),
00023
00024
00025 thresh_Barrel = cms.double(0.08),
00026
00027
00028 depthCor_A_preshower = cms.double(0.89),
00029 depthCor_B = cms.double(7.4),
00030
00031
00032 depthCor_A = cms.double(0.89),
00033
00034 thresh_Endcap = cms.double(0.3),
00035
00036 posCalcP1 = cms.double(-1.0)
00037 )
00038
00039