CMS 3D CMS Logo

particleFlowRecHitHF_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 #HB HE HO rec hits
4 
5 particleFlowRecHitHF = cms.EDProducer("PFRecHitProducer",
6 
7  navigator = cms.PSet(
8  name = cms.string("PFRecHitHCALNavigator"),
9  barrel = cms.PSet( ),
10  endcap = cms.PSet( )
11  ),
12  producers = cms.VPSet(
13  cms.PSet(
14  name = cms.string("PFHFRecHitCreator"),
15  src = cms.InputTag("hfreco",""),
16  EMDepthCorrection = cms.double(22.),
17  HADDepthCorrection = cms.double(25.),
18  thresh_HF = cms.double(0.4),
19  ShortFibre_Cut = cms.double(60.),
20  LongFibre_Fraction = cms.double(0.10),
21  LongFibre_Cut = cms.double(120.),
22  ShortFibre_Fraction = cms.double(0.01),
23  HFCalib29 = cms.double(1.07),
24  qualityTests = cms.VPSet(
25  cms.PSet(
26  name = cms.string("PFRecHitQTestHCALChannel"),
27  maxSeverities = cms.vint32(11,9,9),
28  cleaningThresholds = cms.vdouble(0.0,120.,60.),
29  flags = cms.vstring('Standard','HFLong','HFShort'),
30  ),
31  cms.PSet(
32  name = cms.string("PFRecHitQTestHCALThresholdVsDepth"),
33  cuts = cms.VPSet(
34  cms.PSet(
35  depth = cms.vint32(1,2),
36  threshold = cms.vdouble(1.2,1.8),
37  detectorEnum = cms.int32(4))
38  )
39  )
40 
41  )
42  )
43  )
44 
45 )