CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoMET/METProducers/python/GlobalHaloData_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 # File: GlobalHaloData_cfi.py
00003 # Original Author: R. Remington, The University of Florida
00004 # Description: Module to build GlobalHaloData Object and put into the event
00005 # Date: Oct. 15, 2009
00006 
00007 GlobalHaloData = cms.EDProducer("GlobalHaloDataProducer",                         
00008                                 # Higher Level Reco
00009                                 metLabel = cms.InputTag("met"),
00010                                 calotowerLabel = cms.InputTag("towerMaker"),
00011                                 CSCSegmentLabel = cms.InputTag("CSCSegments"),
00012                                 CSCRecHitLabel = cms.InputTag("csc2DRecHits"),
00013                                 
00014                                 EcalMinMatchingRadiusParam = cms.double(110.),
00015                                 EcalMaxMatchingRadiusParam  = cms.double(330.),
00016                                 
00017                                 HcalMinMatchingRadiusParam = cms.double(110.),
00018                                 HcalMaxMatchingRadiusParam = cms.double(490.),
00019 
00020                                 CSCHaloDataLabel = cms.InputTag("CSCHaloData"),
00021                                 EcalHaloDataLabel = cms.InputTag("EcalHaloData"),
00022                                 HcalHaloDataLabel = cms.InputTag("HcalHaloData"),
00023 
00024                                 CaloTowerEtThresholdParam = cms.double(0.3)
00025                                                                 
00026                                 )
00027 
00028