Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 l1tTkIsoEmDouble12Filter = cms.EDFilter("L1TTkEmFilter",
0004     ApplyQual1 = cms.bool(True),
0005     ApplyQual2 = cms.bool(True),
0006     EtaBinsForIsolation = cms.vdouble(0.0, 1.479, 2.4),
0007     MaxAbsEta1 = cms.double(1.479),
0008     MaxAbsEta2 = cms.double(2.4),
0009     MinAbsEta1 = cms.double(0.0),
0010     MinAbsEta2 = cms.double(1.479),
0011     MinN = cms.int32(2),
0012     MinPt = cms.double(12.0),
0013     Qual1IsMask = cms.bool(True),
0014     Qual2IsMask = cms.bool(True),
0015     Quality1 = cms.int32(2),
0016     Quality2 = cms.int32(4),
0017     Scalings = cms.PSet(
0018         barrel = cms.vdouble(2.54255, 1.08749, 0.0),
0019         endcap = cms.vdouble(2.11186, 1.15524, 0.0)
0020     ),
0021     TrkIsolation = cms.vdouble(0.35, 0.28),
0022     inputTag1 = cms.InputTag("l1tLayer1EG","L1TkEmEB"),
0023     inputTag2 = cms.InputTag("l1tLayer1EG","L1TkEmEE"),
0024     saveTags = cms.bool(True)
0025 )