CMS 3D CMS Logo

PFRecoTauPFJetInputs_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
3 
4 PFRecoTauPFJetInputs = cms.PSet (
5  inputJetCollection = cms.InputTag("ak4PFJets"),
6  jetConeSize = cms.double(0.5), # for matching between tau and jet
7  isolationConeSize = cms.double(0.5), # for the size of the tau isolation
8  minJetPt = cms.double(14.0), # do not make taus from jet with pt below that value
9  maxJetAbsEta = cms.double(2.5) # do not make taus from jet more forward/backward than this
10 )
11 phase2_common.toModify(PFRecoTauPFJetInputs, maxJetAbsEta = cms.double(4.0))