Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-07-24 02:01:12

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HLTScoutingRecHitProducer(*args, **kwargs):
0004   mod = cms.EDProducer('HLTScoutingRecHitProducer',
0005     pfRecHitsECAL = cms.InputTag('hltParticleFlowRecHitECALUnseeded'),
0006     pfRecHitsECALCleaned = cms.InputTag('hltParticleFlowRecHitECALUnseeded', 'Cleaned'),
0007     pfRecHitsHBHE = cms.InputTag('hltParticleFlowRecHitHBHE'),
0008     minEnergyEB = cms.double(-1),
0009     minEnergyEE = cms.double(-1),
0010     minEnergyCleanedEB = cms.double(-1),
0011     minEnergyCleanedEE = cms.double(-1),
0012     minEnergyHBHE = cms.double(-1),
0013     mantissaPrecision = cms.int32(10),
0014     mightGet = cms.optional.untracked.vstring
0015   )
0016   for a in args:
0017     mod.update_(a)
0018   mod.update_(kwargs)
0019   return mod