File indexing completed on 2024-04-06 12:06:47
0001 import FWCore.ParameterSet.Config as cms
0002
0003 hltFilter = cms.EDFilter("HLTHighLevel",
0004 TriggerResultsTag = cms.InputTag("TriggerResults","","HLT"),
0005 HLTPaths = cms.vstring(
0006
0007
0008
0009 "HLT_Ele15_LW_L1R",
0010 "HLT_Ele15_SW_L1R",
0011 "HLT_Ele15_SW_CaloEleId_L1R",
0012 "HLT_Ele17_SW_CaloEleId_L1R",
0013 "HLT_Ele17_SW_L1R",
0014 "HLT_Ele17_SW_TightEleId_L1R",
0015 "HLT_Ele17_SW_TightCaloEleId_SC8HE_L1R"
0016 ),
0017 eventSetupPathsKey = cms.string(''),
0018 andOr = cms.bool(True),
0019 throw = cms.bool(False),
0020 saveTags = cms.bool(False)
0021 )
0022
0023 from DPGAnalysis.Skims.WZinterestingEventFilter_cfi import *
0024
0025 WZfilterSkim = cms.Sequence(WZInterestingEventSelector)
0026