Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003 from HLTrigger.HLTfilters.hltHighLevel_cfi import *
00004 exoticaMuHLT = hltHighLevel
00005
00006
00007 exoticaMuHLT.TriggerResultsTag = cms.InputTag("TriggerResults","","HLT")
00008
00009
00010 exoticaHLTMuonFilter = cms.EDFilter("HLTSummaryFilter",
00011 summary = cms.InputTag("hltTriggerSummaryAOD","","HLT"),
00012 member = cms.InputTag("hltL2MuonCandidates","","HLT"),
00013 cut = cms.string("pt>20"),
00014 minN = cms.int32(1)
00015 )
00016
00017
00018
00019 exoticaRecoMuonFilter = cms.EDFilter("MuonRefSelector",
00020 src = cms.InputTag("muons"),
00021 cut = cms.string('pt > 15.0'),
00022 filter = cms.bool(True)
00023
00024 )
00025
00026
00027 exoticaMuHLTQualitySeq = cms.Sequence(
00028 exoticaMuHLT+exoticaHLTMuonFilter
00029 )
00030 exoticaMuRecoQualitySeq = cms.Sequence(
00031 exoticaMuHLT+exoticaRecoMuonFilter
00032 )
00033