Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:15:55

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 hltHpsSelectedPFTausMediumDitauWPDeepTau = cms.EDFilter("PFTauSelector",
0004     cut = cms.string('pt > 35 && 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.649, t2 = 0.441, t3 = 0.05, x1 = 35, 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 )