CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # File: genMetTrue_cfi.py
00004 # Author: R. Remington
00005 #
00006 # Form Missing ET from Generator Information and store into event as a GenMET
00007 # product.  Exclude only invisible final state particles like neutrinos. 
00008 genMetTrue = cms.EDProducer("METProducer",
00009                             src = cms.InputTag("genParticlesForMETAllVisible"), ## Input  product label           
00010                             
00011                             METType = cms.string('GenMET'), ## Output MET type            
00012                             
00013                             alias = cms.string('GenMETAllVisible'), ## Alias  for FWLite                  
00014                             
00015                             onlyFiducialParticles = cms.bool(False), ## Use only fiducial GenParticles
00016                             
00017                             globalThreshold = cms.double(0.0), ## Global Threshold for input objects
00018                             
00019                             usePt   = cms.untracked.bool(True), ## using Pt instead Et
00020                             
00021                             InputType = cms.string('CandidateCollection') ## Input  product type                  
00022                             
00023                             )
00024 
00025