File indexing completed on 2024-11-23 03:27:49
0001 import FWCore.ParameterSet.Config as cms
0002
0003 def ProducerAnalyzer(*args, **kwargs):
0004 mod = cms.EDAnalyzer('ProducerAnalyzer',
0005 nameProd = cms.untracked.string('hoCalibProducer'),
0006 jetCalo = cms.untracked.string('GammaJetJetBackToBackCollection'),
0007 gammaClus = cms.untracked.string('GammaJetGammaBackToBackCollection'),
0008 ecalInput = cms.untracked.string('GammaJetEcalRecHitCollection'),
0009 hbheInput = cms.untracked.string('hbhereco'),
0010 hoInput = cms.untracked.string('horeco'),
0011 hfInput = cms.untracked.string('hfreco'),
0012 Tracks = cms.untracked.string('GammaJetTracksCollection'),
0013 mightGet = cms.optional.untracked.vstring
0014 )
0015 for a in args:
0016 mod.update_(a)
0017 mod.update_(kwargs)
0018 return mod