CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_6_1_2_SLHC2/src/RecoTauTag/HLTProducers/python/L2TauModularIsolationProducer_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 
00004 hltL2TauIsolationProducer = cms.EDProducer( "L2TauModularIsolationProducer",
00005     L2TauJetCollection = cms.InputTag( "hltL2TauJets" ),
00006     EBRecHits = cms.InputTag( 'hltEcalRegionalTausRecHit','EcalRecHitsEB' ),
00007     EERecHits = cms.InputTag( 'hltEcalRegionalTausRecHit','EcalRecHitsEE' ),
00008     CaloTowers = cms.InputTag('hltTowerMakerForTaus'),
00009 
00010     pfClustersECAL = cms.InputTag('hltParticleFlowClusterECAL'),                                        
00011     pfClustersHCAL = cms.InputTag('hltParticleFlowClusterHCAL'),
00012 
00013     ecalIsolationAlgorithm = cms.string('recHits'),
00014     hcalIsolationAlgorithm = cms.string('recHits'),
00015     ecalClusteringAlgorithm = cms.string('particleFlow'),
00016     hcalClusteringAlgorithm = cms.string('particleFlow'),
00017 
00018     associationRadius = cms.double(0.5 ),
00019 
00020     #For simple Clustering Algorithm 
00021     simpleClusterRadiusEcal = cms.double(0.1 ),
00022     simpleClusterRadiusHcal = cms.double(0.18 ),
00023                                             
00024 
00025     #isolation Cones for Everyhting
00026     innerConeECAL = cms.double( 0.15 ),
00027     outerConeECAL = cms.double( 0.5 ),
00028     innerConeHCAL = cms.double( 0.25 ),
00029     outerConeHCAL = cms.double( 0.5 ),
00030 
00031    #You need those seriously if you plan to not use PF/bus recHits/CLusters in any algorithm
00032     crystalThresholdEE = cms.double( 0.45 ),
00033     crystalThresholdEB = cms.double( 0.12 ),
00034     towerThreshold = cms.double(0.1 )                                        
00035 )
00036