Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007
00008 genMetCalo = cms.EDProducer("METProducer",
00009 src = cms.InputTag("genCandidatesForMET"),
00010
00011 METType = cms.string('GenMET'),
00012
00013 alias = cms.string('GenMETCalo'),
00014
00015 onlyFiducialParticles = cms.bool(True),
00016
00017 globalThreshold = cms.double(0.0),
00018
00019 usePt = cms.untracked.bool(True),
00020
00021 InputType = cms.string('CandidateCollection')
00022
00023 )
00024
00025