00001 import FWCore.ParameterSet.Config as cms
00002
00003 towerMaker = cms.EDFilter("CaloTowersCreator",
00004 EBSumThreshold = cms.double(0.2),
00005
00006 EBWeight = cms.double(1.0),
00007 hfInput = cms.InputTag("hfreco"),
00008 AllowMissingInputs = cms.untracked.bool(False),
00009 EESumThreshold = cms.double(0.45),
00010
00011 HOThreshold = cms.double(1.1),
00012
00013 HBThreshold = cms.double(0.9),
00014
00015 EBThreshold = cms.double(0.09),
00016
00017 HcalThreshold = cms.double(-1000.0),
00018
00019 HEDWeight = cms.double(1.0),
00020 EEWeight = cms.double(1.0),
00021 UseHO = cms.bool(False),
00022 HF1Weight = cms.double(1.0),
00023 HOWeight = cms.double(1.0),
00024 HESWeight = cms.double(1.0),
00025 hbheInput = cms.InputTag("hbhereco"),
00026 HF2Weight = cms.double(1.0),
00027 HF2Threshold = cms.double(1.8),
00028
00029 EEThreshold = cms.double(0.45),
00030
00031 HESThreshold = cms.double(1.4),
00032
00033 hoInput = cms.InputTag("horeco"),
00034 HF1Threshold = cms.double(1.2),
00035
00036 HEDThreshold = cms.double(1.4),
00037
00038 EcutTower = cms.double(-1000.0),
00039
00040 ecalInputs = cms.VInputTag(cms.InputTag("ecalRecHit","EcalRecHitsEB"), cms.InputTag("ecalRecHit","EcalRecHitsEE")),
00041 HBWeight = cms.double(1.0),
00042
00043
00044 MomConstrMethod = cms.int32(0),
00045
00046 MomEmDepth = cms.double(0),
00047 MomHadDepth = cms.double(0),
00048 MomTotDepth = cms.double(0)
00049
00050
00051 )
00052
00053