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 hltL1DoubleNNTau52 = cms.EDFilter("L1TPFTauFilter",
0004     MaxEta = cms.double(2.172),
0005     MinEta = cms.double(-2.172),
0006     MinN = cms.int32(2),
0007     MinPt = cms.double(52.0),
0008     PassLooseNN = cms.int32(0),
0009     Scalings = cms.PSet(
0010         barrel = cms.vdouble(-9.54135, 1.73403, 0),
0011         endcap = cms.vdouble(-36.157, 3.83749, 0)
0012     ),
0013     inputTag = cms.InputTag("l1tNNTauProducerPuppi","L1PFTausNN"),
0014     saveTags = cms.bool(True)
0015 )