Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 l1t1PFPuppiJet70offMaxEta2p4 = cms.EDFilter("L1TJetFilter",
0004     MaxEta = cms.double(2.4),
0005     MinEta = cms.double(-2.4),
0006     MinN = cms.int32(1),
0007     MinPt = cms.double(70.0),
0008     Scalings = cms.PSet(
0009         barrel = cms.vdouble(11.1254, 1.40627, 0),
0010         endcap = cms.vdouble(42.4039, 1.33052, 0),
0011         overlap = cms.vdouble(24.8375, 1.4152, 0)
0012     ),
0013     inputTag = cms.InputTag("l1tPhase1JetCalibrator9x9trimmed","Phase1L1TJetFromPfCandidates")
0014 )