CMS 3D CMS Logo

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