CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/RecoParticleFlow/PFClusterProducer/python/particleFlowClusterECAL_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 particleFlowClusterECAL = cms.EDProducer("PFClusterProducer",
00004     # verbosity 
00005     verbose = cms.untracked.bool(False),
00006     # PFRecHit collection          
00007     PFRecHits = cms.InputTag("particleFlowRecHitECAL"),
00008     #PFCluster Collection name
00009     #PFClusterCollectionName =  cms.string("ECAL"),                                
00010     #----all thresholds are in GeV
00011     # seed threshold in ECAL barrel 
00012     thresh_Seed_Barrel = cms.double(0.23),
00013     thresh_Pt_Seed_Barrel = cms.double(0.00),
00014     # cell threshold in ECAL barrel 
00015     thresh_Barrel = cms.double(0.08),
00016     thresh_Pt_Barrel = cms.double(0.00),
00017     # cleaning threshold and minimum S4/S1 fraction in ECAL barrel
00018     thresh_Clean_Barrel = cms.double(4.0),
00019     minS4S1_Clean_Barrel = cms.vdouble(0.04, -0.024),
00020     # double spike cleaning (barrel)
00021     thresh_DoubleSpike_Barrel = cms.double(10.),
00022     minS6S2_DoubleSpike_Barrel = cms.double(0.04),
00023     # seed threshold in ECAL endcap 
00024     thresh_Seed_Endcap = cms.double(0.6),
00025     thresh_Pt_Seed_Endcap = cms.double(0.15),
00026     # cell threshold in ECAL endcap 
00027     thresh_Endcap = cms.double(0.3),
00028     thresh_Pt_Endcap = cms.double(0.00),
00029     # cleaning threshold and minimum S4/S1 fraction in ECAL endcap
00030     thresh_Clean_Endcap = cms.double(15.0),
00031     minS4S1_Clean_Endcap = cms.vdouble(0.02, -0.0125),
00032     # double spike cleaning (endcap)
00033     thresh_DoubleSpike_Endcap = cms.double(1E9),
00034     minS6S2_DoubleSpike_Endcap = cms.double(-1.),
00035     # thresh_Clean_Endcap = cms.double(1E5),
00036     #minS4S1_Clean_Endcap = cms.vdouble(0.04, -0.025),
00037     # n neighbours in ECAL 
00038     nNeighbours = cms.int32(8),
00039     # sigma of the shower in ECAL 
00040     showerSigma = cms.double(1.5),
00041     # n crystals for position calculation in ECAL
00042     posCalcNCrystal = cms.int32(9),
00043     # use cells with common corner to build topo-clusters
00044     useCornerCells = cms.bool(True),
00045     # enable cleaning of RBX and HPD (HCAL only);                                         
00046     cleanRBXandHPDs = cms.bool(False),
00047     # depth correction for ECAL clusters:
00048     #   0: no depth correction
00049     #   1: electrons/photons - depth correction is proportionnal to E
00050     #   2: hadrons - depth correction is fixed
00051     depthCor_Mode = cms.int32(1),
00052     # in mode 1, depth correction = A *( B + log(E) )
00053     # in mode 2, depth correction = A 
00054     depthCor_A = cms.double(0.89),
00055     depthCor_B = cms.double(7.4),
00056     # under the preshower, the depth is smaller, but the material is 
00057     # the same
00058     depthCor_A_preshower = cms.double(0.89),
00059     depthCor_B_preshower = cms.double(4.0)
00060 )
00061 
00062