CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L2TauIsolationProducer_cfi.py
Go to the documentation of this file.
2 
3 hltL2TauIsolationProducer = cms.EDProducer( "L2TauIsolationProducer",
4  L2TauJetCollection = cms.InputTag( "hltL2TauJets" ),
5  EBRecHits = cms.InputTag( 'hltEcalRecHitAll','EcalRecHitsEB' ),
6  EERecHits = cms.InputTag( 'hltEcalRecHitAll','EcalRecHitsEE' ),
7  crystalThreshold = cms.double( 0.1 ),
8  towerThreshold = cms.double(1.0 ),
9  ECALIsolation = cms.PSet(
10  runAlgorithm = cms.bool( True ),
11  innerCone = cms.double( 0.15 ),
12  outerCone = cms.double( 0.5 )
13  ),
14  ECALClustering = cms.PSet(
15  runAlgorithm = cms.bool( True ),
16  clusterRadius = cms.double( 0.08 )
17  ),
18  TowerIsolation = cms.PSet(
19  runAlgorithm = cms.bool( True ),
20  innerCone = cms.double( 0.2 ),
21  outerCone = cms.double( 0.5 )
22  )
23 )
24 
25 
26