CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 caloMetBEFO.src = "towerMakerWithHO"
16 caloMetBEFO.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 caloMetBEO.src = "towerMakerWithHO"
31 caloMetBEO.alias = 'caloMetBEO'
32 
33 ##____________________________________________________________________________||