Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-07-24 04:45:10

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 particleFlowRecHitPS = cms.EDProducer("PFRecHitProducer",
0004     navigator = cms.PSet(
0005         name = cms.string("PFRecHitPreshowerNavigator")
0006     ),
0007     producers = cms.VPSet(
0008         cms.PSet(
0009             name = cms.string("PFPSRecHitCreator"),
0010             src  = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
0011             qualityTests = cms.VPSet(
0012                 cms.PSet(
0013                     name = cms.string("PFRecHitQTestThreshold"),
0014                     threshold = cms.double(0.)
0015                     ),
0016                 cms.PSet(
0017                     name = cms.string("PFRecHitQTestES"),
0018                     cleaningThreshold = cms.double(0.),
0019                     topologicalCleaning = cms.bool(True)
0020                     )
0021                 )
0022             )
0023         )
0024                                       )
0025