00001 import FWCore.ParameterSet.Config as cms
00002
00003 particleFlowClusterPS = cms.EDProducer("PFClusterProducer",
00004
00005 thresh_Seed_Endcap = cms.double(0.0005),
00006
00007 verbose = cms.untracked.bool(False),
00008
00009 showerSigma = cms.double(0.2),
00010
00011 thresh_Seed_Barrel = cms.double(0.0005),
00012
00013
00014
00015
00016 depthCor_Mode = cms.int32(0),
00017
00018 posCalcNCrystal = cms.int32(-1),
00019 depthCor_B_preshower = cms.double(4.0),
00020
00021 nNeighbours = cms.int32(8),
00022 PFRecHits = cms.InputTag("particleFlowRecHitPS"),
00023
00024
00025 thresh_Barrel = cms.double(7e-06),
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(7e-06),
00035
00036 posCalcP1 = cms.double(0.0)
00037 )
00038
00039