CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_8_patch3/src/RecoMET/METProducers/python/HcalHaloData_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 # File: HcalHaloData_cfi.py
00003 # Original Author: R. Remington, The University of Florida
00004 # Description: Module to build HcalHaloData Object and put into the event
00005 # Date: Oct. 15, 2009
00006 
00007 HcalHaloData = cms.EDProducer("HcalHaloDataProducer",
00008                               # RecHit Level
00009                               HBHERecHitLabel = cms.InputTag("hbhereco"),
00010                               HORecHitLabel  = cms.InputTag("horeco"),
00011                               HFRecHitLabel = cms.InputTag("hfreco"),
00012                               
00013                               HcalMinMatchingRadiusParam = cms.double(110.),
00014                               HcalMaxMatchingRadiusParam = cms.double(490.),
00015                               HBRecHitEnergyThresholdParam = cms.double(0.5),
00016                               HERecHitEnergyThresholdParam = cms.double(0.5),
00017                               SumHcalEnergyThresholdParam = cms.double(18),
00018                               NHitsHcalThresholdParam = cms.int32(4),
00019                               
00020                               )
00021 
00022