CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
particleFlowClusterECAL_cfi.py
Go to the documentation of this file.
2 
3 particleFlowClusterECAL = cms.EDProducer("PFClusterProducer",
4  # verbosity
5  verbose = cms.untracked.bool(False),
6  # PFRecHit collection
7  PFRecHits = cms.InputTag("particleFlowRecHitECAL"),
8  #PFCluster Collection name
9  #PFClusterCollectionName = cms.string("ECAL"),
10  #----all thresholds are in GeV
11  # seed threshold in ECAL barrel
12  thresh_Seed_Barrel = cms.double(0.23),
13  thresh_Pt_Seed_Barrel = cms.double(0.00),
14  # cell threshold in ECAL barrel
15  thresh_Barrel = cms.double(0.08),
16  thresh_Pt_Barrel = cms.double(0.00),
17  # cleaning threshold and minimum S4/S1 fraction in ECAL barrel
18  thresh_Clean_Barrel = cms.double(4.0),
19  minS4S1_Clean_Barrel = cms.vdouble(0.04, -0.024),
20  # double spike cleaning (barrel)
21  thresh_DoubleSpike_Barrel = cms.double(10.),
22  minS6S2_DoubleSpike_Barrel = cms.double(0.04),
23  # seed threshold in ECAL endcap
24  thresh_Seed_Endcap = cms.double(0.6),
25  thresh_Pt_Seed_Endcap = cms.double(0.15),
26  # cell threshold in ECAL endcap
27  thresh_Endcap = cms.double(0.3),
28  thresh_Pt_Endcap = cms.double(0.00),
29  # cleaning threshold and minimum S4/S1 fraction in ECAL endcap
30  thresh_Clean_Endcap = cms.double(15.0),
31  minS4S1_Clean_Endcap = cms.vdouble(0.02, -0.0125),
32  # double spike cleaning (endcap)
33  thresh_DoubleSpike_Endcap = cms.double(1E9),
34  minS6S2_DoubleSpike_Endcap = cms.double(-1.),
35  # thresh_Clean_Endcap = cms.double(1E5),
36  #minS4S1_Clean_Endcap = cms.vdouble(0.04, -0.025),
37  # n neighbours in ECAL
38  nNeighbours = cms.int32(8),
39  # sigma of the shower in ECAL
40  showerSigma = cms.double(1.5),
41  # n crystals for position calculation in ECAL
42  posCalcNCrystal = cms.int32(9),
43  # use cells with common corner to build topo-clusters
44  useCornerCells = cms.bool(True),
45  # enable cleaning of RBX and HPD (HCAL only);
46  cleanRBXandHPDs = cms.bool(False),
47  # depth correction for ECAL clusters:
48  # 0: no depth correction
49  # 1: electrons/photons - depth correction is proportionnal to E
50  # 2: hadrons - depth correction is fixed
51  depthCor_Mode = cms.int32(1),
52  # in mode 1, depth correction = A *( B + log(E) )
53  # in mode 2, depth correction = A
54  depthCor_A = cms.double(0.89),
55  depthCor_B = cms.double(7.4),
56  # under the preshower, the depth is smaller, but the material is
57  # the same
58  depthCor_A_preshower = cms.double(0.89),
59  depthCor_B_preshower = cms.double(4.0)
60 )
61 
62