File indexing completed on 2024-04-06 12:26:46
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006
0007
0008
0009 genMetIC5GenJets = cms.EDProducer("ElseMETProducer",
0010 src = cms.InputTag("iterativeCone5GenJets"),
0011
0012 METType = cms.string('MET'),
0013
0014 alias = cms.string('genMetIC5GenJets'),
0015
0016 noHF = cms.bool(False),
0017
0018 globalThreshold = cms.double(0.0),
0019
0020 usePt = cms.bool(True),
0021
0022 applyFiducialThresholdForFractions = cms.bool(False),
0023
0024 InputType = cms.string('CandidateCollection')
0025
0026 )
0027
0028