CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/ElectroWeakAnalysis/Utilities/python/distPFMET_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # File: PFMET.cff
00004 # Author: R. Cavanaugh
00005 # Date: 28.10.2008
00006 #
00007 # Form uncorrected Missing ET from Particle Flow and store into event as a MET
00008 # product
00009 
00010 from RecoMET.METProducers.METSigParams_cfi import *
00011 
00012 distpfMet = cms.EDProducer("METProducer",
00013                        
00014                        METSignificance_params,
00015                        src = cms.InputTag("distortedPFCand"),
00016                        METType = cms.string('PFMET'),
00017                        alias = cms.string('PFMET'),
00018                        noHF = cms.bool(False),
00019                        globalThreshold = cms.double(0.0),
00020                        InputType = cms.string('PFCandidateCollection'),
00021                        calculateSignificance = cms.bool(True)
00022                        )