CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
genMetCaloAndNonPrompt_cfi.py
Go to the documentation of this file.
2 
3 # File: genMetCaloAndNonPrompt.cff
4 # Author: R. Remington
5 #
6 # Form Missing ET from Generator Information and store into event as a GenMET
7 # product. Exclude calo invisible, non-resonant, final state particles like neutrinos, muons
8 genMetCaloAndNonPrompt = cms.EDProducer("METProducer",
9  src = cms.InputTag("genParticlesForJets"), ## Input product label
10 
11  METType = cms.string('GenMET'), ## Output MET type
12 
13  alias = cms.string('GenMETCaloAndNonPrompt'), ## Alias for FWLite
14 
15  onlyFiducialParticles = cms.bool(True), ## use only fiducial GenParticles
16 
17  globalThreshold = cms.double(0.0), ## Global Threshold for input objects
18 
19  usePt = cms.bool(True), ## using Pt instead Et
20 
21  applyFiducialThresholdForFractions = cms.bool(False),
22 
23  InputType = cms.string('CandidateCollection') ## Input product type
24 
25 )
26 
27