CMS 3D CMS Logo

genMetFromGenJets_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # File: genMetFromGenJets.cfi
4 # Author: B. Scurlock
5 # Date: 03.01.2008
6 #
7 # Form Missing ET from Generator Information and store into event as a GenMET
8 # product.
9 genMetIC5GenJets = cms.EDProducer("ElseMETProducer",
10  src = cms.InputTag("iterativeCone5GenJets"), ## Input product label
11 
12  METType = cms.string('MET'), ## Output MET type
13 
14  alias = cms.string('genMetIC5GenJets'), ## Alias for FWLite
15 
16  noHF = cms.bool(False), ## do not exclude HF
17 
18  globalThreshold = cms.double(0.0), ## Global Threshold for input objects
19 
20  usePt = cms.bool(True), ## using Pt instead Et
21 
22  applyFiducialThresholdForFractions = cms.bool(False),
23 
24  InputType = cms.string('CandidateCollection') ## Input product type
25 
26 )
27 
28