CMS 3D CMS Logo

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