Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:21:57

0001 import FWCore.ParameterSet.Config as cms
0002 from Configuration.Eras.Modifier_phase2_common_cff import phase2_common
0003 
0004 PFRecoTauPFJetInputs = cms.PSet (
0005     inputJetCollection = cms.InputTag("ak4PFJets"),
0006     jetConeSize = cms.double(0.5), # for matching between tau and jet
0007     isolationConeSize = cms.double(0.5), # for the size of the tau isolation
0008     minJetPt = cms.double(14.0), # do not make taus from jet with pt below that value
0009     maxJetAbsEta = cms.double(2.7) # do not make taus from jet more forward/backward than this
0010 )
0011 phase2_common.toModify(PFRecoTauPFJetInputs, maxJetAbsEta = cms.double(4.0))