File indexing completed on 2024-09-18 05:07:02
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltHpsSelectedPFTauLooseTauWPDeepTau = cms.EDFilter("PFTauSelector",
0004 cut = cms.string('pt > 27 && abs(eta) < 2.1'),
0005 discriminatorContainers = cms.VPSet(cms.PSet(
0006 discriminator = cms.InputTag("hltHpsPFTauDeepTauProducer","VSjet"),
0007 rawValues = cms.vstring(),
0008 selectionCuts = cms.vdouble(),
0009 workingPoints = cms.vstring('double t1 = 0.5419, t2 = 0.4837, t3 = 0.050, x1 = 27, x2 = 100, x3 = 300; if (pt <= x1) return t1; if (pt >= x3) return t3; if (pt < x2) return (t2 - t1) / (x2 - x1) * (pt - x1) + t1; return (t3 - t2) / (x3 - x2) * (pt - x2) + t2;')
0010 )),
0011 discriminators = cms.VPSet(),
0012 src = cms.InputTag("hltHpsPFTauProducer")
0013 )