CMS 3D CMS Logo

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

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 # File: EcalHaloData_cfi.py
00003 # Original Author: R. Remington, The University of Florida
00004 # Description: Module to build EcalHaloData Object and put into the event
00005 # Date: Oct. 15, 2009
00006 
00007 EcalHaloData= cms.EDProducer("EcalHaloDataProducer",
00008                              # RecHit Level
00009                              EBRecHitLabel = cms.InputTag("ecalRecHit","EcalRecHitsEB"),
00010                              EERecHitLabel = cms.InputTag("ecalRecHit", "EcalRecHitsEE"),
00011                              ESRecHitLabel = cms.InputTag("ecalPreshowerRecHit","EcalRecHitsES"),
00012                              
00013                              # Higher Level Reco
00014                              SuperClusterLabel = cms.InputTag("correctedHybridSuperClusters"),
00015 #                             SuperClusterLabel = cms.InputTag("cosmicSuperClusters","CosmicBarrelSuperClusters"),
00016                              PhotonLabel = cms.InputTag("photons"),
00017                              
00018                              EBRecHitEnergyThresholdParam = cms.double(0.3),
00019                              EERecHitEnergyThresholdParam = cms.double(0.3),
00020                              ESRecHitEnergyThresholdParam = cms.double(0.3),
00021                              SumEcalEnergyThresholdParam = cms.double(10.),
00022                              NHitsEcalThresholdParam = cms.int32(4),
00023 
00024                              # Shower Shape cut parameters (defaults need to be optimized)
00025                              RoundnessCutParam  = cms.double(0.41),
00026                              AngleCutParam      = cms.double(0.51),
00027                              
00028                              )
00029 
00030