CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
genMetCalo_cfi.py
Go to the documentation of this file.
2 
3 # File: genMetCalo.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 final state particles like neutrinos, muons
8 genMetCalo = cms.EDProducer("METProducer",
9  src = cms.InputTag("genCandidatesForMET"), ## Input product label
10 
11  METType = cms.string('GenMET'), ## Output MET type
12 
13  alias = cms.string('GenMETCalo'), ## Alias for FWLite
14 
15  onlyFiducialParticles = cms.bool(True), ## Use Only Fiducial Gen Particles
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