CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TauMetCorrections_cff.py
Go to the documentation of this file.
2 
3 # File: TauMetCorrections.cff
4 # Authors: C. N. Nguyen , A. Gurrola
5 # Date: 10.22.2007
6 #
7 # Met corrections for PFTaus
8 
9 tauMetCorr = cms.EDProducer("TauMET",
10  InputTausLabel = cms.string('pfRecoTauProducer'),
11  tauType = cms.string('pfTau'),
12  InputCaloJetsLabel = cms.string('iterativeCone5CaloJets'),
13  jetPTthreshold = cms.double(20.0),
14  jetEMfracLimit = cms.double(0.9),
15  correctorLabel = cms.string('MCJetCorrectorIcone5'),
16  InputMETLabel = cms.string('corMetType1Icone5'),
17  metType = cms.string('recoCaloMET'),
18  JetMatchDeltaR = cms.double(0.2),
19  TauMinEt = cms.double(15.0),
20  TauEtaMax = cms.double(2.5),
21  UseSeedTrack = cms.bool(True),
22  seedTrackPt = cms.double(6.0),
23  UseTrackIsolation = cms.bool(True),
24  trackIsolationMinPt = cms.double(1.0),
25  UseECALIsolation = cms.bool(True),
26  gammaIsolationMinPt = cms.double(1.5),
27  UseProngStructure = cms.bool(False)
28 )
29 
30 MetTauCorrections = cms.Sequence( tauMetCorr )
31