CMS 3D CMS Logo

genMetCalo_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 genMetCalo = cms.EDProducer(
5  "GenMETProducer",
6  src = cms.InputTag("genCandidatesForMET"),
7  alias = cms.string('genMetCalo'),
8  onlyFiducialParticles = cms.bool(True),
9  globalThreshold = cms.double(0.0),
10  usePt = cms.bool(True),
11  applyFiducialThresholdForFractions = cms.bool(False),
12  )
13 
14 
15