Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-02-07 14:24:18

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 def HGCalHitValidation(*args, **kwargs):
0004   mod = cms.EDProducer('HGCalHitValidation',
0005     geometrySource = cms.vstring(
0006       'HGCalEESensitive',
0007       'HGCalHESiliconSensitive',
0008       'HGCalHEScintillatorSensitive'
0009     ),
0010     eeSimHitSource = cms.InputTag('g4SimHits', 'HGCHitsEE'),
0011     fhSimHitSource = cms.InputTag('g4SimHits', 'HGCHitsHEfront'),
0012     bhSimHitSource = cms.InputTag('g4SimHits', 'HGCHitsHEback'),
0013     eeRecHitSource = cms.InputTag('HGCalRecHit', 'HGCEERecHits'),
0014     fhRecHitSource = cms.InputTag('HGCalRecHit', 'HGCHEFRecHits'),
0015     bhRecHitSource = cms.InputTag('HGCalRecHit', 'HGCHEBRecHits'),
0016     ietaExcludeBH = cms.vint32(),
0017     mightGet = cms.optional.untracked.vstring
0018   )
0019   for a in args:
0020     mod.update_(a)
0021   mod.update_(kwargs)
0022   return mod