Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 particleFlowClusterHFHAD = cms.EDProducer("PFClusterProducer",
00004
00005 verbose = cms.untracked.bool(False),
00006
00007 PFRecHits = cms.InputTag("particleFlowRecHitHCAL","HFHAD"),
00008
00009
00010
00011
00012 thresh_Seed_Barrel = cms.double(1.4),
00013 thresh_Pt_Seed_Barrel = cms.double(0.0),
00014
00015 thresh_Barrel = cms.double(0.8),
00016 thresh_Pt_Barrel = cms.double(0.0),
00017
00018 thresh_Clean_Barrel = cms.double(120.),
00019 minS4S1_Clean_Barrel = cms.vdouble(0.045, -0.080),
00020
00021 thresh_DoubleSpike_Barrel = cms.double(1E9),
00022 minS6S2_DoubleSpike_Barrel = cms.double(-1.),
00023
00024 thresh_Seed_Endcap = cms.double(1.4),
00025 thresh_Pt_Seed_Endcap = cms.double(0.0),
00026
00027 thresh_Endcap = cms.double(0.8),
00028 thresh_Pt_Endcap = cms.double(0.0),
00029
00030 thresh_Clean_Endcap = cms.double(120.),
00031 minS4S1_Clean_Endcap = cms.vdouble(0.045, -0.080),
00032
00033 thresh_DoubleSpike_Endcap = cms.double(1E9),
00034 minS6S2_DoubleSpike_Endcap = cms.double(-1.),
00035
00036
00037 nNeighbours = cms.int32(0),
00038
00039 showerSigma = cms.double(10.0),
00040
00041 posCalcNCrystal = cms.int32(5),
00042
00043 useCornerCells = cms.bool(False),
00044
00045 cleanRBXandHPDs = cms.bool(False),
00046
00047
00048
00049
00050
00051 depthCor_Mode = cms.int32(0),
00052
00053
00054 depthCor_A = cms.double(0.89),
00055 depthCor_B = cms.double(7.4),
00056
00057
00058 depthCor_A_preshower = cms.double(0.89),
00059 depthCor_B_preshower = cms.double(4.0)
00060 )
00061
00062