CMS 3D CMS Logo

CaloMET_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 caloMet = cms.EDProducer(
5  "CaloMETProducer",
6  src = cms.InputTag("towerMaker"),
7  alias = cms.string('caloMet'),
8  noHF = cms.bool(False),
9  globalThreshold = cms.double(0.3),
10  calculateSignificance = cms.bool(False)
11  )
12 
13 
14 caloMetBEFO = caloMet.clone(
15  src = "towerMakerWithHO",
16  alias = 'caloMetBEFO'
17 )
18 
19 caloMetBE = cms.EDProducer(
20  "CaloMETProducer",
21  src = cms.InputTag("towerMaker"),
22  alias = cms.string('caloMetBE'),
23  noHF = cms.bool(True),
24  globalThreshold = cms.double(0.3),
25  calculateSignificance = cms.bool(False)
26 )
27 
28 
29 caloMetBEO = caloMetBE.clone(
30  src = "towerMakerWithHO",
31  alias = 'caloMetBEO'
32 )
33