CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_0/src/RecoMET/METProducers/python/genMetCalo_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # File: genMetCalo.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 final state particles like neutrinos, muons
00008 genMetCalo = cms.EDProducer("METProducer",
00009                             src = cms.InputTag("genCandidatesForMET"), ## Input  product label            
00010                             
00011                             METType = cms.string('GenMET'), ## Output MET type            
00012                             
00013                             alias = cms.string('GenMETCalo'), ## Alias  for FWLite                
00014                             
00015                             onlyFiducialParticles = cms.bool(True), ## Use Only Fiducial Gen Particles
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