Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:26:46

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # File: genMetFromGenJets.cfi
0004 # Author: B. Scurlock
0005 # Date: 03.01.2008
0006 #
0007 # Form Missing ET from Generator Information and store into event as a GenMET
0008 # product.  
0009 genMetIC5GenJets = cms.EDProducer("ElseMETProducer",
0010     src = cms.InputTag("iterativeCone5GenJets"), ## Input  product label          
0011 
0012     METType = cms.string('MET'), ## Output MET type       
0013 
0014     alias = cms.string('genMetIC5GenJets'), ## Alias for FWLite
0015 
0016     noHF = cms.bool(False), ## do not exclude HF
0017 
0018     globalThreshold = cms.double(0.0), ## Global Threshold for input objects
0019 
0020     usePt   = cms.bool(True), ## using Pt instead Et
0021 
0022     applyFiducialThresholdForFractions   = cms.bool(False),
0023 
0024     InputType = cms.string('CandidateCollection') ## Input  product type          
0025 
0026 )
0027 
0028