CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/RecoTauTag/HLTProducers/python/L2TauIsolationProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 hltL2TauIsolationProducer = cms.EDProducer( "L2TauIsolationProducer",
00004     L2TauJetCollection = cms.InputTag( "hltL2TauJets" ),
00005     EBRecHits = cms.InputTag( 'hltEcalRecHitAll','EcalRecHitsEB' ),
00006     EERecHits = cms.InputTag( 'hltEcalRecHitAll','EcalRecHitsEE' ),
00007     crystalThreshold = cms.double( 0.1 ),
00008     towerThreshold = cms.double(1.0 ),
00009     ECALIsolation = cms.PSet( 
00010       runAlgorithm = cms.bool( True ),
00011       innerCone = cms.double( 0.15 ),
00012       outerCone = cms.double( 0.5 )
00013     ),
00014     ECALClustering = cms.PSet( 
00015       runAlgorithm = cms.bool( True ),
00016       clusterRadius = cms.double( 0.08 )
00017     ),
00018     TowerIsolation = cms.PSet( 
00019       runAlgorithm = cms.bool( True ),
00020       innerCone = cms.double( 0.2 ),
00021       outerCone = cms.double( 0.5 )
00022     )
00023 )
00024 
00025 
00026