CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/RecoEgamma/EgammaIsolationAlgos/python/eleIsoDepositHcalFromHits_cff.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 from RecoEgamma.EgammaIsolationAlgos.eleHcalExtractorBlocks_cff import *
00004 
00005 #This module is defined for the user who would like to study HCAL
00006 #isolation with RecHits.
00007 #Currently, EGamma POG is recommending HCAL Isolation with Towers
00008 eleIsoDepositHcalFromHits = cms.EDProducer("CandIsoDepositProducer",
00009     src = cms.InputTag("gsfElectrons"),
00010     trackType = cms.string('candidate'),
00011     MultipleDepositsFlag = cms.bool(False),
00012     ExtractorPSet = cms.PSet(EleIsoHcalFromHitsExtractorBlock)
00013 )
00014 
00015 
00016