CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/RecoMET/METProducers/python/genMetCaloAndNonPrompt_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # File: genMetCaloAndNonPrompt.cff
00004 # Author: R. Remington
00005 #
00006 # Form Missing ET from Generator Information and store into event as a GenMET
00007 # product.  Exclude calo invisible, non-resonant, final state particles like neutrinos, muons
00008 genMetCaloAndNonPrompt = cms.EDProducer("METProducer",
00009     src = cms.InputTag("genParticlesForJets"), ## Input  product label            
00010 
00011     METType = cms.string('GenMET'), ## Output MET type            
00012 
00013     alias = cms.string('GenMETCaloAndNonPrompt'), ## Alias  for FWLite            
00014 
00015     onlyFiducialParticles = cms.bool(True), ## use only fiducial GenParticles
00016 
00017     globalThreshold = cms.double(0.0), ## Global Threshold for input objects
00018 
00019     InputType = cms.string('CandidateCollection') ## Input  product type                  
00020 
00021 )
00022 
00023