00001 import FWCore.ParameterSet.Config as cms 00002 00003 # File: GenMET.cff 00004 # Author: R. Cavanaugh 00005 # Date: 08.08.2006 00006 # 00007 # Form Missing ET from Generator Information and store into event as a GenMET 00008 # product. Exclude calo invisible final state particles like neutrinos, muons 00009 genMetNoNuBSM = cms.EDProducer("METProducer", 00010 src = cms.InputTag("genParticlesForJets"), ## Input product label 00011 00012 METType = cms.string('GenMET'), ## Output MET type 00013 00014 alias = cms.string('GenMETNoNuBSM'), ## 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