Go to the documentation of this file.00001
00002 import FWCore.ParameterSet.Config as cms
00003
00004 from HLTrigger.HLTfilters.hltHighLevel_cfi import *
00005 exoticaDiPhoHLT = hltHighLevel
00006
00007 exoticaDiPhoHLT.HLTPaths =['HLT_DoublePhoton10_L1R']
00008 exoticaDiPhoHLT.TriggerResultsTag = cms.InputTag("TriggerResults","","HLT8E29")
00009
00010 exoticaHLTDiPhoFilter = cms.EDFilter("HLTSummaryFilter",
00011 summary = cms.InputTag("hltTriggerSummaryAOD","","HLT8E29"),
00012 member = cms.InputTag("hltL1NonIsoRecoEcalCandidate","","HLT8E29"),
00013 cut = cms.string("pt>20"),
00014 minN = cms.int32(2)
00015 )
00016
00017
00018 exoticaRecoDiPhoFilter = cms.EDFilter("EtMinPhotonCountFilter",
00019 src = cms.InputTag("photons"),
00020 etMin = cms.double(20.),
00021 minNumber = cms.uint32(2)
00022 )
00023
00024
00025 exoticaDiPhoHLTQualitySeq = cms.Sequence(
00026 exoticaDiPhoHLT+exoticaHLTDiPhoFilter
00027 )
00028 exoticaDiPhoRecoQualitySeq = cms.Sequence(
00029 exoticaDiPhoHLT+exoticaRecoDiPhoFilter
00030 )
00031
00032