CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/Calibration/HcalAlCaRecoProducers/python/alcahcalnoise_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # producer for alcaminbisas (HCAL minimum bias)
00004 
00005 HcalNoiseProd = cms.EDProducer("AlCaEcalHcalReadoutsProducer",
00006     JetSource = cms.InputTag("iterativeCone5CaloJets"),
00007     MetSource = cms.InputTag("met"),
00008     TowerSource = cms.InputTag("towerMaker"),
00009     UseJet = cms.bool(True),
00010     UseMET = cms.bool(False),
00011     MetCut = cms.double(0),
00012     JetMinE = cms.double(20),
00013     JetHCALminEnergyFraction = cms.double(0.98),
00014 
00015     hbheInput = cms.InputTag("hbhereco"),
00016     hfInput = cms.InputTag("hfreco"),
00017     hoInput = cms.InputTag("horeco"),
00018     ecalInputs = cms.VInputTag(cms.InputTag("ecalRecHit","EcalRecHitsEB"), cms.InputTag("ecalRecHit","EcalRecHitsEE")),
00019     ecalPSInput = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
00020     rawInput = cms.InputTag("rawDataCollector")
00021 )
00022 
00023