CMS 3D CMS Logo

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