00001 import FWCore.ParameterSet.Config as cms 00002 00003 # File: genMetFromGenJets.cfi 00004 # Author: B. Scurlock 00005 # Date: 03.01.2008 00006 # 00007 # Form Missing ET from Generator Information and store into event as a GenMET 00008 # product. 00009 genMetIC5GenJets = cms.EDProducer("METProducer", 00010 src = cms.InputTag("iterativeCone5GenJets"), ## Input product label 00011 00012 METType = cms.string('MET'), ## Output MET type 00013 00014 alias = cms.string('GenMETIC5'), ## Alias for FWLite 00015 00016 noHF = cms.bool(False), ## do not exclude HF 00017 00018 globalThreshold = cms.double(0.0), ## Global Threshold for input objects 00019 00020 InputType = cms.string('CandidateCollection') ## Input product type 00021 00022 ) 00023 00024