File indexing completed on 2024-04-06 12:26:46
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004 caloMet = cms.EDProducer(
0005 "CaloMETProducer",
0006 src = cms.InputTag("towerMaker"),
0007 alias = cms.string('caloMet'),
0008 noHF = cms.bool(False),
0009 globalThreshold = cms.double(0.3),
0010 calculateSignificance = cms.bool(False)
0011 )
0012
0013
0014 caloMetBEFO = caloMet.clone(
0015 src = "towerMakerWithHO",
0016 alias = 'caloMetBEFO'
0017 )
0018
0019 caloMetBE = cms.EDProducer(
0020 "CaloMETProducer",
0021 src = cms.InputTag("towerMaker"),
0022 alias = cms.string('caloMetBE'),
0023 noHF = cms.bool(True),
0024 globalThreshold = cms.double(0.3),
0025 calculateSignificance = cms.bool(False)
0026 )
0027
0028
0029 caloMetBEO = caloMetBE.clone(
0030 src = "towerMakerWithHO",
0031 alias = 'caloMetBEO'
0032 )
0033