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"),
11 
12  METType = cms.string('MET'),
13 
14  alias = cms.string('genMetIC5GenJets'),
15 
16  noHF = cms.bool(False),
17 
18  globalThreshold = cms.double(0.0),
19 
20  usePt = cms.bool(True),
21 
22  applyFiducialThresholdForFractions = cms.bool(False),
23 
24  InputType = cms.string('CandidateCollection')
25 
26 )
27 
28