CMS 3D CMS Logo

particleFlowRecHitPS_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 particleFlowRecHitPS = cms.EDProducer("PFRecHitProducer",
4  navigator = cms.PSet(
5  name = cms.string("PFRecHitPreshowerNavigator")
6  ),
7  producers = cms.VPSet(
8  cms.PSet(
9  name = cms.string("PFPSRecHitCreator"),
10  src = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
11  qualityTests = cms.VPSet(
12  cms.PSet(
13  name = cms.string("PFRecHitQTestThreshold"),
14  threshold = cms.double(0.)
15  ),
16  cms.PSet(
17  name = cms.string("PFRecHitQTestES"),
18  cleaningThreshold = cms.double(0.),
19  topologicalCleaning = cms.bool(True)
20  )
21  )
22  )
23  )
24  )
25 
26