CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/RecoMET/METProducers/python/PFClusterMET_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 PFClusterMET = cms.EDProducer("METProducer",
00013                               METSignificance_params,
00014                               src = cms.InputTag("pfClusterRefsForJets"),
00015                               METType = cms.string('PFClusterMET'),
00016                               alias = cms.string('PFClusterMET'),
00017                               noHF = cms.bool(False),
00018                               globalThreshold = cms.double(0.0),
00019                               InputType = cms.string('RecoPFClusterRefCandidateCollection'),
00020                               calculateSignificance = cms.bool(False)
00021                               )