Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:27:25

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 particleFlowRecHitHF = cms.EDProducer("PFRecHitProducer",
0004 
0005     navigator = cms.PSet(
0006         name = cms.string("PFRecHitHCALDenseIdNavigator"),
0007         hcalEnums = cms.vint32(4)
0008     ),
0009     producers = cms.VPSet(
0010            cms.PSet(
0011              name = cms.string("PFHFRecHitCreator"),
0012              src  = cms.InputTag("hfreco",""),
0013              EMDepthCorrection = cms.double(22.),
0014              HADDepthCorrection = cms.double(25.),
0015              thresh_HF = cms.double(0.4),
0016              ShortFibre_Cut = cms.double(60.),
0017              LongFibre_Fraction = cms.double(0.10),
0018              LongFibre_Cut = cms.double(120.),
0019              ShortFibre_Fraction = cms.double(0.01),
0020              HFCalib29 = cms.double(1.07),
0021              qualityTests = cms.VPSet(
0022                   cms.PSet(
0023                       name = cms.string("PFRecHitQTestHCALChannel"),
0024                       maxSeverities      = cms.vint32(11,9,9,9),
0025                       cleaningThresholds = cms.vdouble(0.0,120.,60.,0.),
0026                       flags              = cms.vstring('Standard','HFLong','HFShort','HFSignalAsymmetry'),
0027                   ),
0028                   cms.PSet(
0029                       name = cms.string("PFRecHitQTestHCALThresholdVsDepth"),
0030                       usePFThresholdsFromDB = cms.bool(False),
0031                       cuts = cms.VPSet(
0032                              cms.PSet(
0033                                  depth = cms.vint32(1,2),
0034                                  threshold = cms.vdouble(1.2,1.8),
0035                                  detectorEnum = cms.int32(4))
0036                       )
0037                   )
0038 
0039           )
0040     )
0041   )
0042 
0043 )